Make sure to hide the URL bar when hiding it on multiple toolbar compact mode

This commit is contained in:
mr. m
2025-02-25 22:01:08 +01:00
parent 279849debe
commit dc1c166ac2

View File

@@ -312,6 +312,10 @@
position: relative !important;
}
& #urlbar {
opacity: 0;
}
@media (-moz-bool-pref: 'zen.view.compact.color-toolbar') {
background-attachment: fixed;
background: var(--zen-main-browser-background-toolbar);
@@ -346,8 +350,13 @@
mix-blend-mode: overlay;
}
& #urlbar:not([zen-floating-urlbar='true']) {
& #urlbar {
opacity: 1;
}
& #urlbar[breakout-extend='true']:not([zen-floating-urlbar='true']) {
top: 2px !important;
opacity: 1;
}
}
}