Make WordPress Core

Opened 16 years ago

Closed 16 years ago

Last modified 16 years ago

#6653 closed defect (bug) (fixed)

!important rule not applied correctly in wp-admin.css

Reported by: spirit55555's profile spirit55555 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)

6653.patch (370 bytes) - added by Viper007Bond 16 years ago.
6653.2.patch (572 bytes) - added by spirit55555 16 years ago.
Fixing another mistake.

Download all attachments as: .zip

Change History (6)

@Viper007Bond
16 years ago

#1 @Viper007Bond
16 years ago

  • Keywords has-patch added

@spirit55555
16 years ago

Fixing another mistake.

#2 @spirit55555
16 years ago

  • Keywords tested added

#3 @ryan
16 years ago

  • Resolution set to fixed
  • Status changed from new to closed

(In [7661]) CSS typo fixes from spirit55555. fixes #6653 for 2.5

#4 @ryan
16 years ago

(In [7662]) CSS typo fixes from spirit55555. fixes #6653 for trunk

Note: See TracTickets for help on using tickets.