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:
@@ -20,7 +20,12 @@ Window controls will be all wrong without it
|
||||
:root{
|
||||
--uc-menubar-vertical-overlap: 28px; /* adjust as necessary */
|
||||
}
|
||||
#titlebar{ -moz-appearance: none !important; }
|
||||
#titlebar{
|
||||
-moz-appearance: none !important;
|
||||
will-change: unset !important;
|
||||
transition: none !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
/* We'll use window controls from menubar instead */
|
||||
#TabsToolbar > .titlebar-buttonbox-container { display: none }
|
||||
/* Hide overflow button unless tabs overflow - is necessary for collpasing tabs with one tab */
|
||||
|
||||
Reference in New Issue
Block a user