Ticket #196 (new task)
How to replace non-collapsed items with pictures? worked in FF2, broken in FF3
| Reported by: | david_hagadol@… | Owned by: | t-bone |
|---|---|---|---|
| Priority: | blocker | Component: | Tiny Menu |
| Version: | 1.4.9 | Severity: | Broken |
| Keywords: | Cc: | david_hagadol@… |
Description
userChrome.css
/* Adds Bookmarks icon to the TinyMenu extension */
/* Firefox 2 */
/*
menu#bookmarks-menu {
background-color: transparent !important;
background: 50% 50% no-repeat url("Bookmarks.png");
width: 40px;
}
menu#bookmarks-menu:hover {
background-color: white !important;
background: 50% 50% no-repeat url("Bookmarks.png");
width: 40px;
}
menu#bookmarks-menu > label {
display: none;
}
*/
/* Firefox 3 */
menu#bookmarksMenu[mode='image'] {
background-color: transparent !important;
background: 50% 50% no-repeat;
list-style-image: url("Bookmarks.png") !important;
width: 40px;
}
menu#bookmarksMenu:hover {
background-color: white !important;
background: 50% 50% no-repeat;
list-style-image: url("Bookmarks.png") !important;
width: 40px;
}
menu#bookmarksMenu > label {
display: none;
}
Attachments
Change History
Note: See
TracTickets for help on using
tickets.