edit pages
This commit is contained in:
81
old/wp-includes/blocks/list/block.json
Normal file
81
old/wp-includes/blocks/list/block.json
Normal file
@ -0,0 +1,81 @@
|
||||
{
|
||||
"$schema": "https://schemas.wp.org/trunk/block.json",
|
||||
"apiVersion": 3,
|
||||
"name": "core/list",
|
||||
"title": "List",
|
||||
"category": "text",
|
||||
"allowedBlocks": [ "core/list-item" ],
|
||||
"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,
|
||||
"interactivity": {
|
||||
"clientNavigation": true
|
||||
}
|
||||
},
|
||||
"editorStyle": "wp-block-list-editor",
|
||||
"style": "wp-block-list"
|
||||
}
|
6
old/wp-includes/blocks/list/style-rtl.css
Normal file
6
old/wp-includes/blocks/list/style-rtl.css
Normal file
@ -0,0 +1,6 @@
|
||||
ol,ul{
|
||||
box-sizing:border-box;
|
||||
}
|
||||
ol.has-background,ul.has-background{
|
||||
padding:1.25em 2.375em;
|
||||
}
|
1
old/wp-includes/blocks/list/style-rtl.min.css
vendored
Normal file
1
old/wp-includes/blocks/list/style-rtl.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
ol,ul{box-sizing:border-box}ol.has-background,ul.has-background{padding:1.25em 2.375em}
|
6
old/wp-includes/blocks/list/style.css
Normal file
6
old/wp-includes/blocks/list/style.css
Normal file
@ -0,0 +1,6 @@
|
||||
ol,ul{
|
||||
box-sizing:border-box;
|
||||
}
|
||||
ol.has-background,ul.has-background{
|
||||
padding:1.25em 2.375em;
|
||||
}
|
1
old/wp-includes/blocks/list/style.min.css
vendored
Normal file
1
old/wp-includes/blocks/list/style.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
ol,ul{box-sizing:border-box}ol.has-background,ul.has-background{padding:1.25em 2.375em}
|
Reference in New Issue
Block a user