Created
March 18, 2019 22:17
-
-
Save ELLIOTTCABLE/0ba711a4e6bcd5139114dac160dbde64 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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