From f73d44ee99c0c8a09f75757b8a2d62d53ce4c3c7 Mon Sep 17 00:00:00 2001 From: Andrea Fercia Date: Sun, 12 May 2024 04:10:34 +0200 Subject: [PATCH] Fix the RSS block placeholder labeling and improve spacing (#61576) * Fix labeling of the RSS block placeholder. * Fix RSS placeholder spacing. Co-authored-by: afercia Co-authored-by: t-hamano --- packages/block-library/src/rss/edit.js | 47 +++++++++++++--------- packages/block-library/src/rss/editor.scss | 4 +- 2 files changed, 29 insertions(+), 22 deletions(-) diff --git a/packages/block-library/src/rss/edit.js b/packages/block-library/src/rss/edit.js index 7c35d63f4fc89..467b22e3e5883 100644 --- a/packages/block-library/src/rss/edit.js +++ b/packages/block-library/src/rss/edit.js @@ -14,7 +14,6 @@ import { RangeControl, ToggleControl, ToolbarGroup, - __experimentalHStack as HStack, __experimentalInputControl as InputControl, } from '@wordpress/components'; import { useState } from '@wordpress/element'; @@ -59,32 +58,40 @@ export default function RSSEdit( { attributes, setAttributes } ) { const blockProps = useBlockProps(); + const label = __( 'RSS URL' ); + if ( isEditing ) { return (
- +
- - - setAttributes( { feedURL: value } ) - } - className="wp-block-rss__placeholder-input" - /> - - + + setAttributes( { feedURL: value } ) + } + className="wp-block-rss__placeholder-input" + /> +
diff --git a/packages/block-library/src/rss/editor.scss b/packages/block-library/src/rss/editor.scss index 9b4bac2874ad5..095da46973509 100644 --- a/packages/block-library/src/rss/editor.scss +++ b/packages/block-library/src/rss/editor.scss @@ -14,8 +14,8 @@ } .wp-block-rss__placeholder-input { - flex: 1; - min-width: 80%; + margin: 0 8px 0 0; + flex: 1 1 auto; } }