#24268 closed defect (bug) (fixed)
Twenty Thirteen: .reply styling bleeding into other styles
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 3.6 | Priority: | normal |
| Severity: | normal | Version: | |
| Component: | Bundled Theme | Keywords: | has-patch |
| Focuses: | Cc: |
Description
The .reply styling in TwentyThirteen assumes that comments are the only dom elements that will ever have the 'reply' class. This is true in WordPress core, but plugins (like BuddyPress and bbPress) use the 'reply' class for activity stream items, topics, etc...
We're used to fixing this in our own theme compatibility layers, and arguably some responsibility falls on us for using less ambiguous class names or more strict CSS, but in the case of .reply, I think there exists at least some possibility that other plugins might be using the same class (shopping carts, reviews, polls, etc...) and experience similar styling intersections.
I've attached a patch that adds .comment-list before .reply to limit the scope of the style to the intended comments replies, for your consideration.
Attachments (2)
Change History (8)
#1
@
13 years ago
- Summary changed from TwentyThirteen .reply styling bleeding into other styles to Twenty Thirteen: .reply styling bleeding into other styles
#4
@
13 years ago
.1 adds a few missing cases in style.css and a bit of cleanup for non .reply selectors.
Thanks for the report and patch. +1 for making it the selectors a bit more specific.