Make WordPress Core

Opened 19 years ago

Closed 18 years ago

Last modified 17 months ago

#3532 closed defect (bug) (fixed)

style semicolon missing in wp-admin.css

Reported by: whooami's profile whooami Owned by:
Milestone: 2.2 Priority: lowest
Severity: trivial Version: 2.1
Component: Template Keywords: has-patch commit
Focuses: Cc:

Description

Missed a closing ;

#wphead h1 {
font-size: 2.5em;
font-weight: normal;
letter-spacing: -.05em;
margin: 0;
font-family: Georgia, "Times New Roman", Times, serif
}

ought to be:

#wphead h1 {
font-size: 2.5em;
font-weight: normal;
letter-spacing: -.05em;
margin: 0;
font-family: Georgia, "Times New Roman", Times, serif;
}

Attachments (1)

3543-wp-admincss.diff (399 bytes) - added by foolswisdom 19 years ago.

Download all attachments as: .zip

Change History (5)

#1 @whooami
19 years ago

  • Milestone changed from 2.2 to 2.0.7

#2 @DrDrrae
19 years ago

While closing semicolons aren't needed, it is better to keep it consistent throughout the entire file.

"A semicolon separates the declarations and may - but doesn't have to - also appear at the end of the last declaration."

#3 @foolswisdom
19 years ago

  • Keywords has-patch commit added
  • Milestone changed from 2.0.7 to 2.2
  • Priority changed from low to lowest
  • Severity changed from minor to trivial
  • Summary changed from error in wp-admin.css to style semicolon missing in wp-admin.css
  • Version set to 2.1

Confirmed bug on trunk;
ENV: WP 2.1-beta2 r4716

#4 @markjaquith
18 years ago

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

(In [4830]) minor CSS consistency fix by whooami. fixes #3532

Note: See TracTickets for help on using tickets.