Skip to content

Instantly share code, notes, and snippets.

@Ad5001
Last active October 19, 2020 18:31
Show Gist options
  • Save Ad5001/3c095ae9f7a8850e09cf4097df42e409 to your computer and use it in GitHub Desktop.
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
.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