Fix dropdown items not visible in darkmode on some browsers (#394)

See 6354913420a11c2f199d21ea59740651704ff17e

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

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 {