- Solved
- Archived
If you're a userChrome.css user and your tab height increased on 96.0.2...
If you use userChrome.css to customise the tab toolbar, you might see the height of the tabs increase with Firefox 96.0.2. For me the fix was to add an entry to userChro… (read more)
If you use userChrome.css to customise the tab toolbar, you might see the height of the tabs increase with Firefox 96.0.2. For me the fix was to add an entry to userChrome.css:
#tabbrowser-tabs:not([secondarytext-unsupported]) .tab-label-container { height: initial !important; }
This counteracts a change in 96.0.2 which sets the height of that element to 2em.