Created
October 22, 2025 15:19
-
-
Save zhangyoufu/da3663ac6d966681c99e1b7a12559060 to your computer and use it in GitHub Desktop.
Firefox UI Customization: Compact Vertical Tab Bar
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
| @media -moz-pref("sidebar.verticalTabs") { | |
| :root { | |
| --tab-block-margin: 0 !important; | |
| --tab-min-height: 24px !important; | |
| } | |
| } | |
| #tabbrowser-tabs[orient="vertical"] { | |
| .tabbrowser-tab { | |
| padding-block: 0 !important; | |
| } | |
| tab-group:not([collapsed]) > &, | |
| tab-group[collapsed][hasactivetab] > & { | |
| padding-block-end: var(--space-xsmall) !important; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment