Up until now I had been able to reduce the height of FIrefox's tabbar Urlbar / icon bar with the followng CSS code:
/* TABS: height */
root {
--tab-toolbar-navbar-over… (read more)
Up until now I had been able to reduce the height of FIrefox's tabbar Urlbar / icon bar with the followng CSS code:
/* TABS: height */
- root {
--tab-toolbar-navbar-overlap: 0px !important; /*fix for fullscreen mode*/
--tab-min-height: 23px !important;
}
- root #tabbrowser-tabs {
--tab-min-height: 23px !important;
}
- TabsToolbar {height: var(--tab-min-height) !important;}
/* URL bar: height */
- root #urlbar, :root .searchbar-textbox {
font-size: 9pt !important;
max-height: 23px !important;
padding: 0px !important;
}
- root #identity-box {
font-size: 9pt !important;
max-height: 23px;
padding: 0px !important;
}
- root #nav-bar .toolbarbutton-1 {
font-size: 9pt;
max-height: 23px !important;
padding: 0px !important;
}
- root #navigator-toolbox {
font-size: 9pt !important;
max-height: 23px !important;
padding: 0px !important;
}
It no longer works. Why not?