PluginProbe
Gutenberg / 23.2.0
Gutenberg v23.2.0
24.0.0 23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 All 403 releases
gutenberg / build / styles / block-library / footnotes / style.css
build/styles/block-library/footnotes
style-rtl.css 343 B 7 months ago style-rtl.min.css 288 B 7 months ago style.css 342 B 7 months ago style.min.css 287 B 7 months ago

style.css in Gutenberg 23.2.0, at build/styles/block-library/footnotes/style.css

19 lines 342 B Raw Download Zip
1 .editor-styles-wrapper,
2 .entry-content {
3 counter-reset: footnotes;
4 }
5
6 a[data-fn].fn {
7 vertical-align: super;
8 font-size: smaller;
9 counter-increment: footnotes;
10 display: inline-flex;
11 text-decoration: none;
12 text-indent: -9999999px;
13 }
14
15 a[data-fn].fn::after {
16 content: "[" counter(footnotes) "]";
17 text-indent: 0;
18 float: left;
19 }