Opened 13 years ago
Closed 13 years ago
#19163 closed defect (bug) (fixed)
The admin bar background is not styled properly in Firefox
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.3 | Priority: | normal |
Severity: | normal | Version: | 3.3 |
Component: | Toolbar | Keywords: | has-patch commit |
Focuses: | Cc: |
Description (last modified by )
Attachments (2)
Change History (12)
#3
@
13 years ago
#wpadminbar { background-color: #464646; /* Fallback */ background-image: -ms-linear-gradient(bottom, #464646, #373737 5px); /* IE10 */ background-image: -moz-linear-gradient(bottom, #464646, #373737 5px); /* Firefox */ background-image: -o-linear-gradient(bottom, #464646, #373737); /* Opera */ background-image: -webkit-gradient(linear, left bottom, left top, from(#464646), to(#373737)); /* old Webkit */ background-image: -webkit-linear-gradient(bottom, #373737, #464646 5px); /* new Webkit */ background-image: linear-gradient(bottom, #464646, #373737); /* proposed W3C Markup */ }
The backgrounds go in different directions. For Firefox changing to:
-moz-linear-gradient(bottom, #373737, #464646 5px);
to be the same as the Webkit rule works for me. Will have to go through all the browsers to normalise them, e.g. the -ms rule is the same as Firefox and I don't see a gradient at all in your screenshot [edit: I see you're using IE9 rather than 10, so no linear gradient].
#4
@
13 years ago
- Keywords has-patch added
19163.patch: Tested in Chrome, Firefox and Opera on Mac.
#5
@
13 years ago
Per http://dev.w3.org/csswg/css3-images/#linear-gradient-syntax should the "proposed W3C Markup" rule use "to top"?
#6
@
13 years ago
duck_: I saw this today too, seems to be new. Should then update all our gradients, see #16461.
Note: See
TracTickets for help on using
tickets.