Skip to content

Instantly share code, notes, and snippets.

View RozeFound's full-sized avatar

Project D.D. RozeFound

  • Under Your Bed
View GitHub Profile
@waimus
waimus / userChrome.css
Last active November 2, 2025 13:06
Firefox CSS tabs toolbar auto hide.
/* tab bar auto hide */
@-moz-document url(chrome://browser/content/browser.xul),
url(chrome://browser/content/browser.xhtml) {
/* show tabs toolbar when navigator-toolbox gets hovered */
#main-window:not([customizing]) #navigator-toolbox:hover #TabsToolbar {
visibility: visible !important;
opacity: 1 !important;
margin-bottom: 0px;
transition: visibility 0.1s linear, opacity 0.1s linear, margin-bottom 0.1s linear;