Fix dropdown items not visible in darkmode on some browsers (#394)
See 6354913420
Co-authored-by: ekzyis <ek@stacker.news>
This commit is contained in:
parent
b9461b7eb3
commit
9c212eea30
|
@ -319,9 +319,9 @@ select.form-select {
|
|||
appearance: none;
|
||||
}
|
||||
|
||||
select option {
|
||||
select.form-select option {
|
||||
// fix dropdown items not visible in darkmode on some browsers
|
||||
color: initial;
|
||||
color: rgba(0, 0, 0, 0.9);
|
||||
}
|
||||
|
||||
select:focus {
|
||||
|
|
Loading…
Reference in New Issue