We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 55476e9 + c22dd32 commit c350b1bCopy full SHA for c350b1b
projects/igniteui-angular/src/lib/core/styles/components/chip/_chip-theme.scss
@@ -578,7 +578,6 @@
578
579
%igx-chip__ghost {
580
position: absolute;
581
- z-index: 10;
582
box-shadow: --var($theme, 'ghost-shadow');
583
overflow: hidden;
584
color: --var($theme, 'focus-text-color');
@@ -606,6 +605,14 @@
606
605
padding: map-get($chip-padding, 'compact');
607
}
608
+
609
+ // Remark: If z-index is not set, the chip would
610
+ // hide behind it's parent grid as it has a z-index of 1
611
+ %igx-chip__ghost,
612
+ %igx-chip__ghost--cosy,
613
+ %igx-chip__ghost--compact {
614
+ z-index: 10;
615
+ }
616
617
618
/// Adds typography styles for the igx-chip component.
0 commit comments