Skip to content

Instantly share code, notes, and snippets.

@jaimergp
Created November 26, 2017 17:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaimergp/7c817a50c87b64bd7d53025bc3750b6e to your computer and use it in GitHub Desktop.
Save jaimergp/7c817a50c87b64bd7d53025bc3750b6e to your computer and use it in GitHub Desktop.
My Firefox Quantum userChrome.css
/* Place in ~/.mozilla/firefox/<profile_id>/chrome */
@namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
/* Show bookmarks toolbar on New Tab only */
#PersonalToolbar {
visibility:collapse;
}
#main-window[title="Mozilla Firefox"] #PersonalToolbar,
#main-window[title="Mozilla Firefox"] #PersonalToolbar #personal-bookmarks #PlacesToolbar,
#main-window[title^="New Tab"] #PersonalToolbar,
#main-window[title^="New Tab"] #PersonalToolbar #personal-bookmarks #PlacesToolbar {
visibility:visible !important;
}
/* Hide tab close buttons until hovered */
.tabbrowser-tab:not([pinned="true"]):not(:hover) .tab-close-button {
display: none !important;
}
@lucasverra
Copy link

This should brake on FF72, can you confirm ?

@jaimergp
Copy link
Author

jaimergp commented Jan 9, 2020

I stopped using Firefox as of 2018, sorry!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment