1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 05:43:41 +00:00

update ng-option selected and marked styles (#4453)

This commit is contained in:
rr-bw
2023-03-22 09:52:48 -07:00
committed by GitHub
parent 780a563ce0
commit adbbb48dd8

View File

@@ -12,6 +12,7 @@ $ng-select-border: rgb(var(--color-secondary-500)) !default;
$ng-select-border-radius: 4px !default;
$ng-select-bg: rgb(var(--color-background-alt)) !default;
$ng-select-selected: transparent !default;
$ng-select-selected-alt: rgb(var(--color-text-main) / 0.06) !default;
$ng-select-selected-text: $ng-select-primary-text !default;
$ng-select-marked: rgb(var(--color-text-main) / 0.12) !default;
@@ -356,10 +357,15 @@ $ng-dropdown-shadow: rgb(var(--color-secondary-100)) !default;
background-color: $ng-select-dropdown-option-bg;
color: $ng-select-dropdown-option-text;
padding: 8px 10px;
&.ng-option-selected {
background-color: $ng-select-selected-alt;
}
&.ng-option-selected.ng-option-marked {
background-color: $ng-select-marked;
}
&.ng-option-selected,
&.ng-option-selected.ng-option-marked {
color: $ng-select-selected-text;
background-color: $ng-select-selected;
.ng-option-label {
font-weight: 600;
}