Created
November 26, 2017 17:17
-
-
Save jaimergp/7c817a50c87b64bd7d53025bc3750b6e to your computer and use it in GitHub Desktop.
My Firefox Quantum userChrome.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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; | |
} |
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
This should brake on FF72, can you confirm ?