scripts/themes/userChrome.css

22 lines
414 B
CSS
Raw Normal View History

@-moz-document url("chrome://browser/content/browser.xhtml") {
2019-07-12 08:59:20 -07:00
/* get rid of hamburgers */
#PanelUI-menu-button {
display: none;
}
2019-06-25 16:15:22 -07:00
2019-07-12 08:59:20 -07:00
/* hide top tabs (for sideberry) */
#TabsToolbar {
visibility: collapse !important;
}
2019-06-25 16:15:22 -07:00
2019-07-12 08:59:20 -07:00
/* hide sidebar top-menu */
#sidebar-header {
visibility: collapse;
}
2019-06-25 16:15:22 -07:00
2019-07-12 08:59:20 -07:00
/* change the border between the sidebar and the page */
#sidebar-splitter {
visibility: collapse;
}
2019-06-25 16:15:22 -07:00
}