6.0.0-beta1
8/9/25

[#3027] CSS hover on legend is confusing
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

History
11/24/2005 07:39:01 AM Michael Slusarz Comment #2
State ⇒ Resolved
Reply to this comment
Committed - thanks.
11/23/2005 08:18:44 PM flachapelle (at) inverse (dot) ca Comment #1
State ⇒ New
Priority ⇒ 1. Low
Type ⇒ Enhancement
Summary ⇒ CSS hover on legend is confusing
Queue ⇒ IMP
Reply to this comment
When the legend is shown in the mailbox view ($_prefs['show_legend']), 
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 {

Saved Queries