summaryrefslogtreecommitdiffstats
path: root/wp-includes/blocks/list
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 07:56:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 07:56:49 +0000
commita415c29efee45520ae252d2aa28f1083a521cd7b (patch)
treef4ade4b6668ecc0765de7e1424f7c1427ad433ff /wp-includes/blocks/list
parentInitial commit. (diff)
downloadwordpress-a415c29efee45520ae252d2aa28f1083a521cd7b.tar.xz
wordpress-a415c29efee45520ae252d2aa28f1083a521cd7b.zip
Adding upstream version 6.4.3+dfsg1.upstream/6.4.3+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'wp-includes/blocks/list')
-rw-r--r--wp-includes/blocks/list/block.json77
-rw-r--r--wp-includes/blocks/list/style-rtl.css6
-rw-r--r--wp-includes/blocks/list/style-rtl.min.css1
-rw-r--r--wp-includes/blocks/list/style.css6
-rw-r--r--wp-includes/blocks/list/style.min.css1
5 files changed, 91 insertions, 0 deletions
diff --git a/wp-includes/blocks/list/block.json b/wp-includes/blocks/list/block.json
new file mode 100644
index 0000000..e2fb9e4
--- /dev/null
+++ b/wp-includes/blocks/list/block.json
@@ -0,0 +1,77 @@
+{
+ "$schema": "https://schemas.wp.org/trunk/block.json",
+ "apiVersion": 3,
+ "name": "core/list",
+ "title": "List",
+ "category": "text",
+ "description": "Create a bulleted or numbered list.",
+ "keywords": [ "bullet list", "ordered list", "numbered list" ],
+ "textdomain": "default",
+ "attributes": {
+ "ordered": {
+ "type": "boolean",
+ "default": false,
+ "__experimentalRole": "content"
+ },
+ "values": {
+ "type": "string",
+ "source": "html",
+ "selector": "ol,ul",
+ "multiline": "li",
+ "__unstableMultilineWrapperTags": [ "ol", "ul" ],
+ "default": "",
+ "__experimentalRole": "content"
+ },
+ "type": {
+ "type": "string"
+ },
+ "start": {
+ "type": "number"
+ },
+ "reversed": {
+ "type": "boolean"
+ },
+ "placeholder": {
+ "type": "string"
+ }
+ },
+ "supports": {
+ "anchor": true,
+ "className": false,
+ "typography": {
+ "fontSize": true,
+ "lineHeight": true,
+ "__experimentalFontFamily": true,
+ "__experimentalFontWeight": true,
+ "__experimentalFontStyle": true,
+ "__experimentalTextTransform": true,
+ "__experimentalTextDecoration": true,
+ "__experimentalLetterSpacing": true,
+ "__experimentalDefaultControls": {
+ "fontSize": true
+ }
+ },
+ "color": {
+ "gradients": true,
+ "link": true,
+ "__experimentalDefaultControls": {
+ "background": true,
+ "text": true
+ }
+ },
+ "spacing": {
+ "margin": true,
+ "padding": true,
+ "__experimentalDefaultControls": {
+ "margin": false,
+ "padding": false
+ }
+ },
+ "__unstablePasteTextInline": true,
+ "__experimentalSelector": "ol,ul",
+ "__experimentalOnMerge": true,
+ "__experimentalSlashInserter": true
+ },
+ "editorStyle": "wp-block-list-editor",
+ "style": "wp-block-list"
+}
diff --git a/wp-includes/blocks/list/style-rtl.css b/wp-includes/blocks/list/style-rtl.css
new file mode 100644
index 0000000..aef9754
--- /dev/null
+++ b/wp-includes/blocks/list/style-rtl.css
@@ -0,0 +1,6 @@
+ol,ul{
+ box-sizing:border-box;
+}
+ol.has-background,ul.has-background{
+ padding:1.25em 2.375em;
+} \ No newline at end of file
diff --git a/wp-includes/blocks/list/style-rtl.min.css b/wp-includes/blocks/list/style-rtl.min.css
new file mode 100644
index 0000000..d840bee
--- /dev/null
+++ b/wp-includes/blocks/list/style-rtl.min.css
@@ -0,0 +1 @@
+ol,ul{box-sizing:border-box}ol.has-background,ul.has-background{padding:1.25em 2.375em} \ No newline at end of file
diff --git a/wp-includes/blocks/list/style.css b/wp-includes/blocks/list/style.css
new file mode 100644
index 0000000..aef9754
--- /dev/null
+++ b/wp-includes/blocks/list/style.css
@@ -0,0 +1,6 @@
+ol,ul{
+ box-sizing:border-box;
+}
+ol.has-background,ul.has-background{
+ padding:1.25em 2.375em;
+} \ No newline at end of file
diff --git a/wp-includes/blocks/list/style.min.css b/wp-includes/blocks/list/style.min.css
new file mode 100644
index 0000000..d840bee
--- /dev/null
+++ b/wp-includes/blocks/list/style.min.css
@@ -0,0 +1 @@
+ol,ul{box-sizing:border-box}ol.has-background,ul.has-background{padding:1.25em 2.375em} \ No newline at end of file