Skip to content

Commit

Permalink
fix(select): fix selection color
Browse files Browse the repository at this point in the history
  • Loading branch information
kara committed Jan 17, 2017
1 parent 4ab6f30 commit 943371c
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/lib/autocomplete/_autocomplete-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@
$foreground: map-get($theme, foreground);
$background: map-get($theme, background);

md-option {
.md-autocomplete-panel {
background: md-color($background, card);
color: md-color($foreground, text);

&.md-selected {
background: md-color($background, card);
color: md-color($foreground, text);
md-option {
&.md-selected {
background: md-color($background, card);
color: md-color($foreground, text);
}
}
}

}

0 comments on commit 943371c

Please sign in to comment.