Skip to content

Instantly share code, notes, and snippets.

@jurbanek
Created November 19, 2020 16:57
Show Gist options
  • Save jurbanek/ce7322302b3ea7e5328bacd18a808696 to your computer and use it in GitHub Desktop.
Save jurbanek/ce7322302b3ea7e5328bacd18a808696 to your computer and use it in GitHub Desktop.
Tree Style Tab userChrome.css modification to hide standard horizontal tab bar and Tree Style Tab's unnecessary sidebar header
/*
Windows: 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: /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