



Uses userChrome CSS to re-enable Bookmark Toolbar favicons.
Credit to:
Myk Melez for writing an extension that gave me the idea ( http://www.melez.com/mykzilla/2008/03/trio-of-extensions.html )
Vladimir Vukićević for writing the original userChrome that gave Myk the idea ( http://blog.vlad1.com/2008/02/04/getting-bookmark-icons-back-on-your-toolbar/ )
Abdulkadir Topal for commenting on the userChrome with a padding suggestion
Edoardo for commenting on the userChrome with the suggestion to remove folder icons
Before
|
After
|
Looks great. Any way to add a folder icon as well?
One tip for people who want to save some space between the bookmark items, add this line to the style...
.bookmark-item {
margin-right: -3px !important;
margin-left: -3px !important;
}mess around with the pixel amount until it suits your style needs.
Scotepi's addition is good but there's a typo and 20px looks a bit better on my install.
.bookmark-item > .toolbarbutton-icon {
max-width: 20px;
max-height: 20px;
}This also works great for Linux/Ubuntu Firefox browsers
Daniel Einspanjer, please see my comments on http://userstyles.org/forum/comments.php?DiscussionID=1712
This is a great style modification!
However, I noticed it causes constant firing of the "resize" event in Javascript, which is troublesome for a lot of pages, including my own. It fires resize constantly when all the bookmark-items with toolbar icons are in the overflow, and only folders (with no favicon) remain visible in the bookmarks toolbar. You can email me at rsattar {at} gmail {dawt} com, i can provide you with a sample html that exhibits this problem. Please fix this bug!
this relly needs to be added to this style
.bookmark-item > .toolbarbutton-icon {
max-widht: 15px;
max-height: 15px;
}
You should add this to your style :
.bookmark-item:hover:active > .toolbarbutton-icon {
background: url("chrome://browser/skin/bookmark-open-mid.png") repeat-x;
}