If you are happy with the firefox as it is now, then don't use my chrome settings because they are for uno shade modded only
UNO shade is when you choose "UNO shade" as WindowTexture
at the installation from UNO. (only "Aqua Windows & Mozilla Apps" needs to be UNO shade)
Im not sure if the chrome folder is there by default, but it may be better to use
the extension "ChromEdit Plus".
After Installation you can go to the chrome folder by clicking Tools, ChromEdit Plus, open crome folder (i use a German firefox, text may differ).
Also you can edit userchrome.css with ease with ChromEdit Plus. If you just want the yellow color fixed in tabpreview, just add this in to your userchrome.css:
Code:
tooltip{
-moz-appearance: none !important;
background-color: rgb(109,109,109) !important;
color: rgb(255,255,255) !important;
}
(this code is also in the userchrome.css from Archive.zip)
if you want to change the color, just edit the RGB (red, green, blue) value from "background-color". If you dont know how to calculate them you can use the color picker OSX app (just spotlight "color"; be sure to use 8Bit Decimal RGB)
if anyone is interrested, my full userchrome.css:
Code:
/*
* 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 */
/* hide seperators between toolbars (makes firefox more compact) */
#toolbar-menubar {
padding: 0px !important;
margin: 0px !important;
border: none !important;
}
#nav-bar {
border: none !important;
padding: 0px !important;
}
#PersonalToolbar {
border: none !important;
}
/* Safari tabs styling */
.tabbrowser-tabs {
background-image: url(toolbar2.gif) !important;
background-repeat: repeat-x !important;
}
tab[selected="true"] > .tab-image-right {
background: url("activetab-right.png") no-repeat !important;
}
tab[selected="true"] > .tab-image-left {
background: url("activetab-left.png") no-repeat !important;
}
tab[selected="true"] > .tab-image-middle {
background: url("activetab-middle.png") repeat-x !important;
}
/* Safari RSS button */
#feed-button[feeds] { list-style-image: url("safari-page-livemarks.png") !important; }
/* Safari like toolbar background */
toolbar#nav-bar, #bookmark-window toolbar, #BrowserPreferences toolbar, #JSConsoleWindow toolbar, #winInspectorMain toolbar {
background: url("./toolbar.gif") repeat-x !important;
}
/* Safari like bookmark toolbar background */
#PersonalToolbar { background: url("toolbar3.bmp") repeat-x !important;
}
/* TabPreview tests */
.tabbrowser-tab {
margin-left: -3px !important;
margin-right: 2px !important;
}
tooltip{
-moz-appearance: none !important;
background-color: rgb(109,109,109) !important;
color: rgb(255,255,255) !important;
}
#tabpreview {
margin-top: 23px !important;
padding: 3px !important;
margin-left: -3px !important;
}
#BrowserPreferences #showPasswordsBox { display:none !important; }