Created
August 8, 2024 01:20
-
-
Save digitalsignalperson/7e5d4a44fbd7427a2c11f5753b7920d7 to your computer and use it in GitHub Desktop.
denser firefox vertical tabs
This file contains 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 { | |
max-width: none !important; | |
--tab-min-height: 0px; | |
--inline-tab-padding: 0px; | |
border: 1px solid var(--tab-selected-bgcolor) !important; | |
} | |
sidebar-main[expanded] div#vertical-tabs { | |
width: 300px !important; | |
max-width: none !important; | |
} | |
.tab-text { | |
font-size: 11px; | |
} | |
.tab-label-container { | |
height: 1.75em !important; | |
} |
a partial fix to the tabs not closing is
.tabbrowser-tab[fadein] {
max-width: unset !important;
}
it's cause of some offending code in tabbrowser.js... this still causes a 3 second delay until the tabs actually close
a better fix is to disable animations with user_pref("ui.prefersReducedMotion", 1);
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hmm seems the first
breaks closing tabs. It leaves a space where the closed tab used to be