Ticket #196 (new task)

Opened 3 months ago

Last modified 3 months ago

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

FF2.png (12.0 KB) - added by david_hagadol@… 3 months ago.
david_hagadol@…
FF3.png (10.3 KB) - added by david_hagadol@… 3 months ago.
Fixed image in Firefox 3
Bookmarks.png (2.4 KB) - added by david_hagadol@… 3 months ago.

Change History

Changed 3 months ago by david_hagadol@…

Sorry, I mixed up the images. Here are the correct images:

Changed 3 months ago by david_hagadol@…

david_hagadol@…

Changed 3 months ago by david_hagadol@…

Fixed image in Firefox 3

Changed 3 months ago by david_hagadol@…

Add/Change #196 (How to replace non-collapsed items with pictures? worked in FF2, broken in FF3)

Author



Action
as new
 
Note: See TracTickets for help on using tickets.