[wp-trac] [WordPress Trac] #19453: CSS for bulleted un/ordered lists in wp-admin not working

WordPress Trac wp-trac at lists.automattic.com
Wed Dec 7 23:17:08 UTC 2011


#19453: CSS for bulleted un/ordered lists in wp-admin not working
----------------------------+------------------
 Reporter:  trepmal         |       Owner:
     Type:  defect (bug)    |      Status:  new
 Priority:  normal          |   Milestone:  3.3
Component:  Administration  |     Version:  3.3
 Severity:  normal          |  Resolution:
 Keywords:  has-patch       |
----------------------------+------------------

Comment (by azaozz):

 Looks like in 3.2 and earlier the reset was only on the parents `ul, ol
 {list-style: none;}` and then OLs were set to `list-style-type: decimal;`
 so they were always with numbers.

 To fully restore that we need to change:
 {{{
 ul li,
 ol li {
         list-style: none;
 }
 }}}

 to:

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

-- 
Ticket URL: <http://core.trac.wordpress.org/ticket/19453#comment:5>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software


More information about the wp-trac mailing list