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:
ekzyis 2023-08-12 02:05:34 +02:00 committed by GitHub
parent b9461b7eb3
commit 9c212eea30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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