Diff: STRATO-apps/wordpress_03/app/wp-includes/blocks/footnotes/style.css
Keine Baseline-Datei – Diff nur gegen leer.
1
-
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
+
}