misc/waterfox: add userChrome.css and Tree Style Tab user styles

This commit is contained in:
Lexi / Zoe 2020-11-15 18:08:45 +01:00
parent 51027f37bb
commit 8d6793b6cf
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
2 changed files with 66 additions and 0 deletions

View file

@ -0,0 +1,24 @@
/*** Hide Tab Close buttons ***/
.tabbrowser-tab .tab-close-button {
visibility: collapse !important;
}
/* == Tree Style Tab == */
/* see: https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules */
/* Hide horizontal tab bar */
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
opacity: 0;
pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
visibility: collapse !important;
}
/* Hide "Tree Style Tab" header at the top of the sidebar */
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
display: none;
}