diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 07:56:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 07:56:49 +0000 |
commit | a415c29efee45520ae252d2aa28f1083a521cd7b (patch) | |
tree | f4ade4b6668ecc0765de7e1424f7c1427ad433ff /wp-includes/blocks/comments-title | |
parent | Initial commit. (diff) | |
download | wordpress-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/comments-title')
-rw-r--r-- | wp-includes/blocks/comments-title/block.json | 66 | ||||
-rw-r--r-- | wp-includes/blocks/comments-title/editor-rtl.css | 3 | ||||
-rw-r--r-- | wp-includes/blocks/comments-title/editor-rtl.min.css | 1 | ||||
-rw-r--r-- | wp-includes/blocks/comments-title/editor.css | 3 | ||||
-rw-r--r-- | wp-includes/blocks/comments-title/editor.min.css | 1 |
5 files changed, 74 insertions, 0 deletions
diff --git a/wp-includes/blocks/comments-title/block.json b/wp-includes/blocks/comments-title/block.json new file mode 100644 index 0000000..12b105a --- /dev/null +++ b/wp-includes/blocks/comments-title/block.json @@ -0,0 +1,66 @@ +{ + "$schema": "https://schemas.wp.org/trunk/block.json", + "apiVersion": 3, + "name": "core/comments-title", + "title": "Comments Title", + "category": "theme", + "ancestor": [ "core/comments" ], + "description": "Displays a title with the number of comments", + "textdomain": "default", + "usesContext": [ "postId", "postType" ], + "attributes": { + "textAlign": { + "type": "string" + }, + "showPostTitle": { + "type": "boolean", + "default": true + }, + "showCommentsCount": { + "type": "boolean", + "default": true + }, + "level": { + "type": "number", + "default": 2 + } + }, + "supports": { + "anchor": false, + "align": true, + "html": false, + "__experimentalBorder": { + "radius": true, + "color": true, + "width": true, + "style": true + }, + "color": { + "gradients": true, + "__experimentalDefaultControls": { + "background": true, + "text": true + } + }, + "spacing": { + "margin": true, + "padding": true + }, + "typography": { + "fontSize": true, + "lineHeight": true, + "__experimentalFontFamily": true, + "__experimentalFontWeight": true, + "__experimentalFontStyle": true, + "__experimentalTextTransform": true, + "__experimentalTextDecoration": true, + "__experimentalLetterSpacing": true, + "__experimentalDefaultControls": { + "fontSize": true, + "__experimentalFontFamily": true, + "__experimentalFontStyle": true, + "__experimentalFontWeight": true + } + } + } +} diff --git a/wp-includes/blocks/comments-title/editor-rtl.css b/wp-includes/blocks/comments-title/editor-rtl.css new file mode 100644 index 0000000..08eeb57 --- /dev/null +++ b/wp-includes/blocks/comments-title/editor-rtl.css @@ -0,0 +1,3 @@ +.wp-block-comments-title.has-background{ + padding:inherit; +}
\ No newline at end of file diff --git a/wp-includes/blocks/comments-title/editor-rtl.min.css b/wp-includes/blocks/comments-title/editor-rtl.min.css new file mode 100644 index 0000000..502f0da --- /dev/null +++ b/wp-includes/blocks/comments-title/editor-rtl.min.css @@ -0,0 +1 @@ +.wp-block-comments-title.has-background{padding:inherit}
\ No newline at end of file diff --git a/wp-includes/blocks/comments-title/editor.css b/wp-includes/blocks/comments-title/editor.css new file mode 100644 index 0000000..08eeb57 --- /dev/null +++ b/wp-includes/blocks/comments-title/editor.css @@ -0,0 +1,3 @@ +.wp-block-comments-title.has-background{ + padding:inherit; +}
\ No newline at end of file diff --git a/wp-includes/blocks/comments-title/editor.min.css b/wp-includes/blocks/comments-title/editor.min.css new file mode 100644 index 0000000..502f0da --- /dev/null +++ b/wp-includes/blocks/comments-title/editor.min.css @@ -0,0 +1 @@ +.wp-block-comments-title.has-background{padding:inherit}
\ No newline at end of file |