Fix: select dropdown background colors not visible in light mode (#6323)

This commit is contained in:
shamoon 2024-04-07 14:03:15 -07:00 committed by GitHub
parent 7afc91e7b1
commit 0b34e70f6c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 5 deletions

View file

@ -262,13 +262,14 @@ a.btn-link:focus-visible,
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked {
background-color: var(--pngx-bg-alt) !important;
background-color: var(--pngx-bg-darker) !important;
color: var(--pngx-body-color-accent) !important;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected,
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked {
background: none;
font-weight: bold;
background-color: var(--pngx-bg-alt2) !important;
}
}