Skip to content

Commit 4e94da4

Browse files
karammalerba
authored andcommitted
fix(select): fix selection color (#2697)
Fixes #2696
1 parent fb5e1d4 commit 4e94da4

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/lib/autocomplete/_autocomplete-theme.scss

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,16 @@
44
$foreground: map-get($theme, foreground);
55
$background: map-get($theme, background);
66

7-
md-option {
7+
.md-autocomplete-panel {
88
background: md-color($background, card);
99
color: md-color($foreground, text);
1010

11-
&.md-selected {
12-
background: md-color($background, card);
13-
color: md-color($foreground, text);
11+
md-option {
12+
&.md-selected {
13+
background: md-color($background, card);
14+
color: md-color($foreground, text);
15+
}
1416
}
1517
}
18+
1619
}

0 commit comments

Comments
 (0)