Closed
Bug 839923
Opened 12 years ago
Closed 12 years ago
Many favicons look bad when upscaled for hidpi
Categories
(Firefox :: Theme, defect)
Tracking
()
RESOLVED
FIXED
Firefox 21
People
(Reporter: Dolske, Assigned: Dolske)
References
(Depends on 1 open bug)
Details
Attachments
(2 files)
2.50 KB,
patch
|
fryn
:
review+
|
Details | Diff | Splinter Review |
345.35 KB,
image/png
|
shorlander
:
ui-review+
|
Details |
Favicons don't look very good on Retina displays right now. The long-term fix for this is stuff like bug 828508 -- if the site provides an icon better than 16x16, we should use that.
But as a a short term fix -- and for sites that provide ONLY a 16x16 icon -- I think we can still do better. The issue is that upscaling small icons to 32x32 (the native size favicons will be shown at) just doesn't work very well. The icons often end up as fuzzy blobs, and really stand out from the rest of browser chrome, which is generally quite sharp now on Retina displays.
Attached is a simple patch to set CSS's |image-rendering: -moz-crisp-edges| on the favicon. This results in simple nearest-neighbor upscaling, which looks much, well, crisper and fits in better with the general Retina feel. The blurryness is gone.
There is a downside -- this property also affects _downscaling_, so if a site provides a favicon larger than 32x32, or if we generate a favicon from viewing an image, it's possible the downscaling will not be pleasant. But from limited testing it seems ok.
(Screenshots coming)
Attachment #712293 -
Flags: review?(fyan)
Assignee | ||
Comment 1•12 years ago
|
||
Screenshot of common sites with/without this patch.
After the red dino head are mozilla.com schneier.com, both of which are serving 32x32 favicons (and this patch does not change their display). The last two two tabs are viewing images directly (http://i.imgur.com/GCo3GVX.jpg and http://farm9.staticflickr.com/8202/8236404294_580850ed6c_c.jpg), to illustrate that how those are scaled.
Assignee: nobody → dolske
Assignee | ||
Updated•12 years ago
|
Attachment #712295 -
Flags: ui-review?(shorlander)
Comment 2•12 years ago
|
||
Comment on attachment 712293 [details] [diff] [review]
Patch v.1
> @media (min-resolution: 2dppx) {
> .tab-throbber,
> .tab-icon-image {
> list-style-image: url("chrome://mozapps/skin/places/defaultFavicon@2x.png");
>+ image-rendering: -moz-crisp-edges;
> }
>
> .tab-throbber {
> list-style-image: url("chrome://browser/skin/tabbrowser/connecting@2x.png");
> }
It doesn't make sense that .tab-throbber is part of the first selector.
There are unrelated nsLoginManager.js changes in this patch...
Comment 3•12 years ago
|
||
Comment on attachment 712293 [details] [diff] [review]
Patch v.1
Review of attachment 712293 [details] [diff] [review]:
-----------------------------------------------------------------
(In reply to Dão Gottwald [:dao] from comment #2)
> It doesn't make sense that .tab-throbber is part of the first selector.
Whoops, that looks like a copy-paste mistake from an earlier HiDPI patch. Please remove it.
r+ only with the removal of the `.tab-throbber,` line and all the nsLoginManager.js changes.
(I'd rather avoid attachment churn.)
Please wait for Stephen's ui-review before pushing a patch for this.
Attachment #712293 -
Flags: review?(fyan) → review+
Comment 4•12 years ago
|
||
Comment on attachment 712295 [details]
Screenshot
Looks cleaner and sharper. An improvement in most cases.
Attachment #712295 -
Flags: ui-review?(shorlander) → ui-review+
Assignee | ||
Comment 5•12 years ago
|
||
Comment 6•12 years ago
|
||
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 21
Comment 7•12 years ago
|
||
You need to log in
before you can comment on or make changes to this bug.
Description
•