Closed Bug 519280 Opened 15 years ago Closed 15 years ago

[faceted search] more obvious click target

Categories

(Thunderbird :: Search, defect)

defect
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED
Thunderbird 3.0rc1

People

(Reporter: clarkbw, Assigned: andreasn)

Details

(Keywords: polish)

Attachments

(2 files, 4 obsolete files)

each message in the search result has only the subject as the click target which can vary greatly in size.  Currently we're underlining that subject when a person's mouse hovers over any part of the message.

I don't underlining is clear enough what the click target should be.  I'd like to try a more obvious method like inverting the colors (a.k.a http://flickr.com/ link style) such that the subject becomes a much clearer click target when hovering.
Flags: wanted-thunderbird3+
giving this over to andreas to take a look
Assignee: nobody → nisses.mail
Attached patch patch to fix the issue (obsolete) — Splinter Review
Sorry for giving you more stuff to ui-review. :(

Who should I put as code reviewer here?
Attachment #408591 - Flags: ui-review?(clarkbw)
note that I have issues with the build from current trunk, so this is against a slightly older build (a couple of days ago)
Comment on attachment 408591 [details] [diff] [review]
patch to fix the issue

The gray here is a consistent color theme but I think it looks kind of bad when it's against the white background instead of the light blue background of the sidebar.

I was wondering if we should just use the sidebar background color on hover of the message and then maybe a darker blue color on hover of the subject.
Attached patch updated patch (obsolete) — Splinter Review
this use the same color as the sidebar
Attachment #408591 - Attachment is obsolete: true
Attachment #409051 - Flags: ui-review?(clarkbw)
Attachment #408591 - Flags: ui-review?(clarkbw)
Attachment #409051 - Flags: ui-review?(clarkbw) → ui-review+
Comment on attachment 409051 [details] [diff] [review]
updated patch

That seems a lot clearer even though I think we can do better over time.
we probably need a quick code review from someone and then can ask for tb3 approval
Comment on attachment 409051 [details] [diff] [review]
updated patch

thanks for taking this review blake! I owe you one.
Attachment #409051 - Flags: review?(bwinton)
Blake: you said you were about to check in a patch that would bitrot this one, but checking out the tree today my patch still worked well (maybe it didn't go in yet, will try later today as well). Will also add some select stuff in order to work with keyboard selection
Just waiting for this to bitrot now :)
Attachment #410206 - Flags: ui-review+
Attachment #410206 - Attachment description: updated patch → updated patch with keyboard focus
note that the above patch includes the keyboard focus
Attachment #409051 - Attachment is obsolete: true
Attachment #409051 - Flags: review?(bwinton)
hovering message on top, hovering subject on bottom.
Comment on attachment 410206 [details] [diff] [review]
updated patch with keyboard focus

> .message:hover .message-subject {

Just to note for posterity, this doesn't need a matching
  .message:focus .message-subject {
because the message isn't in the tab order, and so won't get focus.  Only the message subject does.

>+.message .message-subject:hover {
>+  color: #ffffff;
>+  background-color: #729fcf;
>+}
>+
>+.message .message-subject:focus {
>+  color: #ffffff;
>+  background-color: #729fcf;
>+}

r=me, if you change that to:
.message .message-subject:hover,
.message .message-subject:focus {
  color: #ffffff;
  background-color: #729fcf;
}
and make sure it still works.  ;)

Thanks,
Blake.
Attachment #410206 - Flags: review+
Here we go!
Attachment #410206 - Attachment is obsolete: true
Attachment #410506 - Flags: ui-review+
Attachment #410506 - Flags: review+
same as last patch, but puts the two selectors on separate lines
Attachment #410506 - Attachment is obsolete: true
Attachment #410508 - Flags: ui-review+
Attachment #410508 - Flags: review+
Comment on attachment 410508 [details] [diff] [review]
and one more thing for blake to be ok with it

this is a pretty simple CSS change
Attachment #410508 - Flags: approval-thunderbird3?
Keywords: polishcheckin-needed
Keywords: checkin-neededpolish
Attachment #410508 - Flags: approval-thunderbird3? → approval-thunderbird3+
Checked in:
http://hg.mozilla.org/comm-central/rev/c933fab89d6d
http://hg.mozilla.org/releases/comm-1.9.1/rev/1062b3c037e3
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: