mirror of https://github.com/rancher/dashboard.git
Merge pull request #2852 from nwmac/light-theme-dropdown
Change colours for dropdown select on light theme
This commit is contained in:
commit
93afef6a2d
|
|
@ -113,10 +113,10 @@ $selected: rgba($primary, .5);
|
|||
--dropdown-border : #{$medium};
|
||||
--dropdown-divider : #{$medium};
|
||||
--dropdown-text : #{$link};
|
||||
--dropdown-active-text : #{darken($link, 1%)};
|
||||
--dropdown-active-bg : #{$selected};
|
||||
--dropdown-hover-text : #{lighten($link, 1%)};
|
||||
--dropdown-hover-bg : #{rgba($primary, 0.2)};
|
||||
--dropdown-active-text : #{$lightest};
|
||||
--dropdown-active-bg : #{$dark};
|
||||
--dropdown-hover-text : #{$lightest};
|
||||
--dropdown-hover-bg : #{$primary};
|
||||
--dropdown-disabled-text : var(--muted);
|
||||
--dropdown-disabled-bg : #{$disabled};
|
||||
|
||||
|
|
|
|||
|
|
@ -351,6 +351,14 @@ export default {
|
|||
display: inline-block;
|
||||
}
|
||||
|
||||
.filter {
|
||||
::v-deep .vs__dropdown-menu {
|
||||
li.vs__dropdown-option {
|
||||
padding: 4px 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.filter.show-masked ::v-deep .unlabeled-select:not(.masked-dropdown) {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue