2009-07-08 22:00:00
No Comments
A Firefox user in #firefox asked if you can hide the grey text ‘Seach Bookmarks and History’ in the address bar.
I created the following userChrome.css code that hides the text by turning it white. If you use a dark theme you should change the color: line to match the address bar color.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
textbox[empty="true"] .textbox-input-box {
-moz-appearance: none !important;
color: #fff !important;
}
