From b1dcb3889efe977c54843d0e5ca634a63441818c Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Tue, 24 Feb 2026 13:01:10 -0500 Subject: [PATCH] feat(styles): add active indicator classes for dropdown buttons - Add bg-theme-active/inactive for theme buttons - Add bg-wood-active/inactive for wood paneling buttons - Use CSS variables already defined in input.css - Use !important to override inline styles --- web/static/input.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web/static/input.css b/web/static/input.css index 42df008..3af9e60 100644 --- a/web/static/input.css +++ b/web/static/input.css @@ -195,4 +195,15 @@ background-color: transparent !important; color: #c0caf5 !important; } + + /* Active/inactive states for theme and wood paneling buttons */ + .bg-theme-active, + .bg-wood-active { + background-color: var(--bg-primary) !important; + } + + .bg-theme-inactive, + .bg-wood-inactive { + background-color: var(--bg-secondary) !important; + } } \ No newline at end of file