Skip to content

Commit

Permalink
fix(select): fix selection color (angular#2697)
Browse files Browse the repository at this point in the history
  • Loading branch information
kara committed Jan 20, 2017
1 parent 80ac71e commit 2d3f006
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 2d3f006

Please sign in to comment.