Firefox 89 (proton) Style Snippets #406
Replies: 5 comments 5 replies
-
Doesn't seem to work on OSX. Both the wiki version and this update (which I hoped would fix the issue). Not only that, but for some weird reason the #main-window selector doesn't do much, even if I remove the [titlepreface] attribute. Anyone has any idea ? |
Beta Was this translation helpful? Give feedback.
-
For those who are reluctant to change their window title, here is the use of ZERO WIDTH SPACE: #main-window[titlepreface^=""] #TabsToolbar {
display: none;
} The attribute is not empty, it contains the unicode character U+200B which is a space with a width of 0. To insert it in Sidebery preface value, copy/paste with quotes around the character, and then remove them with delete/backspace. |
Beta Was this translation helpful? Give feedback.
-
Thank you, this is working nice for me on Windows 10, Firefox 101 and Sidebery v5 beta. However when no pinned tab were active, the native pinned tabs were hovering over the Sidebery sidebar header (not always reproducible, I don't understand...). To hide them I added the following: #main-window[titlepreface*="Sidebery"] #tabbrowser-tabs {
visibility: collapse;
} |
Beta Was this translation helpful? Give feedback.
-
My hack for macos #main-window:not([inFullscreen="true"]) #navigator-toolbox {
display: flex
}
#main-window:not([inFullscreen="true"]) #titlebar {
width: 66px;
background: var(--toolbar-bgcolor);
}
#main-window #TabsToolbar > *:not(.titlebar-buttonbox-container) {
display: none;
}
#main-window:not([inFullscreen="true"]) #nav-bar {
width: calc(100% - 66px)
}
#main-window[inFullscreen="true"] #TabsToolbar {
display: none
} You can add titlepreface if you want |
Beta Was this translation helpful? Give feedback.
-
Hello every,
|
Beta Was this translation helpful? Give feedback.
-
Hi,
Here is my version of the Firefox Styles Snippets to hide the tab bar in Firefox 89+ (proton UI).
I had to redo it because the one provided in the wiki don't work anymore with the new UI.
Probably not the best css but it seems to work so~
As explained in the wiki, the code should go into the userChrome.css and the toolkit.legacyUserProfileCustomizations.stylesheets setting in about:config needs to be true.
I didn't use any animation, mainly because I didn't had the motivation to dig this deep, and also because I don't switch between horizontal and vertical mode often, I just needed a way to switch the view without editing back the userChrome.css.
Feel free to use it, adapt it, publish it in the wiki !
Edit: added printscreen
Beta Was this translation helpful? Give feedback.
All reactions