/* C:\Documents and Settings\Administrator\Application Data\Mozilla\Firefox\Profiles\default.fxy\chrome\userChrome.css http://www.mozilla.org/support/firefox/tips.html#beh_icons about userChrome.css This file sets the display rules for various elements in the Firefox user interface and is located in the sub-folder called chrome in your profile folder. As with user.js, this file does not exist by default, so you need to create it before you can start adding your preferences. There's actually an example file that exists by default, called userChrome-example.css. Basically, you can just rename that file by removing the -example part. */ /* Change background to a Windows XP Solid color. (For all screen widths.) http://www.tom-cat.com/mozilla/firefox/userchrome.html */ @import url("chrome://global/skin/subskin/background-xp.css"); /* ::::: Do not remove this @namespace entry -- it's required for correct functioning ::::: */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* Change color of active tab */ tab{ background-image: none !important; background-color: infobackground !important; } tab[selected="true"] { background: #FFFFFF !important; background-image: none !important; background: infoborder; border: 0px; border-bottom: solid #FF0000 !important; color: #000000 !important; margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px !important; } .tabbrowser-tab:not([selected="true"]){ background: #FFFF80 !important; background-image: none !important; border-bottom: solid #0066CC !important; border: 0px; color: black !important; margin-right:1px; padding: 0px 0px 0px 0px !important; } /* without success tried to eliminate chrome tabs based on... http://hail2u.net/blog/software/firefox-userchrome-css-tricks-11.html -- */ /* * pack all tabs as densely as we can; * also define various tab decorations * http://users.skynet.be/antoine.mechelynck/other/userChrome.css * as referenced 2006-12-17 by Tony Mechelynck *http://groups.google.com/groups?threadm=--Kdnd38gKSjCRjYnZ2dnUVZ_segnZ2d%40mozilla.org * */ .tabbrowser-tabs *|tab { margin: 0px 0px 0px 0px !important ; border-width: 2px !important ; border-color: black ; background-image: none !important ; border-style: dotted ; -moz-border-radius: 2px 2px 0px 0px ; border-collapse: collapse !important } /* Change width of tabs* -- also requires browser.tabs.tabMinWidth set to 0 in about:config */ .tabbrowser-tabs *|tab { height: 18px !important; min-width: 18px !important } .tabs-left, .tabs-right, .tabs-bottom { display: none !important; } /* Hide the list all tabs dropdown button //not interested// .tabs-alltabs-stack {display: none !important;} */ /* Make the Search box flex wider http://www.mozilla.org/support/firefox/tips.html#beh_icons (in this case 400 pixels wide) userChrome.css */ #search-container, #searchbar { -moz-box-flex: 400 !important; } /* http://groups.google.com/groups?threadm=L4SdnYX8DsigdGzZnZ2dnUVZ_tGdnZ2d%40mozilla.org*/ /* Allow sidebar to be closed completely using the slider */ #sidebar-box { overflow-x: hidden !important;} #sidebar { min-width: 0px !important; max-width: none !important; overflow-x: hidden !important; } /*And to be able to open the sidebar all the way to the right */ /* Allow sidebar to be opened completely using the slider */ #appcontent { overflow-x: hidden !important; } /* Cute Menus */ menuitem[disabled=true] > hbox > image { visibility: hidden !important; } /* http://amitp.blogspot.com/2005/01/firefox-customization-whos-using.html */ a[rel="nofollow"]:before { content: "nofollow"; color: #393; font-size: 8pt} /* change fontsize on text with icons, navigation, personal bookmarks, does not affect the menu bar */ .toolbarbutton-text {font-size: 80% !important;} /* remove the History or Go Menu items from Menu Bar http://groups.google.com/groups?threadm=Xns9874E09A76Bl@216.196.97.169 */ menu[label="Go"], menu[label="History"] {display: none;} /* remove GO button in Firefox 2 from location bar (id) */ #go-button-stack {display: none} /* remove GO button in Firefox 2 from search bar (class) */ search-go-button-stack {display : none !important;} /* official way to remove go button in new theme via about:config http://forums.mozillazine.org/viewtopic.php?t=463668 about:config -> browser.urlbar.hideGoButton [default false] can be set to true to immediately hide the Go button. */ /* This will remove the "Go" button with the search bar */ .search-go-button-stack { display: none !important; } .search-go-button { display: none !important } /* Make bookmark folders bold (900) and navy blue (#0000EE)*/ /* use 400 #0000E8 on main, 400 #800000 on firefox portable */ .bookmark-item[type="menu"] > .toolbarbutton-text { font-weight: 400; color:#0000E8; } /* widen the bookmarks menu -- Chris Ilias 2007-01-12*/ menu.bookmark-item, menuitem.bookmark-item { max-width: 36em !important; } /* attempt to change color of scrollbar later for firefox portable */ /* WILL NOT WORK IN FIREFOX -- THANK GOODNESShttp://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/properties/scrollbarfacecolor.asp?frame=true /// { scrollbar-face-color:blue } { scrollbarTrackColor:green } */ /* Multi-row bookmarks toolbar */ #bookmarks-ptf {display:block !important;} #bookmarks-ptf toolbarseparator-primary {display:inline !important;} /* http://www.supernova00.biz/userchrome.html */ /* Add a keyword when adding a bookmark still needed in 2.0.0.1 */ #keywordRow { display: -moz-grid-line !important; } /* You many find more of interest with google search: inurl:userchrome.txt */