News
History
Version history
FAQ
Options
Supported Extensions
Unsupported Extensions
Known Issues
Copyright
2006-01-07: Release of version 0.9.9.7. It should also be available to users at UMO within a few days. Till that get it on this page.
2005-10-20: Version 0.9.9.6 is finished! It should be available to users at UMO within one day. Till that get it on this page.
2005-10-10: Brushed is mentioned in the article The power user's guide to Firefox by Joe Kissel on November's MacWorld!
Other news on Brushed and my work can be found at my blog or at version history.
The name comes from a visual theme for Mac OS X by Max Rudberg, as well as some of the graphics and the overall appearance of this theme are inspired by his work.
It took quite a lot of time until I've released the first version of my theme. I started to work on themes back in Firebird 0.6 times; I tried to improve "Rhapsodized" to my wishes. The theme I based my work for Brushed on was one (I think SAF-8) of Ken Lynch's aka lynchknot back in version 0.7 days, although I completely began from scratch by Firefox 0.8.
The main reason that it took such a long time was, that I tried to provide a "feature-complete" theme at small file size, where none of the visible problems that I disliked in many of the themes available (above all at pre-1.0 times) existed.
Thanks to cheeaun and lucX (for their inspiring work), Sailfish and many others over at mozillaZine theme forum.
Attention Mac-Users: This theme will NOT turn Firefox into a native brushed application! It alters only the graphical interface.
If you don't like the focused Addressbar and/or Searchbar, this code snippet will provide you the "normal" bars when focused:
/* ..... Non-Focus Inputboxes ..... */
@import url("chrome://global/skin/theme-options/non-focus-inputboxes.css");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
To integrate favicons into bookmark-items on Bookmarks Toolbar, include either the first or the second part of the following lines:
/* ..... Bookmark-Item Favicons Visible ..... */
@import url("chrome://global/skin/theme-options/bookmark-item-icons-visible.css");
/* ..... Only Icons, Not Bookmark-Labels ..... */
@import url("chrome://global/skin/theme-options/bookmark-item-text-invisible.css");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
Many users are asking for the "history-dropmarkers", these little arrows beside the back- and forward-buttons. To make them visible include this:
/* ..... Back- and Forward-Button History-Dropmarkers Visible ..... */
@import url("chrome://global/skin/theme-options/history-dropmarkers-visible.css");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
You like to have a real near-Safari-experience? Then the icons of the websites need to be on the right (Extension TabX included on screenshot. ATTENTION: Not working with TabX > 0.9.1). Include this:
/* ..... Tabs-Content Reversed ..... */
@import url("chrome://global/skin/theme-options/tabs-contents-reversed.css");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
You don't need the throbber in Main Window? Or you only want to show it up if the page is loading? Then try one of these two:
/* ..... No Throbber ..... */
@import url("chrome://global/skin/theme-options/throbber-not-visible.css");
/* ..... Throbber Only if Loading ..... */
@import url("chrome://global/skin/theme-options/throbber-partly-visible.css");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
If you prefer blue rounded address- and searchbar, go on with this:
/* ..... Rounded Address- and Searchbar with Blue Focus ..... */
@import url("chrome://global/skin/theme-options/rounded-url-and-searchbar-blue.css");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
If you prefer blue rounded address- and searchbar, go on with this:
/* ..... Rounded Address- and Searchbar with White Focus ..... */
@import url("chrome://global/skin/theme-options/rounded-url-and-searchbar-white.css");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
This code snippet enables borders on all kinds of menus:
/* ..... Menus with Borders ..... */
@import url("chrome://global/skin/theme-options/menus-with-borders.css");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
If you'd like to have the Options Window styled in the way Firefox 1.5 will be and like Safari is (categories on top), this will help:
/* ..... Fx 1.5 like Options on 1.0 ..... */
@import url("chrome://global/skin/theme-options/fx1.1-options.css");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
If you want to have rectangular input-bars in favor of the rounded ones, you need to include the following code into your userChrome.css:
/* ..... Rectangular Textboxes ..... */
@import url("chrome://global/skin/theme-options/rectangular-url-and-searchbar.css");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
tabs[flowing=singlebar] > hbox, tabs[flowing=scrollbutton] > hbox,
tabs[flowing=multibar]:not([multibar]) > hbox {
overflow: visible !important;
}
Be warned, the "more-than-x-tabs-function" of TabMix won't work after including this into your userChrome.css. Though you don't have a line above selected tab any longer!The icons and artwork used within this theme are copyrighted as far as they are originally developed by e|vo. They might be used only with permission of the author.
The CSS-files are free to use with regard to their licensing. If you like to include parts of the Brushed CSS-files into your theme, please provide a line with my name in the contributors-section of the license block.