Remove opacity changes from titlebar - fixes #331

Bug 1870803 introduced a transition to window activeness visuals. But
the lowered opacity breaks the z-index hackery we use to let
window-controls show through nav-bar.

This patch basically undoes the changes from bug 1870803
This commit is contained in:
MrOtherGuy
2023-12-22 06:25:13 +02:00
parent 9830ab554b
commit df4462f5d9
5 changed files with 27 additions and 5 deletions

View File

@@ -19,7 +19,11 @@ Window controls will be all wrong without it
--uc-toolbar-height: 40px;
--uc-urlbar-min-width: 50vw; /* minimum width for opened urlbar */
}
#titlebar{
will-change: unset !important;
transition: none !important;
opacity: 1 !important;
}
#scrollbutton-up,
#scrollbutton-down{ border-block-width: 2px !important; }