Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Created March 18, 2019 22:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ELLIOTTCABLE/0ba711a4e6bcd5139114dac160dbde64 to your computer and use it in GitHub Desktop.
Save ELLIOTTCABLE/0ba711a4e6bcd5139114dac160dbde64 to your computer and use it in GitHub Desktop.
/* Hide horizontal tabs at the top of the window #1349, #1672, #2147 */
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
opacity: 0;
pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
visibility: collapse !important;
}
#nav-bar { margin-top: -27px; padding: 0px 15px 0px 75px !important; }
/* For only Tree Style Tab sidebar #1397 */
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
display: none;
}
/* Auto-hide sidebar in windows with only one tab (requires another extension) #1768 */
#main-window[titlepreface="[1] "] #sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] {
visibility: collapse !important;
}
/* Reduce minimum width of the sidebar #1373 */
#sidebar {
min-width: 100px !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment