Skip to content

Commit

Permalink
fix(input): fixed color theme (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg Ulyanov authored and pimenovoleg committed Aug 6, 2018
1 parent c2673bd commit 6e4edf3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/lib/input/_input-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,21 @@
@import '../core/styles/typography/typography-utils';

@mixin mc-input-theme($theme) {
$second: map-get($theme, second);

.mc-input {
color: mc-color($mc-grey, 700);
color: mc-color($second, 700);

&::placeholder {
color: mc-color($mc-grey, 300);
color: mc-color($second, 300);
}

&::-ms-input-placeholder {
color: mc-color($mc-grey, 300);
color: mc-color($second, 300);
}

&::-webkit-input-placeholder {
color: mc-color($mc-grey, 300);
color: mc-color($second, 300);
}
}
}
Expand Down

0 comments on commit 6e4edf3

Please sign in to comment.