Merge pull request #18636 from rgaricano/dev-FIXSTYLES_dark_mode_select_boxes

UPD: Refactor dark select styles using Tailwind CSS classes
This commit is contained in:
Tim Baek 2025-10-26 14:56:05 -07:00 committed by GitHub
commit c9465da8f2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -152,6 +152,14 @@ select {
-webkit-appearance: none; -webkit-appearance: none;
} }
.dark select:not([class*="bg-transparent"]) {
@apply bg-gray-900 text-gray-300;
}
.dark select option {
@apply bg-gray-850 text-white;
}
@keyframes shimmer { @keyframes shimmer {
0% { 0% {
background-position: 200% 0; background-position: 200% 0;