Skip to content

Instantly share code, notes, and snippets.

@stuartstein777
Created November 29, 2021 21:22
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 stuartstein777/b7ebf62e3fd44f432b8739efc1e5c3f8 to your computer and use it in GitHub Desktop.
Save stuartstein777/b7ebf62e3fd44f432b8739efc1e5c3f8 to your computer and use it in GitHub Desktop.
Firefox css to expand / collapse TST
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#TabsToolbar {
visibility: collapse !important;
}
/*Collapse in default state and add transition*/
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] {
overflow: hidden;
min-width: 40px;
max-width: 40px;
transition: all 0.2s ease;
border-right: 1px solid #0c0c0d;
z-index: 2;
}
/*Expand to 260px on hover*/
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]:hover,
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar {
min-width: 260px !important;
max-width: 260px !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment