@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* Hide the urlbar Bookmark Star if it is already bookmarked */
#urlbar-icons > #star-button[starred="true"]{
display: none !important;
}
/* to make Options dialog fit contents */
#BrowserPreferences {
width: 43em !important;
height: 43em !important;
}
/* hide the Back button when there's nothing to go back to */
#back-button[disabled="true"] {
display: none !important;
}
/* hide the Forward button when there's nothing to go forward to */
#forward-button[disabled="true"] {
display: none !important;
}
/* make inactive tabs fainter */
#content tab:not([selected="true"]) {
-moz-opacity: 0.5 !important;
}
/* Remove Edit menu (if you already use all the keyboard shortcuts) */
/* #helpMenu, #edit-menu {
display: none !important;
} */
/* Remove Home button (never use it) */
#home-button {
display: none !important;
}
/* Show keyword input box when adding a bookmark */
#keywordRow {
display: -moz-grid-line !important;
}
/* Multi-Row Bookmarks Toolbar */
#bookmarks-ptf {
display:block !important;
}
#bookmarks-ptf toolbarseparator {
display:inline !important;
}
/* Change Cursor for Links that Open in New Window */
:link[target="_blank"], :visited[target="_blank"],
:link[target="_new"], :visited[target="_new"] {
cursor: crosshair !important;
}
/* Show Stop and Reload buttons smartly*/
#stop-button[disabled] {
display: none !important;
}
#stop-button:not([disabled]) + #reload-button {
display: none !important;
}
/* remove spacer before Extension/Theme manager Find Update button */
#commandButtonContainer + spacer {
display: none !important;
}
/* remove space in Extension/Theme manager window just before the Restart icon */
#restart-spacer {
display: none !important;
}
/* Remove disabled menu items */
menuitem[disabled="true"] {
display: none !important;
}
/*::::::::::::::Invisible Menubar::::::::::::
How to use it: Move all your Navigation Toolbar items
(back/forward buttons, address bar, search bar etc.
from the navigation toolbar to the Menu Bar, either
on the right side or left side of the Menu Items.
Now past this code in userChrome.css and restart your
browser. You will no longer see the menu items. Now
hover at the right/left edge of the menu bar (whichever
side the menu items were on) and the menu items will
appear. You can now hide the navigation bar and save
vertical space
::::::::::::::*/
#menubar-items {
padding-left: 5px !important;
}
#menubar-items > #main-menubar {
margin-left: -9000px !important;
}
#menubar-items:hover > #main-menubar {
margin-left: 0 !important;
}
#menubar-items:hover {
background-image: none !important; padding-left:0 !important;
}
/* Always display Go Button */
#urlbar[pageproxystate="valid"] > #urlbar-icons > #go-button {
visibility: visible !important;
}
/* Never show “Open in New Window” when right clicking */
#context-openlink {
display: none !important;
}
/* Never show Spell check in Context menu
Useful for users of SpellBound II */
menuitem[label="Check Spelling"] {
display: none !important;
}
/* Remove Web Search from Tools Menu */
menuitem[label="Web Search"] {
display: none !important;
}
menuitem[label="Web Search"] + menuseparator {
display: none !important;
}