Last active
October 19, 2020 18:31
-
-
Save Ad5001/3c095ae9f7a8850e09cf4097df42e409 to your computer and use it in GitHub Desktop.
Compress tabs to show dozens of them. For Firefox. How to add custom userChrome.css: https://www.userchrome.org/how-create-userchrome-css.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.tabbrowser-tab { | |
--tab-min-width: 55px; | |
-moz-box-flex: 0 !important; | |
transition: all 0.2s; | |
width: -10px !important; | |
} | |
.tabbrowser-tab[visuallyselected="true"] { | |
-moz-box-flex: 1 !important; | |
} | |
.tabbrowser-tabs > arrowscrollbox { | |
height: 45px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment