/ Published in: CSS
Expand |
Embed | Plain Text
/* * DownloadHelper DownThemAll Firebug Greasemonkey Hyperwords MeasureIt StatusBars ColorZilla * Edit this file and copy it as userChrome.css into your * profile-directory/chrome/ */ /* * This file can be used to customize the look of Mozilla's user interface * You should consider using !important on rules which you want to * override default settings. */ /* * Do not remove the @namespace line -- it's required for correct functioning */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ /* * Some possible accessibility enhancements: */ /* * Make all the default font sizes 20 pt: * * * { * font-size: 20pt !important * } */ /* * Make menu items in particular 15 pt instead of the default size: * * menupopup > * { * font-size: 15pt !important * } */ /* * Give the Location (URL) Bar a fixed-width font * * #urlbar { * font-family: monospace !important; * } */ /* * Eliminate the throbber and its annoying movement: * #throbber-box { display: none !important; } */ /* * For more examples see http://www.mozilla.org/unix/customizing.html */ /* Remove Go button from address bar */ #go-button-stack, .search-go-button-stack { display: none !important; } /*Remove magnifying glass button from search box*/ .search-go-button-stack { display: none !important; } /* Merge Firefox Reload/Stop buttons a la Safari. Stop button must be placed before Reload button */ #stop-button[disabled] { display: none;} #stop-button:not([disabled]) + #reload-button { display: none; } /*Remove dropdown arrows from back and forward*/ #back-button .toolbarbutton-menubutton-dropmarker, #forward-button .toolbarbutton-menubutton-dropmarker {display: none !important} /*Remove dropdown arrows from back and forward*/ #back-button .toolbarbutton-menubutton-dropmarker, #forward-button .toolbarbutton-menubutton-dropmarker {display: none !important} /* Remove the Edit and Help and History menus Id's for all toplevel menus: file-menu, edit-menu, view-menu, go-menu, bookmarks-menu, tools-menu, helpMenu */ #helpMenu, #go-menu { display: none !important; } #context-setWallpaper, #context-blockimage, #context-bookmarkpage, #context-back, #context-blockimage, #context-bookmarklink, #context-bookmarkpage, #context-delete, #context-forward, #context-metadata, #context-openlink, #context-reload, #context-savelink, #context-savepage, #context-searchselect, #context-selectall, #context-stop, #context-setWallpaper, #context-undo, #context-viewpartialsource-mathml, #context-viewpartialsource-selection, #context-sendpage, #context-sendlink, #context-sendimage, #context-setDesktopBackground, #context-sep-open, #context-sep-undo, #context-sep-viewbgimage, #context-sep-stop, #context-copyimage, #context-copyimage { display: none; }
You need to login to post a comment.
