initial commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"$schema": "https://schemas.wp.org/trunk/block.json",
|
||||
"apiVersion": 3,
|
||||
"name": "core/footnotes",
|
||||
"title": "Footnotes",
|
||||
"category": "text",
|
||||
"description": "",
|
||||
"keywords": [ "references" ],
|
||||
"textdomain": "default",
|
||||
"usesContext": [ "postId", "postType" ],
|
||||
"supports": {
|
||||
"html": false,
|
||||
"multiple": false,
|
||||
"reusable": false
|
||||
},
|
||||
"style": "wp-block-footnotes"
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
.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;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/blocks/footnotes/style-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/blocks/footnotes/style-rtl.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.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}
|
||||
@@ -0,0 +1,18 @@
|
||||
.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:left;
|
||||
text-indent:0;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/blocks/footnotes/style.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/blocks/footnotes/style.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.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:left;text-indent:0}
|
||||
Reference in New Issue
Block a user