p7th0n / Firefox-userChrome.css

Mozilla Firefox userChrome.css tweaks for Tree Style Tabs add-on

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mozilla Firefox userChrome.css

Mozilla Firefox 57 'Quantum' is a big update. Big changes for add-ons. Visual change to the Tree Style Tab add-on. The new Tree Style add-on works but the top tab bar still shows. Not a big deal but it adds visual clutter. A hide tab bar API is planned for later Firefox release. Until then there are tweaks to fix the UI.

userChrome.css is a text/CSS file in your Firefox Profile. Customize elements of the Firefox user interface there.

userChrome.css Tweaks

Hide the top/native tabs

/* hide native tabs */
#tabbrowser-tabs {
    visibility: collapse !important;
}

Hide the sidebar header

This tweak removes some clutter.

/* to hide the sidebar header */
#sidebar-header {
    visibility: collapse;
}

Show the minimize, restore and maximize title bar buttons in Windows

/* show window buttons [min, restore, max] */
#titlebar-buttonbox {
    height: 32px !important;
}

File Locations

  • Windows 10: C:\Users[username]\AppData\Roaming\Mozilla\Firefox\Profiles[profile]\chrome\userChrome.css
  • Linux/Unix: ~/.mozilla/firefox.profiles/[profile]/chrome/userChrome.css

Resources

About

Mozilla Firefox userChrome.css tweaks for Tree Style Tabs add-on


Languages

Language:CSS 100.0%