UX: update disabled dropdowns style w/ color variables

This commit is contained in:
Kris 2019-10-22 16:32:24 -04:00
parent 2ab6a68629
commit d4f1e6d11b
3 changed files with 13 additions and 5 deletions

View File

@ -673,7 +673,7 @@
&:focus { &:focus {
box-shadow: none; box-shadow: none;
border-color: #e9e9e9; border-color: $primary-low;
} }
} }

View File

@ -78,8 +78,12 @@
&.is-disabled { &.is-disabled {
.select-kit-header { .select-kit-header {
background: #e9e9e9; background: $primary-low;
border-color: #ddd; border-color: $primary-low-mid;
color: $primary-medium;
.d-icon {
color: $primary-medium;
}
} }
} }

View File

@ -33,8 +33,12 @@
&.is-disabled { &.is-disabled {
.multi-select-header { .multi-select-header {
background: #e9e9e9; background: $primary-low;
border-color: #ddd; border-color: $primary-low-mid;
color: $primary-medium;
.d-icon {
color: $primary-medium;
}
} }
} }