Skip to content

Instantly share code, notes, and snippets.

@aniketfuryrocks
Forked from collinbarrett/userChrome.css
Created May 22, 2022 06:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aniketfuryrocks/6b1f5d1503c26dcac8309e09e0a6d25b to your computer and use it in GitHub Desktop.
Save aniketfuryrocks/6b1f5d1503c26dcac8309e09e0a6d25b to your computer and use it in GitHub Desktop.
A userChrome.css to use with Tree Style Tab (https://github.com/piroor/treestyletab) for Firefox
/*
Windows
Location: C:\Users\<YourUsername>\AppData\Roaming\Mozilla\Firefox\Profiles\<YourFirefoxProfile>\chrome
Notes:
If minimize, maximize, and close buttons are no longer visible, enable the Title Bar or Menu Bar in Firefox Customize.
macOS
Location: /Users/<YourUsername>/Library/Application Support/Firefox/Profiles/<YourFirefoxProfile>/chrome
Notes:
If minimize, maximize, and close buttons overlap other controls, add the Flexible Space in Firefox Customize.
*/
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
/* Hide horizontal tab toolbar */
#TabsToolbar {
visibility:collapse!important;
}
/* Hide "Tree Style Tabs" sidebar header */
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
display:none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment