Corrigindo fundo branco nas caixas de selecao (select) globalmente
Build and Deploy (Gitea) / build-and-deploy (push) Successful in 58s Details

This commit is contained in:
Sidney Gomes 2026-07-25 09:57:15 -03:00
parent 913245b86e
commit c4feb1b109
1 changed files with 8 additions and 0 deletions

View File

@ -142,3 +142,11 @@ input:-webkit-autofill:active {
transition: background-color 5000s ease-in-out 0s; transition: background-color 5000s ease-in-out 0s;
} }
/* ── Fix select dropdown options styling globally ── */
select {
color-scheme: dark;
}
select option {
background-color: #1a1a1a;
color: #ffffff;
}