Skip to content

Commit

Permalink
fix: disabled input (#52)
Browse files Browse the repository at this point in the history
* fix disabled input

* fix icon too
  • Loading branch information
mikeozornin authored and pimenovoleg committed Oct 11, 2018
1 parent 10dcac7 commit f5e1f55
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/lib/form-field/_form-field-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
@mixin mc-form-field-theme($theme) {
$primary: map-get($theme, primary);
$second: map-get($theme, second);

$foreground: map-get($theme, foreground);

$hover-darken: 5%;

.mc-form-field {
Expand All @@ -29,6 +32,10 @@
background: {
color: mc-color($second, 40);
}

.mc-icon, .mc-input {
color: mc-color($foreground, disabled-text);
}
}

&.mc-focused .mc-form-field__container {
Expand Down

0 comments on commit f5e1f55

Please sign in to comment.