#10110 closed defect (bug) (fixed)
wp-admin/css/media.css rule for labels
Reported by: | hailin | Owned by: | |
---|---|---|---|
Milestone: | 2.9 | Priority: | normal |
Severity: | normal | Version: | 2.8 |
Component: | UI | Keywords: | has-patch |
Focuses: | Cc: |
Description
I remember Andrew added this rule to address multiple labels display case in media library.
.describe label {
display: inline;
}
One remaining issue is that those labels inherited font-weight: bold, so they are kind of ugly when the string is long.
I think we should make this more precise - it applies to "td" only, and make it font-weight: normal
Looks better this way:
.describe td label {
display: inline;
font-weight: normal;
}
Attachments (2)
Change History (8)
#1
@
16 years ago
- Component changed from General to Accessibility
- Milestone changed from Unassigned to 2.8.1
- Version set to 2.8
#4
@
16 years ago
Discussed with Andrew. It's better to clean up the css tree a bit and fix from the root.
Note: See
TracTickets for help on using
tickets.
screenshot