Merge pull request #2852 from nwmac/light-theme-dropdown

Change colours for dropdown select on light theme
This commit is contained in:
Neil MacDougall 2021-04-30 11:48:57 +01:00 committed by GitHub
commit 93afef6a2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 4 deletions

View File

@ -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};

View File

@ -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;