Summary | CSS hover on legend is confusing |
Queue | IMP |
Queue Version | HEAD |
Type | Enhancement |
State | Resolved |
Priority | 1. Low |
Owners | |
Requester | flachapelle (at) inverse (dot) ca |
Created | 11/23/2005 (7199 days ago) |
Due | |
Updated | 11/24/2005 (7198 days ago) |
Assigned | |
Resolved | 11/24/2005 (7198 days ago) |
Milestone | |
Patch | No |
State ⇒ Resolved
State ⇒ New
Priority ⇒ 1. Low
Type ⇒ Enhancement
Summary ⇒ CSS hover on legend is confusing
Queue ⇒ IMP
the background of some of the icons changes when the user places the
mouse pointer over the icon. It confuses the user as those icons were
actually buttons.
The following patch to "imp/themes/screen.css" fixes this problem:
--- screen.css.orig 2005-11-08 10:57:14.833650560 -0500
+++ screen.css 2005-11-08 10:58:00.333733496 -0500
@@ -93,25 +93,25 @@
.deleted {
background:
#999;}
-.deleted:hover, .deleted-over {
+tr.deleted:hover, tr.deleted-over {
background:
#777;}
.important {
background: #fcc;
}
-.important:hover, .important-over {
+tr.important:hover, tr.important-over {
background: #faa;
}
.unseen {
background: #eef;
}
-.unseen:hover, .unseen-over {
+tr.unseen:hover, tr.unseen-over {
background: #ccf;
}
.answered {
background: #cfc;
}
-.answered:hover, .answered-over {
+tr.answered:hover, tr.answered-over {
background:
#9e9;}
.folderunsub {