From baa4449a030dbc5a673091397812bbc9343ffe0f Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Wed, 10 Jun 2026 22:42:06 +0900 Subject: [PATCH] Sidebar/Chats manage button: drop hover background tint The shared .section-header-btn:hover rule paints a tinted background across all section header buttons. On the Chats manage button this showed as a box behind the sliding 'manage' label, which the user didn't want. Override background to transparent for that one button. --- static/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/static/style.css b/static/style.css index 5b8c36780..41a440f43 100644 --- a/static/style.css +++ b/static/style.css @@ -1257,6 +1257,14 @@ body.bg-pattern-sparkles { #sessions-section .chats-manage-btn:focus-visible { opacity: 1 !important; } + /* No hover background on the Chats manage button — the inherited + section-header-btn rule was painting a tinted box behind the + 'manage' label as it slid in. */ + #sessions-section .chats-manage-btn, + #sessions-section .chats-manage-btn:hover, + #sessions-section .chats-manage-btn:focus-visible { + background: transparent !important; + } @media (hover: none) { #sessions-section .chats-manage-btn { opacity: 0.35 !important; } #sessions-section .chats-manage-btn:active { opacity: 1 !important; }