Make WordPress Core

Ticket #44775: olstartfixamend.diff

File olstartfixamend.diff, 651 bytes (added by mmaumio, 5 years ago)

Thank you for your insights @laurelfulford I've made the amendment and uploaded the new patch.

  • assets/css/editor-style.css

     
    232232        list-style: disc;
    233233}
    234234
    235 ol {
    236         counter-reset: item;
    237 }
    238 
    239235ol > li {
    240         display: block;
    241236        position: relative;
    242237}
    243238
    244 ol > li:before {
    245         content: counter(item);
    246         counter-increment: item;
    247         font-weight: 800;
    248         left: -1.5em;
    249         position: absolute;
    250 }
    251 
    252239li > ul,
    253240li > ol {
    254241        margin-bottom: 0;
     
    580567        text-align: right;
    581568}
    582569
    583 .rtl ol {
    584         counter-reset: item;
    585 }
    586 
    587570.rtl ol > li:before {
    588571        left: auto;
    589572        right: -1.5em;