Add "Hide 'New tab' button when vertical tabs are enabled" style (#609)

* Add "Hide 'New tab' button when vertical tabs are enabled"

* hide vert new tab button: fix for the scrollable sidebar case
This commit is contained in:
Nikolaj Šujskij
2026-03-10 19:00:58 +04:00
committed by GitHub
parent 9f0c29638c
commit a85a5d665e

View File

@@ -0,0 +1,9 @@
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/hide_vert_new_tab_button.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
/* This style hides "New tab" button *when vertical tabs are enabled*
* (https://support.mozilla.org/en-US/kb/use-sidebar-access-tools-and-vertical-tabs#w_turn-on-vertical-tabs)
*/
#tabbrowser-tabs[orient="vertical"] :is(#tabs-newtab-button, #vertical-tabs-newtab-button){
display: none;
}