From b3415a3db4c0ac5678fe3ec028ec3f3ed5bae0ce Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Mon, 3 Nov 2025 08:34:32 -0300 Subject: [PATCH] feat(ui): remove redundant styles and adjust theme toggle position - Remove redundant background and filter properties from logo-icon and assistant-avatar - Remove redundant filter property from light theme logo-icon - Invert assistant-avatar image in light theme for better visibility - Move theme-toggle button further right (60px to 160px) to prevent overlap --- web/html/index.html | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/web/html/index.html b/web/html/index.html index 3abe017b..efd35648 100644 --- a/web/html/index.html +++ b/web/html/index.html @@ -240,7 +240,6 @@ .logo-icon { width: 48px; height: 48px; - background: var(--primary); border-radius: 14px; display: flex; align-items: center; @@ -262,7 +261,6 @@ } [data-theme="light"] .logo-icon img { - filter: invert(0); } .logo-text { @@ -381,7 +379,6 @@ .assistant-avatar { width: 44px; height: 44px; - background: var(--primary); border-radius: 12px; display: flex; align-items: center; @@ -404,7 +401,7 @@ } [data-theme="light"] .assistant-avatar img { - filter: invert(0); + filter: invert(1); } .assistant-message-content { @@ -824,7 +821,7 @@ .theme-toggle { position: fixed; top: 24px; - right: 60px; + right: 160px; z-index: 101; background: var(--bg-card); border: 1px solid var(--border-color);