mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-07 11:20:28 +01:00
919ea56557
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
17 lines
303 B
CSS
17 lines
303 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:right;
|
|
text-indent:0;
|
|
} |