Closed
Bug 1325891
Opened 9 years ago
Closed 9 years ago
Firefox addon toolbars still have 3D borders
Categories
(Toolkit :: Themes, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 1043423
People
(Reporter: dylan, Unassigned)
Details
Attachments
(2 files)
Making a toolbar using the Add-on SDK:
require('sdk/ui').Toolbar({title: 'test'});
results in a toolbar with an inconsistent-looking 3D border left over from the now-unavailable Firefox 3 theme.
The border is not present in Mac or Linux.
| Reporter | ||
Updated•9 years ago
|
Summary: Addon toolbars still have 3D borders → Firefox addon toolbars still have 3D borders
| Reporter | ||
Comment 1•9 years ago
|
||
I was thinking of making a patch in
toolkit/themes/windows/global/toolbar.css
--------------------------------------------------------------------------------
...
toolbar {
min-width: 1px;
min-height: 19px;
border-top: 1px solid ThreeDHighlight;
border-bottom: 1px solid ThreeDShadow;
}
...
--------------------------------------------------------------------------------
by simply deleting the "border-top" and "border-bottom" lines the issue is fixed without side-effects in Firefox. Nothing in Firefox except add-on toolbars actually uses those CSS properties as far as I can tell. However, Seamonkey still uses them!
| Reporter | ||
Comment 2•9 years ago
|
||
| Reporter | ||
Comment 3•9 years ago
|
||
Ah, this bug fell through the cracks in 2014.
Status: UNCONFIRMED → RESOLVED
Closed: 9 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•