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.
This commit is contained in:
pewdiepie-archdaemon
2026-06-12 23:37:39 +09:00
parent f2da86b455
commit 696ff78302
+6
View File
@@ -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;