#6653 closed defect (bug) (fixed)
!important rule not applied correctly in wp-admin.css
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | 2.5.1 | Priority: | lowest |
| Severity: | trivial | Version: | 2.5 |
| Component: | Administration | Keywords: | has-patch tested |
| Focuses: | Cc: |
Description
There are two places in wp-admin.css where the !important rule is not applied correctly:
.form-invalid input {
border-width: 1px; !important
border-style: solid; !important
}
It should be like this:
.form-invalid input {
border-width: 1px !important;
border-style: solid !important;
}
Attachments (2)
Note: See
TracTickets for help on using
tickets.
Fixing another mistake.