From 2f6a050325804f6bd26e5316ab95f40a95534e82 Mon Sep 17 00:00:00 2001 From: _00_ <131402327+rgaricano@users.noreply.github.com> Date: Sun, 26 Oct 2025 15:05:42 +0100 Subject: [PATCH] Refactor dark mode select styles-more specific Refactor dark mode select styles to be more specific and avoid interference with already classed select elements. --- src/app.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app.css b/src/app.css index c8c0b0470e..cf5d0360cc 100644 --- a/src/app.css +++ b/src/app.css @@ -152,12 +152,12 @@ select { -webkit-appearance: none; } -.dark select { - @apply bg-gray-900 text-gray-300; -} +.dark select:not([class*="bg-transparent"]) { + @apply bg-gray-900 text-gray-300; +} -.dark select option { - @apply bg-gray-850 text-white; +.dark select option { + @apply bg-gray-850 text-white; } @keyframes shimmer {