From 696ff783023ce8efaa838a2e66f8fb8530108dbf Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Fri, 12 Jun 2026 23:37:39 +0900 Subject: [PATCH] Mobile sidebar: force opaque background to stop chat model picker bleed-through Firefox mobile rendered the backdrop-filter:blur + var(--panel) combination on the slide-out sidebar as semi-transparent, so the chat input bar's selected-model label (e.g. "minimax") was visible behind the drawer. Force background:var(--panel) and backdrop-filter:none inside the mobile @media block. --- static/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/static/style.css b/static/style.css index 1546e5d56..4ffa4e397 100644 --- a/static/style.css +++ b/static/style.css @@ -4128,6 +4128,12 @@ body.bg-pattern-sparkles { transition: transform 0.25s ease, opacity 0.25s ease !important; opacity: 1 !important; overflow: visible !important; + /* Force opaque background — Firefox mobile renders the + backdrop-filter+background combo as semi-transparent on + the slide-out drawer, letting the chat input model picker + label show through the sidebar. */ + background: var(--panel) !important; + backdrop-filter: none !important; } .sidebar.hidden { width: 80% !important;