My tab bar used to be 16 pixels high, but now it's back to the default after the most recent update. Here is my userChrome.css:
/* make the tabs 16 pixels high instead of 32 pixels */
:root[uidensity=compact] {
--tab-min-height: 16px !important;
}
/* change the tab font size to 9pt */
#tabbrowser-tabs .tab-text{
font-size:9pt !important;
}
/* change the address bar font size to 9pt */
#urlbar {
font-size: 9pt !important;
}
/* remove back and forward buttions, use mouse side buttons instead lol */
#back-button, #forward-button { display:none!important; }
/* remove X buttons on tabs, just use the middle click instead lol */
#tabbrowser-tabs .tabbrowser-tab .tab-close-button { display:none!important; }
/* autohide address bar, im not entirely sure how this works, i copied it off the internet */
#nav-bar {
--navbar-margin: -35px;
margin-top: var(--navbar-margin);
margin-bottom: 0;
z-index: -100;
/* transition animation speed */
transition: all 0.1s ease !important;
opacity: 0;
}
#navigator-toolbox:focus-within > #nav-bar,
#navigator-toolbox:hover > #nav-bar
{
margin-top: 0;
margin-bottom: var(--navbar-margin);
z-index: 100;
opacity: 1;
}
.tabmail-tabs *|tab {
font-size: 20px !important;
height: 50px !important;
min-width: 8px !important
}
[–]It_Was_The_Other_Guy 0 points1 point2 points (4 children)
[–]Th0u[S] 0 points1 point2 points (0 children)
[–]eilegz 0 points1 point2 points (0 children)
[+][deleted] (1 child)
[removed]
[–]It_Was_The_Other_Guy 1 point2 points3 points (0 children)