#3532 closed defect (bug) (fixed)
style semicolon missing in wp-admin.css
| Reported by: |
|
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)
Change History (5)
#3
@
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
Note: See
TracTickets for help on using
tickets.
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."