From bf1a5a4b6aeadd44c501532f535dcd038065cfd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?bartal=20l=C3=A6arsson?= Date: Fri, 19 Jun 2026 13:21:15 +0100 Subject: [PATCH] fix dropdown styling --- static/app.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/static/app.css b/static/app.css index f33e8d4..940bda7 100644 --- a/static/app.css +++ b/static/app.css @@ -4,6 +4,7 @@ :root, [data-theme="light"] { + color-scheme: light; --bg: #f4f1ec; --fg: #1a1d22; --muted: #595f68; @@ -42,6 +43,7 @@ } [data-theme="tokyo"] { + color-scheme: dark; --bg: #07070d; --fg: #e8f4ff; --muted: #a3b3cc; @@ -77,6 +79,11 @@ --toggle-border: rgba(100, 220, 255, 0.4); --toggle-shadow: 0 0 10px rgba(100, 220, 255, 0.5), 0 0 25px rgba(100, 220, 255, 0.3); } +[data-theme="tokyo"] select, +[data-theme="tokyo"] option { + background: #0f1018; + color: #e8f4ff; +} html, body { max-width: 100%; overflow-x: hidden; } body {