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 769a658
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 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 {
background: md-color($background, card);
color: md-color($foreground, text);

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

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

}

0 comments on commit 769a658

Please sign in to comment.