[wp-trac] [WordPress Trac] #36563: TwentyFifteen: Lists are not displayed nicely within comments
WordPress Trac
noreply at wordpress.org
Sun Apr 17 18:56:17 UTC 2016
#36563: TwentyFifteen: Lists are not displayed nicely within comments
---------------------------+-----------------------------
Reporter: juanfra | Owner:
Type: defect (bug) | Status: new
Priority: normal | Milestone: Awaiting Review
Component: Bundled Theme | Version: trunk
Severity: normal | Keywords:
Focuses: ui, rtl |
---------------------------+-----------------------------
When viewing the website in a common resolution(1440x900) and having
comments including `html` lists (`ul`, `ol`) they look outside the grid.
[[Image(https://cldup.com/YOza0HqdR4.png)]]
This is thanks to the `margin-left` assignment to 0 in line # 2877 of
`styles.css` and never redeclared again.
Redeclaring a left margin for both elements in their next appearance (line
# 3461) should solve this issue:
Something like:
{{{
.comment-content ul,
.comment-content ol {
margin-bottom: 1.6471em;
margin-left: 1.3333em;
}
}}}
But perhaps we need to go resolution by resolution to make it look in-line
with the comment content? (we'll need testers for that).
--
Ticket URL: <https://core.trac.wordpress.org/ticket/36563>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list