first commit
This commit is contained in:
49
wp-includes/blocks/preformatted/block.json
Normal file
49
wp-includes/blocks/preformatted/block.json
Normal file
@ -0,0 +1,49 @@
|
||||
{
|
||||
"$schema": "https://schemas.wp.org/trunk/block.json",
|
||||
"apiVersion": 3,
|
||||
"name": "core/preformatted",
|
||||
"title": "Preformatted",
|
||||
"category": "text",
|
||||
"description": "Add text that respects your spacing and tabs, and also allows styling.",
|
||||
"textdomain": "default",
|
||||
"attributes": {
|
||||
"content": {
|
||||
"type": "rich-text",
|
||||
"source": "rich-text",
|
||||
"selector": "pre",
|
||||
"__unstablePreserveWhiteSpace": true,
|
||||
"__experimentalRole": "content"
|
||||
}
|
||||
},
|
||||
"supports": {
|
||||
"anchor": true,
|
||||
"color": {
|
||||
"gradients": true,
|
||||
"__experimentalDefaultControls": {
|
||||
"background": true,
|
||||
"text": true
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"padding": true,
|
||||
"margin": true
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": true,
|
||||
"lineHeight": true,
|
||||
"__experimentalFontFamily": true,
|
||||
"__experimentalFontWeight": true,
|
||||
"__experimentalFontStyle": true,
|
||||
"__experimentalTextTransform": true,
|
||||
"__experimentalTextDecoration": true,
|
||||
"__experimentalLetterSpacing": true,
|
||||
"__experimentalDefaultControls": {
|
||||
"fontSize": true
|
||||
}
|
||||
},
|
||||
"interactivity": {
|
||||
"clientNavigation": true
|
||||
}
|
||||
},
|
||||
"style": "wp-block-preformatted"
|
||||
}
|
8
wp-includes/blocks/preformatted/style-rtl.css
Normal file
8
wp-includes/blocks/preformatted/style-rtl.css
Normal file
@ -0,0 +1,8 @@
|
||||
.wp-block-preformatted{
|
||||
box-sizing:border-box;
|
||||
white-space:pre-wrap;
|
||||
}
|
||||
|
||||
:where(.wp-block-preformatted.has-background){
|
||||
padding:1.25em 2.375em;
|
||||
}
|
1
wp-includes/blocks/preformatted/style-rtl.min.css
vendored
Normal file
1
wp-includes/blocks/preformatted/style-rtl.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.wp-block-preformatted{box-sizing:border-box;white-space:pre-wrap}:where(.wp-block-preformatted.has-background){padding:1.25em 2.375em}
|
8
wp-includes/blocks/preformatted/style.css
Normal file
8
wp-includes/blocks/preformatted/style.css
Normal file
@ -0,0 +1,8 @@
|
||||
.wp-block-preformatted{
|
||||
box-sizing:border-box;
|
||||
white-space:pre-wrap;
|
||||
}
|
||||
|
||||
:where(.wp-block-preformatted.has-background){
|
||||
padding:1.25em 2.375em;
|
||||
}
|
1
wp-includes/blocks/preformatted/style.min.css
vendored
Normal file
1
wp-includes/blocks/preformatted/style.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.wp-block-preformatted{box-sizing:border-box;white-space:pre-wrap}:where(.wp-block-preformatted.has-background){padding:1.25em 2.375em}
|
Reference in New Issue
Block a user