Make WordPress Core

Changeset 44203

Timestamp:
12/14/2018 10:52:55 PM (6 years ago)
Author:
laurelfulford
Message:

Twenty Seventeen: Remove unnecessary ol styles from editor.

Twenty Seventeen was designed with bolded numbers for its ordered list styles. This was removed from the theme prior to launch, but it was left in the editor styles, so it needed to be removed there, too.

Props mmaumio, edpittol.
Fixes #44775.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/5.0/src/wp-content/themes/twentyseventeen/assets/css/editor-style.css

    r43494 r44203  
    233233}
    234234
    235 ol {
    236     counter-reset: item;
    237 }
    238 
    239235ol > li {
    240     display: block;
    241236    position: relative;
    242 }
    243 
    244 ol > li:before {
    245     content: counter(item);
    246     counter-increment: item;
    247     font-weight: 800;
    248     left: -1.5em;
    249     position: absolute;
    250237}
    251238
     
    581568}
    582569
    583 .rtl ol {
    584     counter-reset: item;
    585 }
    586 
    587570.rtl ol > li:before {
    588571    left: auto;
Note: See TracChangeset for help on using the changeset viewer.