From 30d88d68843d7f514ea407ed4d753c74aaac9b3a Mon Sep 17 00:00:00 2001 From: 0x1d Date: Tue, 21 Oct 2025 13:14:36 +0200 Subject: [PATCH] feat: remove borders and shadows on the theme-switcher --- public/styles/theme.css | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/public/styles/theme.css b/public/styles/theme.css index db8b4a2..7ad138b 100644 --- a/public/styles/theme.css +++ b/public/styles/theme.css @@ -69,20 +69,11 @@ display: flex; align-items: center; gap: 0.5rem; - background: var(--bg-tertiary); - border: 1px solid var(--border-primary); border-radius: 12px; padding: 0.5rem; - backdrop-filter: var(--backdrop-blur); transition: all 0.3s ease; } -.theme-switcher:hover { - background: var(--bg-hover); - border-color: var(--border-hover); - box-shadow: var(--shadow-secondary); -} - .theme-toggle { background: none; border: none; @@ -98,9 +89,8 @@ } .theme-toggle:hover { - background: var(--bg-hover); color: var(--text-primary); - transform: scale(1.05); + transform: scale(1.1); } .theme-toggle:active { @@ -232,16 +222,9 @@ } [data-theme="light"] .theme-switcher { - background: rgba(255, 255, 255, 0.1); - backdrop-filter: blur(20px); - border: 1px solid rgba(148, 163, 184, 0.25); - box-shadow: 0 4px 16px rgba(148, 163, 184, 0.08); } [data-theme="light"] .theme-switcher:hover { - background: rgba(255, 255, 255, 0.15); - border: 1px solid rgba(148, 163, 184, 0.35); - box-shadow: 0 6px 20px rgba(148, 163, 184, 0.12); } [data-theme="light"] .view-content {