From 89018bb6b34e013919bc383e9e4aa62be376f8fc Mon Sep 17 00:00:00 2001 From: BoulderBadgeDad Date: Mon, 22 Jun 2026 12:06:57 -0700 Subject: [PATCH] CSS: .sidebar-header z-index 2 -> 1 Drop the header to the same stacking level as the nav instead of forcing it above. --- webui/static/style.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/webui/static/style.css b/webui/static/style.css index 8d679da8..456d6a41 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -307,11 +307,9 @@ body.reduce-effects .sidebar::after { gap: 8px; position: sticky; top: 0; - /* Above the nav (the sidebar gives its children z-index:1) so nav items - scrolling up sit BEHIND the header — i.e. in its backdrop, where the - blur below can actually act on them. Without this they paint in front - and backdrop-filter has nothing to blur. */ - z-index: 2; + /* Same stacking level as the nav (z-index:1) — sits in the normal sidebar + flow rather than forced above everything. */ + z-index: 1; overflow: hidden; flex-shrink: 0;