Opened 12 years ago
Closed 12 years ago
#21242 closed defect (bug) (fixed)
Twenty Twelve: HTML elements outside of .entry-content need styling
Reported by: | obenland | Owned by: | lancewillett |
---|---|---|---|
Milestone: | 3.5 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Bundled Theme | Keywords: | |
Focuses: | Cc: |
Description
Specifically the password form for password protected posts and HTML elements inside of comments.
Screenshots will be attached.
Attachments (3)
Change History (14)
#5
@
12 years ago
- Keywords needs-patch needs-ui removed
@drewstrojny Patch is looking good, will commit shortly. The only change is removing the "alignleft, alignright, aligncenter" rules, I don't think those apply to comment content.
#6
@
12 years ago
- Owner set to lancewillett
- Resolution set to fixed
- Status changed from new to closed
In [21277]:
#7
@
12 years ago
- Resolution fixed deleted
- Status changed from closed to reopened
Styles still don't get applied, since comment content is missing the 'comment-content'
CSS class. Currently it has 'post-content'
.
Should I submit a patch? :)
#8
follow-ups:
↓ 9
↓ 10
@
12 years ago
What is the reason for using something like .entry-content pre, .comment-content pre
instead of just pre
?
#10
in reply to:
↑ 8
@
12 years ago
Replying to Jayjdk:
What is the reason for using something like
.entry-content pre, .comment-content pre
instead of justpre
?
This is important so that plugin or widget output isn't styled, in the case of main content HTML elements we want to specifically focus on comment area and content area of posts and pages only.
Attachment 21242.diff styles the necessary password protected post elements and HTML elements inside of comments. Thanks obenland!