Skip to content

Commit fb827df

Browse files
committed
fix(query-builder): keyboard ghost element styles shadow based on theme
1 parent 1a0d413 commit fb827df

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

projects/igniteui-angular/src/lib/core/styles/components/query-builder/_query-builder-theme.scss

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,13 @@
107107
$alpha-hover: .08;
108108
$alpha-focus: .16;
109109
$alpha-focus-hover: .24;
110+
111+
$keyboard-ghost-elevation: map.get((
112+
'material': 8,
113+
'fluent': 2,
114+
'bootstrap': 0,
115+
'indigo': 1,
116+
), $variant);
110117

111118
$border-radius: var-get($theme, 'border-radius');
112119
$icon-size: rem(18px);
@@ -495,7 +502,7 @@
495502

496503
%filter-tree__expression-item-keyboard-ghost {
497504
.igx-chip__item {
498-
box-shadow: elevation(8);
505+
box-shadow: elevation(#{$keyboard-ghost-elevation});
499506
}
500507
}
501508

0 commit comments

Comments
 (0)