Created
January 31, 2023 13:55
-
-
Save sdkks/c2b0ef394ce0639eb88d8b892229351d to your computer and use it in GitHub Desktop.
Customize Firefox Toolbar Layout with userChrome.css
This file contains 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
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ | |
/* Placing the config file */ | |
/* Go to about:support address, find Profile folder, open it */ | |
/* Create an empty directory named `chrome` in that */ | |
/* Add this file in that directory with name userChrome.css */ | |
/* Activating the configuration */ | |
/* Go to address about:config, then set => toolkit.legacyUserProfileCustomizations.stylesheets: true */ | |
/* Hide icons for toolbar */ | |
#personal-bookmarks .bookmark-item .toolbarbutton-icon {display:none!important;} | |
/* Make toolbar bookmark text larger */ | |
#personal-bookmarks .bookmark-item .toolbarbutton-text {font-size:14pt!important;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment