Make firefox tabs shrink rather than scroll: Difference between revisions
Jump to navigation
Jump to search
(Created page with "In about:support open profile folder make a new folder called chrome put in userChrome.css <code> #tabbrowser-arrowscrollbox::part(scrollbutton-up), #tabbrowser-arrowscrol...") |
No edit summary |
||
Line 7: | Line 7: | ||
put in userChrome.css |
put in userChrome.css |
||
< |
<pre> |
||
#tabbrowser-arrowscrollbox::part(scrollbutton-up), |
#tabbrowser-arrowscrollbox::part(scrollbutton-up), |
||
#tabbrowser-arrowscrollbox::part(scrollbutton-down) { |
#tabbrowser-arrowscrollbox::part(scrollbutton-down) { |
||
Line 19: | Line 19: | ||
overflow: hidden !important; |
overflow: hidden !important; |
||
} |
} |
||
</ |
</pre> |
||
Set preference in about:config: |
Set preference in about:config: |
Revision as of 15:51, 9 February 2023
In about:support
open profile folder
make a new folder called chrome
put in userChrome.css
#tabbrowser-arrowscrollbox::part(scrollbutton-up), #tabbrowser-arrowscrollbox::part(scrollbutton-down) { display:none !important; } .tabbrowser-tab { min-width: initial !important; } .tab-content { overflow: hidden !important; }
Set preference in about:config:
toolkit.legacyUserProfileCustomizations.stylesheets
to true