Skip to content

Commit 68e4ea4

Browse files
authored
fix(combo): align case sensitive icon styling with WC (#15903)
1 parent c4c20dd commit 68e4ea4

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

projects/igniteui-angular/src/lib/core/styles/components/combo/_combo-theme.scss

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,18 +165,15 @@
165165
%igx-combo__case-icon,
166166
%igx-combo__case-icon--active {
167167
line-height: 0;
168-
169-
igx-icon {
170-
--size: rem(18px);
171-
}
172168
}
173169

174170
// The wrapping element here is needed
175171
// in order to override the !important rule of .igx-icon--inactive.
176172
%igx-combo__case-icon {
177173
igx-icon {
178-
// Important is needed since the .igx-icon--inactive has !important
179-
color: color($color: 'gray', $variant: 600) !important;
174+
--igx-icon-disabled-color: var(--ig-gray-600);
175+
176+
opacity: 1;
180177
}
181178
}
182179

@@ -244,6 +241,13 @@
244241
}
245242
}
246243

244+
@if $variant == 'fluent' or $variant == 'bootstrap' {
245+
%igx-combo__search {
246+
--igx-input-group-input-suffix-background: transparent;
247+
--igx-input-group-input-suffix-background--focused: transparent;
248+
}
249+
}
250+
247251
.igx-input-group {
248252
%igx-combo__toggle-button {
249253
background: var-get($theme, 'toggle-button-background');

0 commit comments

Comments
 (0)