Fix select dropdown menu background in dark theme (#858)

This commit is contained in:
Sascha Ißbrücker
2024-09-24 21:42:52 +02:00
committed by GitHub
parent b53fe09c39
commit f4dd2b53b5
2 changed files with 17 additions and 0 deletions

View File

@@ -141,3 +141,10 @@
--bookmark-actions-weight: 400;
--bulk-actions-bg-color: var(--contrast-5);
}
/* Try to force dark color scheme for all native elements (e.g. upload button
in file inputs, native select dropdown). For the select dropdown some browsers
ignore this and use whatever users have configured in their system settings. */
:root {
color-scheme: dark;
}