Closed
Bug 476740
Opened 17 years ago
Closed 17 years ago
Favicon not limited to 16x16 in Bookmarks sidebar and Bookmark Manager
Categories
(SeaMonkey :: Bookmarks & History, defect)
SeaMonkey
Bookmarks & History
Tracking
(Not tracked)
RESOLVED
FIXED
seamonkey2.0a3
People
(Reporter: InvisibleSmiley, Assigned: InvisibleSmiley)
References
()
Details
Attachments
(1 file, 1 obsolete file)
2.49 KB,
patch
|
neil
:
review+
neil
:
superreview+
|
Details | Diff | Splinter Review |
flyguy reported a problem in mozilla.support.seamonkey (thread: "favicon" displays 2 inches wide!) where he saw a website icon (favicon) displayed wider that the normal 16 pixels in the Bookmarks sidebar. I can confirm the problem with the following two URLs and also see it in the Bookmark Manager:
1. <http://share.findmespot.com/shared/faces/images/spot-icon-big.ico>: 255x222 pixels, obviously sent with wrong content type; save to disk and test.
2. <http://acid3.acidtests.org/favicon.ico>: 150x150 pixels.
As far as I can see the favicon is displayed correctly in the location bar because a CSS rule from navigator.css (#page-proxy-favicon) sets it to 16x16 pixels:
<http://mxr.mozilla.org/comm-central/source/suite/themes/classic/navigator/navigator.css#342>
The DOM Inspector is not really helpful for checking anything below treechildren so I hope someone with more insight can help identify what exactly needs to be added where to fix the Bookmarks sidebar and Bookmark Manager.
Assignee | ||
Comment 1•17 years ago
|
||
Seems we are missing this rule:
<http://mxr.mozilla.org/mozilla-central/source/browser/themes/winstripe/browser/places/places.css#23>
I verified using the Stylish extension (userChrome.css should do, too) that the following rule fixes both the Bookmarks sidebar and the Bookmark Manager:
#bookmarks-view treechildren::-moz-tree-image {
padding-right: 2px;
margin: 0px 2px;
width: 16px;
height: 16px;
}
This could be added (without #bookmarks-view) to bookmarks.css of both themes. I'd be happy to come up with a patch but I'm still wondering what the following rule is intended for:
<http://mxr.mozilla.org/comm-central/source/suite/themes/classic/communicator/bookmarks/bookmarks.css#76>
Assignee | ||
Comment 2•17 years ago
|
||
Added "Name" to only refer to that column (called "title" in FF) and matching rule to not break separators (also like FF does it).
The other rule (bookmarks.css#76) is obviously for the Personal Toolbar, thus unrelated.
Assignee: nobody → jh
Status: NEW → ASSIGNED
Attachment #360583 -
Flags: superreview?(neil)
Attachment #360583 -
Flags: review?(neil)
Comment 3•17 years ago
|
||
Comment on attachment 360583 [details] [diff] [review]
proposed patch
> -moz-margin-end: 2px;
>+ padding-right: 2px;
>+ margin: 0px 2px;
This doesn't seem to make sense. Just set the size, please?
>+ width: 0;
>+ height: 0;
Please write 0px here as that's what we use everywhere else.
Assignee | ||
Comment 4•17 years ago
|
||
Nits addressed (assuming -moz-margin-end should stay since it has been there before).
Attachment #360583 -
Attachment is obsolete: true
Attachment #360595 -
Flags: superreview?(neil)
Attachment #360595 -
Flags: review?(neil)
Attachment #360583 -
Flags: superreview?(neil)
Attachment #360583 -
Flags: review?(neil)
Updated•17 years ago
|
Attachment #360595 -
Flags: superreview?(neil)
Attachment #360595 -
Flags: superreview+
Attachment #360595 -
Flags: review?(neil)
Attachment #360595 -
Flags: review+
Assignee | ||
Updated•17 years ago
|
Keywords: checkin-needed
Comment 5•17 years ago
|
||
Comment on attachment 360595 [details] [diff] [review]
patch v2
[Checkin: Comment 5]
http://hg.mozilla.org/comm-central/rev/223c017c5a3d
Attachment #360595 -
Attachment description: patch v2 → patch v2
[Checkin: Comment 5]
Updated•17 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 17 years ago
Keywords: checkin-needed
Resolution: --- → FIXED
Target Milestone: --- → seamonkey2.0a3
You need to log in
before you can comment on or make changes to this bug.
Description
•