Skip to content

Instantly share code, notes, and snippets.

@Hiestaa
Created February 7, 2025 18:15
Show Gist options
  • Save Hiestaa/e33195f860c15d56971b3213d4386268 to your computer and use it in GitHub Desktop.
Save Hiestaa/e33195f860c15d56971b3213d4386268 to your computer and use it in GitHub Desktop.
Firefox Customization - userChrome.css
/* Remove tabs top-bar */
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar {
opacity: 0;
pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
/* visibility: collapse !important; */
}
/* Remove title section from Tree Style Tabs */
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] > #sidebar-header {
visibility: collapse;
}
/* move scrollbar out of page*/
#content browser {
margin-right: -14px !important;
overflow-y: scroll;
}
scrollbar {
-moz-appearance: none !important;display: none !important;
}
/* No sidebar splitter */
#sidebar {
margin: -1px;
}
.sidebar-splitter {
display: none;
}
/* no findbar grey border */
.browserContainer > findbar {
border: none !important;
}
/* WINDOWS: remove top title bar (and replace it with the nav bar */
#tabbrowser-tabs, #tabbrowser-tabs > .tabbrowser-arrowscrollbox, #tabbrowser-tabs[positionpinnedtabs] > .tabbrowser-tab[pinned] {
min-height: initial !important;
}
#nav-bar {
margin-right: 50px !important;
margin-left: 76px !important;
height: 40px !important;
margin-top:-43px !important;
background-color: #000 !important;
}
#browser {
margin-top: 4px;
}
/* WINDOWS: remove browser scroll bar */
/* #appcontent browser {
overflow-y: scroll;
margin-right: -17px !important;
} */
/* Disable new sidebar */
#sidebar-main {
width: 0 !important;
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment