mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-16 01:35:36 -04:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user