Skip to content

Commit

Permalink
fix(select): Fix dropdown arrow mixin setting an invalid color (#2637)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamernest committed Apr 27, 2018
1 parent c05a6bd commit 6450613
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/mdc-select/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ $mdc-select-label-padding: 16px;

$mdc-select-ink-color: rgba(mdc-theme-prop-value(on-surface), .87);
$mdc-select-disabled-ink-color: rgba(mdc-theme-prop-value(on-surface), .37);
$mdc-select-disabled-arrow-color: mdc-theme-prop-value(on-surface);

$mdc-select-label-color: rgba(mdc-theme-prop-value(on-surface), .6);
$mdc-select-focused-label-color: rgba(mdc-theme-prop-value(primary), .87);
Expand Down
2 changes: 1 addition & 1 deletion packages/mdc-select/mdc-select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
}

.mdc-select--disabled {
@include mdc-select-dd-arrow-svg-bg_($mdc-select-disabled-ink-color);
@include mdc-select-dd-arrow-svg-bg_($mdc-select-disabled-arrow-color);

&.mdc-select--box {
@include mdc-select-container-fill-color_($mdc-select-box-disabled-fill-color);
Expand Down

0 comments on commit 6450613

Please sign in to comment.