[wp-trac] [WordPress Trac] #57920: Multiple Default Themes: Ordered List Type Overwritten

WordPress Trac noreply at wordpress.org
Wed Mar 15 04:05:30 UTC 2023


#57920: Multiple Default Themes: Ordered List Type Overwritten
---------------------------+------------------------------
 Reporter:  zoonini        |       Owner:  (none)
     Type:  defect (bug)   |      Status:  new
 Priority:  normal         |   Milestone:  Awaiting Review
Component:  Bundled Theme  |     Version:
 Severity:  normal         |  Resolution:
 Keywords:                 |     Focuses:
---------------------------+------------------------------

Comment (by jakariaistauk):

 Hi @zoonini ,
 Thanks for the ticket. but I found some CSS for the list. for a different
 type of list, we need to write in a different structure. I found some CSS
 for different list styles. we can follow this structure for the rest of
 the themes or write a new one. Waiting for other's opinions about the CSS
 style

 01. Twenty-Ten
 {{{
 ol {
         list-style: decimal;
 }
 ol ol {
         list-style: upper-alpha;
 }
 ol ol ol {
         list-style: lower-roman;
 }
 ol ol ol ol {
         list-style: lower-alpha;
 }
 }}}

 02. Twenty Eleven
 {{{
 ol {
         list-style-type: decimal;
 }
 ol ol {
         list-style: upper-alpha;
 }
 ol ol ol {
         list-style: lower-roman;
 }
 ol ol ol ol {
         list-style: lower-alpha;
 }
 }}}

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


More information about the wp-trac mailing list