Created
April 12, 2025 11:54
-
-
Save nblagoev/f1e0c4a52f84305725fde681a4083b43 to your computer and use it in GitHub Desktop.
firefox profile
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
/* Show pin tabs separator in expanded state */ | |
#tabbrowser-tabs[expanded] > #vertical-pinned-tabs-container-separator { | |
display: block !important; | |
} | |
/* Hide pin tabs separator in expanded state with no pin tabs */ | |
#vertical-pinned-tabs-container:empty + #vertical-pinned-tabs-container-separator { | |
display: none !important; | |
} | |
/* Uniform tabs padding */ | |
#tabbrowser-tabs[orient="vertical"] .tabbrowser-tab { | |
padding-block: 0px !important; | |
} | |
/* Column layout for pin tabs */ | |
#vertical-pinned-tabs-container { | |
grid-template-columns: none !important; | |
} | |
#nav-bar { | |
min-height: 45px !important; | |
} | |
.titlebar-spacer { | |
display:none | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment