Opacity 0 when Compact Fullscreen

Signed-off-by: sporocyst <sporocyst.tw@gmail.com>
This commit is contained in:
sporocyst
2025-04-17 22:18:43 +08:00
committed by GitHub
parent 303e6066e2
commit 4aa3e5b34d

View File

@@ -383,4 +383,21 @@
}
}
}
}
}
:root[zen-compact-mode='true']:not([customizing])[inDOMFullscreen='true'] {
@media -moz-pref('zen.view.compact.hide-tabbar') or -moz-pref('zen.view.use-single-toolbar') {
&:not([zen-compact-animating]) {
#navigator-toolbox {
opacity: 0;
}
}
}
@media -moz-pref('zen.view.compact.hide-toolbar') {
&:not([zen-single-toolbar='true']) {
& #zen-appcontent-navbar-container {
opacity: 0;
}
}
}
}