Closed
Bug 351321
Opened 19 years ago
Closed 15 years ago
italic and bold font for high and low priority
Categories
(Calendar :: Calendar Frontend, enhancement)
Calendar
Calendar Frontend
Tracking
(Not tracked)
VERIFIED
FIXED
1.0b1
People
(Reporter: damian.publicemail, Assigned: Fallen)
Details
Attachments
(2 files)
|
1.29 KB,
patch
|
mschroeder
:
review+
|
Details | Diff | Splinter Review |
|
25.02 KB,
image/png
|
clarkbw
:
ui-review+
|
Details |
It will be nice if events with high priority are written formatted as bold and low as italic.
There is extra column for tasks but not for events. Small future but makes easy to catch urgent events.
I found out similar bug 215936 but this is for still tasks.
| Assignee | ||
Comment 1•16 years ago
|
||
Sounds reasonable to me, could probably be done quite easily using userChrome.css if not implemented in core:
#unifinder-search-results-tree > treechildren::-moz-tree-cell-text(highpriority) {
font-weight: bold;
}
#unifinder-search-results-tree > treechildren::-moz-tree-cell-text(lowpriority) {
font-style: italic;
color: #CCCCCC !important;
}
I don't know why !important is needed for the color, but it is for me.
| Assignee | ||
Comment 2•16 years ago
|
||
| Assignee | ||
Comment 3•16 years ago
|
||
I unfortunately don't know a solution to make the color of the low prio events be system theme dependent, there is no system font color that makes sense.
I also don't know why I need to set that color important. Martin, maybe you have an idea?
Attachment #397502 -
Flags: ui-review?(clarkbw)
Comment 4•16 years ago
|
||
Don't set the color without a background color. It will probably regress the issues we fixed in 1.0pre regarding list entries being not readable on certain color themes or focus situations. It's probably better to drop the color change at all.
Why not just show the priority column in the unifinder like in the task list?
Updated•16 years ago
|
OS: Windows XP → All
Hardware: x86 → All
Comment 5•16 years ago
|
||
Comment on attachment 397501 [details] [diff] [review]
Fix - v1
r+ with the color change left out (although this should be decided by ui-review). If you get ui-r+, make sure to define a background-color.
Attachment #397501 -
Flags: review?(mschroeder) → review+
| Assignee | ||
Updated•16 years ago
|
Whiteboard: [needs ui-review]
Comment 6•16 years ago
|
||
Comment on attachment 397502 [details]
Screenshot - v1
looks good, but I'd leave out the color change as it is a bit hard to read.
Likely you're looking for color: GrayText; anyway as it will work better for a11y themes
Attachment #397502 -
Flags: ui-review?(clarkbw) → ui-review+
| Assignee | ||
Comment 7•16 years ago
|
||
As discussed with clarkbw on IRC, using italic alone will make low prio events stick out more than normal events. I tried font-weight, but only bold and normal is implemented. Now we will use color: GrayText; background-color: -moz-field.
Pushed to comm-central <http://hg.mozilla.org/comm-central/rev/898078628dd5>
-> FIXED
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Target Milestone: --- → 1.0
| Assignee | ||
Updated•16 years ago
|
Whiteboard: [needs ui-review]
| Reporter | ||
Comment 8•15 years ago
|
||
I can't see differences, no matter which priority is set, colour and font weight is still the same.
I see additional icon for tasks but nothing else is changed
checking with
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9pre) Gecko/20100223 Calendar/1.0b2pre
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Comment 9•15 years ago
|
||
Are you sure you are looking at the unifinder and not the task list?
It works fine for me using Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.1.9pre) Gecko/20100223 Calendar/1.0b2pre.
| Reporter | ||
Comment 10•15 years ago
|
||
(In reply to comment #9)
> Are you sure you are looking at the unifinder and not the task list?
right, that's the problem, unifinder shows correctly
Status: REOPENED → RESOLVED
Closed: 16 years ago → 15 years ago
Resolution: --- → FIXED
| Reporter | ||
Updated•15 years ago
|
Status: RESOLVED → VERIFIED
| Assignee | ||
Comment 11•13 years ago
|
||
These bugs are likely targeted at Lightning 1.0b1, not Lightning 1.0. If this change was done in error, please adjust the target milestone to its correct value. To filter on this bugspam, you can use "lightning-10-target-move".
Target Milestone: 1.0 → 1.0b1
You need to log in
before you can comment on or make changes to this bug.
Description
•