-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ability to hide native tab bars #5
Comments
Hide the native tabsFor now, add-ons can't hide the native browser tabs due to lack of an API. Enable Custom CSS
Create userChrome.css
/* Hides the native tabs */
#TabsToolbar {
visibility: collapse;
} Restart the browser to see the changes. More details: https://superuser.com/questions/1424478/can-i-hide-native-tabs-at-the-top-of-firefox |
On macOS I've been hiding the tabs using this CSS: #TabsToolbar .toolbar-items {
display: none;
}
#titlebar {
position: absolute;
top: 12px;
}
#nav-bar {
padding-top: 1px !important;
padding-left: 66px !important;
} the result looks like this: Wrote some additional notes here in case it's helpful to anyone: https://www.jonathanychan.com/blog/hiding-the-titlebar-and-using-vertical-tabs-in-firefox-on-macos/ |
On Win11 I recommand this CSS: #TabsToolbar {
justify-content: flex-end;
}
#TabsToolbar .toolbar-items {
display: none;
}
#TabsToolbar .titlebar-spacer {
display: none;
}
#TabsToolbar .titlebar-buttonbox-container {
min-height: 40px;
}
#titlebar {
position: absolute;
right: 0;
}
#nav-bar {
padding-top: 1px !important;
margin-right: 117px !important;
} |
Depends on 1332447 - WebExtension API to hide the tabstrip
The text was updated successfully, but these errors were encountered: