From 38b22287c7084f6ea8fdd6cfd4d87cd92f2a4844 Mon Sep 17 00:00:00 2001 From: Connor Johnstone Date: Fri, 5 Sep 2025 12:04:11 -0400 Subject: [PATCH] Unify hover behavior across all sidebar selectors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update view-selector-dropdown hover to match theme/style selectors - Change from var(--glass-bg-light) to rgba(255, 255, 255, 0.15) - Ensures consistent glassmorphism hover effects throughout sidebar - Provides cohesive user experience across Week/Month, Theme, and Style dropdowns 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- frontend/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/styles.css b/frontend/styles.css index b920918..6469969 100644 --- a/frontend/styles.css +++ b/frontend/styles.css @@ -1639,7 +1639,7 @@ body { } .view-selector-dropdown:hover { - background: var(--glass-bg-light); + background: rgba(255, 255, 255, 0.15); border-color: var(--glass-bg-lighter); }