[wp-trac] [WordPress Trac] #36160: Comment content ul elements have no style in the Comment List Table or Moderate Comment screen

WordPress Trac noreply at wordpress.org
Sun Apr 17 18:17:31 UTC 2016


#36160: Comment content ul elements have no style in the Comment List Table or
Moderate Comment screen
--------------------------+-----------------------------
 Reporter:  rachelbaker   |       Owner:
     Type:  defect (bug)  |      Status:  new
 Priority:  normal        |   Milestone:  4.6
Component:  Comments      |     Version:
 Severity:  normal        |  Resolution:
 Keywords:  needs-patch   |     Focuses:  administration
--------------------------+-----------------------------

Comment (by juanfra):

 This is because the default styles for `ol` is (`wp-
 admin/css/common.css`):

 {{{
 ol {
         list-style-type: decimal;
         margin-left: 2em;
 }
 }}}

 While the default for `ul` is:


 {{{
 ul {
         list-style: none;
 }
 }}}

 '''The following code''' makes the trick, but I'm not sure if we're
 missing some place as it is applied only on the comment table:


 {{{
 .widefat .column-comment ul {
         list-style: initial;
         margin-left: 2em;
 }
 }}}

 P.S.: It seems that in Twenty Fifteen the lists within comments are not
 styled that well:https://cloudup.com/cIW-Bka8Lba (I'll open a new ticket
 for this one)

--
Ticket URL: <https://core.trac.wordpress.org/ticket/36160#comment:2>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform


More information about the wp-trac mailing list