Skip to content

Commit dc9db13

Browse files
authored
Firefox: hide navigation toolbars only when top menu is inactive (#288)
* Firefox: hide navigation toolbars only when top menu is inactive * Firefox: only hide navbar when user isn't interacting with it
1 parent d77d12c commit dc9db13

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

usr/share/webapp-manager/firefox/profile/chrome/userChrome.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
#nav-bar, #identity-box, #tabbrowser-tabs, #TabsToolbar {
2-
visibility: collapse;
1+
#navigator-toolbox:not(:hover, :focus, :active) {
2+
#toolbar-menubar[inactive="true"] ~ #TabsToolbar,
3+
#titlebar:has(#toolbar-menubar[inactive="true"]) ~ #nav-bar {
4+
visibility: collapse;
5+
}
36
}
47

58
#nav-bar * {

0 commit comments

Comments
 (0)