Hiding the tab bar on Firefox 117.0.1 #3390
-
Advise from the wiki doesn't seem to work: https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules#hide-horizontal-tabs-at-the-top-of-the-window-1349-1672-2147 It hides all tabs, but keeps around the empty space from the tab bar: > cat profile/chrome/userChrome.css
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
opacity: 0;
pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
visibility: collapse !important;
} |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
The following seems to work #TabsToolbar {
visibility: collapse;
} Source: https://superuser.com/a/1424494 |
Beta Was this translation helpful? Give feedback.
-
There is information on the wiki as well (including the answer you already found): https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules#hide-horizontal-tabs-at-the-top-of-the-window-1349-1672-2147 |
Beta Was this translation helpful? Give feedback.
-
So I went back and looked at the older solution (as I might have used it in the past) and loaded up a new profile to test some things out. I used the original solution and see the same thing you do with the extra bar with the window controls. Technically I guess the tabs are removed, but not an elegant solution. I had an older alternate solution that basically used the same initial solution and then SHIFTED down the nav bar controls down into the tab bar and shifted the right-most items to the left. So if you wanted to KEEP the window controls you can try something like this. (Obviously you would need to customize for your instance in terms of how much to shift things) I assume you see something like this with the proposed solution? |
Beta Was this translation helpful? Give feedback.
The following seems to work
Source: https://superuser.com/a/1424494