Closed
Bug 600130
Opened 15 years ago
Closed 15 years ago
Tweet background gradients don't display correctly
Categories
(support.mozilla.org :: Army of Awesome, task)
support.mozilla.org
Army of Awesome
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 600695
People
(Reporter: williamr, Assigned: abuchanan)
References
Details
1. The alternate rows for tweets should have a gray gradient. This appears in the css under #tweets li.alt, but it doesn't look like the "alt" class is in the html. Let's add it in for each alternate row.
2. The alternate and hover gradients do not appear in WebKit since we're currently only using the -moz-linear-gradient properties. We need to add the -webkit-gradient property to #tweets li.alt and #tweets li:hover.
WebKit reference: http://developer.apple.com/library/safari/#documentation/InternetWeb/Conceptual/SafariVisualEffectsProgGuide/Gradients/Gradients.html
Design reference: http://people.mozilla.com/~williamr/communitycare/1-landingpage.jpg
| Assignee | ||
Comment 1•15 years ago
|
||
[custcare 0237be4] bug 600130, css, background gradients
2 files changed, 2 insertions(+), 2 deletions(-)
will close when I push to master
| Assignee | ||
Comment 2•15 years ago
|
||
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Comment 3•15 years ago
|
||
William, can you take this one? Thanks.
| Reporter | ||
Comment 4•15 years ago
|
||
Looks good in Firefox, but not in Chrome or Safari yet (WebKit). I think these are the properties we need:
#tweets li.alt {
background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#F5F5F5));
}
#tweets li:hover {
background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFD), to(#FDEFA6));
}
And you can remove line 367: "/* todo: add webkit gradient property */"
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Updated•15 years ago
|
Status: REOPENED → RESOLVED
Closed: 15 years ago → 15 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•