WordPress/wp-includes/blocks/footnotes/style.css
isabel_brison 919ea56557 Editor: update npm packages with bug fixes and blessed tasks.
Includes miscellaneous bug fixes and enhancements to the Library task (#58579) and to the site vs content editing task (#58641)

Fixes #58701.

Built from https://develop.svn.wordpress.org/trunk@56127


git-svn-id: http://core.svn.wordpress.org/trunk@55639 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-07-03 09:14:26 +00:00

17 lines
302 B
CSS

.editor-styles-wrapper,.entry-content{
counter-reset:footnotes;
}
[data-fn].fn{
counter-increment:footnotes;
display:inline-block;
font-size:smaller;
text-indent:-9999999px;
vertical-align:super;
}
[data-fn].fn:after{
content:"[" counter(footnotes) "]";
float:left;
text-indent:0;
}