From a415c29efee45520ae252d2aa28f1083a521cd7b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 09:56:49 +0200 Subject: Adding upstream version 6.4.3+dfsg1. Signed-off-by: Daniel Baumann --- wp-includes/blocks/details/block.json | 65 +++++++++++++++++++++++++++ wp-includes/blocks/details/editor-rtl.css | 3 ++ wp-includes/blocks/details/editor-rtl.min.css | 1 + wp-includes/blocks/details/editor.css | 3 ++ wp-includes/blocks/details/editor.min.css | 1 + wp-includes/blocks/details/style-rtl.css | 8 ++++ wp-includes/blocks/details/style-rtl.min.css | 1 + wp-includes/blocks/details/style.css | 8 ++++ wp-includes/blocks/details/style.min.css | 1 + 9 files changed, 91 insertions(+) create mode 100644 wp-includes/blocks/details/block.json create mode 100644 wp-includes/blocks/details/editor-rtl.css create mode 100644 wp-includes/blocks/details/editor-rtl.min.css create mode 100644 wp-includes/blocks/details/editor.css create mode 100644 wp-includes/blocks/details/editor.min.css create mode 100644 wp-includes/blocks/details/style-rtl.css create mode 100644 wp-includes/blocks/details/style-rtl.min.css create mode 100644 wp-includes/blocks/details/style.css create mode 100644 wp-includes/blocks/details/style.min.css (limited to 'wp-includes/blocks/details') diff --git a/wp-includes/blocks/details/block.json b/wp-includes/blocks/details/block.json new file mode 100644 index 0000000..d449d42 --- /dev/null +++ b/wp-includes/blocks/details/block.json @@ -0,0 +1,65 @@ +{ + "$schema": "https://schemas.wp.org/trunk/block.json", + "apiVersion": 3, + "name": "core/details", + "title": "Details", + "category": "text", + "description": "Hide and show additional content.", + "keywords": [ "accordion", "summary", "toggle", "disclosure" ], + "textdomain": "default", + "attributes": { + "showContent": { + "type": "boolean", + "default": false + }, + "summary": { + "type": "string", + "source": "html", + "selector": "summary" + } + }, + "supports": { + "align": [ "wide", "full" ], + "color": { + "gradients": true, + "link": true, + "__experimentalDefaultControls": { + "background": true, + "text": true + } + }, + "__experimentalBorder": { + "color": true, + "width": true, + "style": true + }, + "html": false, + "spacing": { + "margin": true, + "padding": true, + "blockGap": true, + "__experimentalDefaultControls": { + "margin": false, + "padding": false + } + }, + "typography": { + "fontSize": true, + "lineHeight": true, + "__experimentalFontFamily": true, + "__experimentalFontWeight": true, + "__experimentalFontStyle": true, + "__experimentalTextTransform": true, + "__experimentalTextDecoration": true, + "__experimentalLetterSpacing": true, + "__experimentalDefaultControls": { + "fontSize": true + } + }, + "layout": { + "allowEditing": false + } + }, + "editorStyle": "wp-block-details-editor", + "style": "wp-block-details" +} diff --git a/wp-includes/blocks/details/editor-rtl.css b/wp-includes/blocks/details/editor-rtl.css new file mode 100644 index 0000000..01ecaad --- /dev/null +++ b/wp-includes/blocks/details/editor-rtl.css @@ -0,0 +1,3 @@ +.wp-block-details summary div{ + display:inline; +} \ No newline at end of file diff --git a/wp-includes/blocks/details/editor-rtl.min.css b/wp-includes/blocks/details/editor-rtl.min.css new file mode 100644 index 0000000..2a43fec --- /dev/null +++ b/wp-includes/blocks/details/editor-rtl.min.css @@ -0,0 +1 @@ +.wp-block-details summary div{display:inline} \ No newline at end of file diff --git a/wp-includes/blocks/details/editor.css b/wp-includes/blocks/details/editor.css new file mode 100644 index 0000000..01ecaad --- /dev/null +++ b/wp-includes/blocks/details/editor.css @@ -0,0 +1,3 @@ +.wp-block-details summary div{ + display:inline; +} \ No newline at end of file diff --git a/wp-includes/blocks/details/editor.min.css b/wp-includes/blocks/details/editor.min.css new file mode 100644 index 0000000..2a43fec --- /dev/null +++ b/wp-includes/blocks/details/editor.min.css @@ -0,0 +1 @@ +.wp-block-details summary div{display:inline} \ No newline at end of file diff --git a/wp-includes/blocks/details/style-rtl.css b/wp-includes/blocks/details/style-rtl.css new file mode 100644 index 0000000..4e36410 --- /dev/null +++ b/wp-includes/blocks/details/style-rtl.css @@ -0,0 +1,8 @@ +.wp-block-details{ + box-sizing:border-box; + overflow:hidden; +} + +.wp-block-details summary{ + cursor:pointer; +} \ No newline at end of file diff --git a/wp-includes/blocks/details/style-rtl.min.css b/wp-includes/blocks/details/style-rtl.min.css new file mode 100644 index 0000000..dc382dc --- /dev/null +++ b/wp-includes/blocks/details/style-rtl.min.css @@ -0,0 +1 @@ +.wp-block-details{box-sizing:border-box;overflow:hidden}.wp-block-details summary{cursor:pointer} \ No newline at end of file diff --git a/wp-includes/blocks/details/style.css b/wp-includes/blocks/details/style.css new file mode 100644 index 0000000..4e36410 --- /dev/null +++ b/wp-includes/blocks/details/style.css @@ -0,0 +1,8 @@ +.wp-block-details{ + box-sizing:border-box; + overflow:hidden; +} + +.wp-block-details summary{ + cursor:pointer; +} \ No newline at end of file diff --git a/wp-includes/blocks/details/style.min.css b/wp-includes/blocks/details/style.min.css new file mode 100644 index 0000000..dc382dc --- /dev/null +++ b/wp-includes/blocks/details/style.min.css @@ -0,0 +1 @@ +.wp-block-details{box-sizing:border-box;overflow:hidden}.wp-block-details summary{cursor:pointer} \ No newline at end of file -- cgit v1.2.3