Created
March 20, 2014 19:16
-
-
Save ps/9671636 to your computer and use it in GitHub Desktop.
Firefox 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
This is the setting placed in ~/.mozilla/firefox/<default-user-profile>/chrome/userChrome.css: | |
/******* | |
START | |
********/ | |
/*Do not remove the @namespace line -- it's required for correct functioning*/ | |
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
/*Toolbar & menu font size*/ | |
menubar, menubutton, menulist, menu, menuitem, textbox, toolbar, tab, tree, tooltip{font-size: 9pt !important;} | |
/*Toobar height*/ | |
toolbar {max-height:27px !important;} | |
#toolbar-menubar {padding: 0px !important;} | |
/* Remove menus and sizing */ | |
/*#helpMenu, #history-menu, #view-menu, #bookmarksMenu {display: none !important;}*/ | |
#file-menu, #edit-menu, #tools-menu {padding: 1px !important} | |
/*Status bar height and font size*/ | |
#status-bar {padding: 0px !important; max-height: 15px !important; font-size: 6pt !important;} | |
/*auto-complete list size and font*/ | |
.autocomplete-richlistitem {font-size: 9pt !important; padding: 1px !important; margin: 0px !important;} | |
/* Remove Stop button when there's nothing to Stop */ | |
#stop-button[disabled="true"] { display: none; } | |
/* Remove Home button | |
#home-button { display: none; }*/ | |
/*Remove forward/back list arrow when nothing to go to*/ | |
#back-forward-dropmarker[disabled="true"] {display: none;} | |
/*Button padding*/ | |
#back-button, #forward-button, #reload-button, #stop-button, #back-forward-dropmarker {padding: 0px !important} | |
/******* | |
END | |
********/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment