
Can I still use the compact bar?
I prefer the more compact tab bar from before the update, but now there's only normal and touch settings for density. Is there a way to still use it?
Chosen solution
Density Compact is currently no longer supported and is currently hidden behind a pref on the about:config page.
- browser.compactmode.show = true
- https://support.mozilla.org/en-US/kb/about-config-editor-firefox
Unsupported likely means that [uidensity=compact] CSS rules are no longer tested and kept up to date, so you may have to use code in userChrome.css to ensure proper functioning.
Read this answer in context 👍 0All Replies (2)
Chosen Solution
Density Compact is currently no longer supported and is currently hidden behind a pref on the about:config page.
- browser.compactmode.show = true
- https://support.mozilla.org/en-US/kb/about-config-editor-firefox
Unsupported likely means that [uidensity=compact] CSS rules are no longer tested and kept up to date, so you may have to use code in userChrome.css to ensure proper functioning.
Thanks!