Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(chips): apply right theme styles
Browse files Browse the repository at this point in the history
Fixes #7104

Closes #7428
  • Loading branch information
devversion authored and ThomasBurleson committed Mar 7, 2016
1 parent e0941d6 commit e4f4533
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/components/chips/chips-theme.scss
Original file line number Diff line number Diff line change
@@ -1,16 +1,32 @@
md-chips.md-THEME_NAME-theme {

.md-chips {
box-shadow: 0 1px '{{background-300}}';
box-shadow: 0 1px '{{foreground-4}}';

&.md-focused {
box-shadow: 0 2px '{{primary-color}}';
}

._md-chip-input-container {
input {
@include input-placeholder-color('{{foreground-3}}');
color: '{{foreground-1}}';
}
}
}

md-chip {
background: '{{background-300}}';
color: '{{background-800}}';

md-icon {
color: '{{background-700}}';
}

&.md-focused {
background: '{{primary-color}}';
color: '{{primary-contrast}}';

md-icon {
color: '{{primary-contrast}}';
}
Expand Down

0 comments on commit e4f4533

Please sign in to comment.