wp/wp-includes/blocks/footnotes/style.css
changeset 21 48c4eec2b7e6
equal deleted inserted replaced
20:7b1b88e27a20 21:48c4eec2b7e6
       
     1 .editor-styles-wrapper,.entry-content{
       
     2   counter-reset:footnotes;
       
     3 }
       
     4 
       
     5 a[data-fn].fn{
       
     6   counter-increment:footnotes;
       
     7   display:inline-flex;
       
     8   font-size:smaller;
       
     9   text-decoration:none;
       
    10   text-indent:-9999999px;
       
    11   vertical-align:super;
       
    12 }
       
    13 
       
    14 a[data-fn].fn:after{
       
    15   content:"[" counter(footnotes) "]";
       
    16   float:left;
       
    17   text-indent:0;
       
    18 }