mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 08:51:15 +01:00
9f33966e4e
Includes miscellaneous bug fixes and enhancements to the Library task (#58579). Props andrewserong, ramonopoly. Fixes #58745. Built from https://develop.svn.wordpress.org/trunk@56205 git-svn-id: http://core.svn.wordpress.org/trunk@55717 1a063a9b-81f0-0310-95a4-ce76da25c4cd
18 lines
328 B
CSS
18 lines
328 B
CSS
.editor-styles-wrapper,.entry-content{
|
|
counter-reset:footnotes;
|
|
}
|
|
|
|
a[data-fn].fn{
|
|
counter-increment:footnotes;
|
|
display:inline-flex;
|
|
font-size:smaller;
|
|
text-decoration:none;
|
|
text-indent:-9999999px;
|
|
vertical-align:super;
|
|
}
|
|
|
|
a[data-fn].fn:after{
|
|
content:"[" counter(footnotes) "]";
|
|
float:right;
|
|
text-indent:0;
|
|
} |