Skip to content

Commit 875859b

Browse files
author
MPopov
committed
fix(Advanced Filtering): Fix bootstrap theme close button for the contextual-menu inside the advanced filtering.
1 parent cf28c96 commit 875859b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

projects/igniteui-angular/src/lib/core/styles/components/grid/_advanced-filtering-theme.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
/// @requires rem
1212
/// @requires --var
1313
@mixin _advanced-filtering($theme, $palette) {
14+
$variant: map-get($theme, variant);
15+
$not-bootstrap-theme: $variant != 'bootstrap';
16+
1417
$vertical-space-comfortable: rem(16px);
1518
$vertical-space-cosy: rem(12px);
1619
$vertical-space-compact: rem(8px);
@@ -274,7 +277,9 @@
274277

275278
&:hover,
276279
&:focus {
277-
background-color: --var($theme, 'filtering-row-background');
280+
@if $not-bootstrap-theme {
281+
background-color: --var($theme, 'filtering-row-background');
282+
}
278283
}
279284
}
280285

0 commit comments

Comments
 (0)