Fix dropdown items not visible in darkmode on some browsers

This commit is contained in:
ekzyis 2023-05-03 01:03:11 +02:00 committed by Keyan
parent cd9c0086ef
commit 6354913420
1 changed files with 5 additions and 0 deletions

View File

@ -184,6 +184,11 @@ select.custom-select {
background-size: 1.5rem;
}
select.custom-select option {
// fix dropdown items not visible in darkmode on some browsers
color: initial;
}
select.custom-select:focus {
border-color: none !important;
box-shadow: none !important;