From e4f070a161a8a174ac4214b01553ab3d6392c7e6 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Sun, 22 Jan 2023 20:07:12 +0000 Subject: [PATCH] Bundled Themes: Fix Separator block "Dots" style variation on various themes. This changeset fixes an issue with the "Dots" style of the Separator block on multiple bundled themes. It adds `max-width: 100%` to this style variation on the following themes: Twenty Eleven, Twenty Thirteen, Twenty Fourteen, Twenty Fifteen, and Twenty Sixteen. Props umesh84, sabernhardt, audrasjb, amin7, esratpopy, multidots1896. Fixes #56114. Built from https://develop.svn.wordpress.org/trunk@55114 git-svn-id: http://core.svn.wordpress.org/trunk@54647 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyeleven/blocks.css | 3 ++- wp-content/themes/twentyfifteen/css/blocks.css | 3 ++- wp-content/themes/twentyfifteen/css/editor-blocks.css | 3 ++- wp-content/themes/twentyfourteen/css/blocks.css | 3 ++- wp-content/themes/twentysixteen/css/blocks.css | 3 ++- wp-content/themes/twentythirteen/css/blocks.css | 3 ++- wp-includes/version.php | 2 +- 7 files changed, 13 insertions(+), 7 deletions(-) diff --git a/wp-content/themes/twentyeleven/blocks.css b/wp-content/themes/twentyeleven/blocks.css index 6d9b02947a..1a4acd4b72 100644 --- a/wp-content/themes/twentyeleven/blocks.css +++ b/wp-content/themes/twentyeleven/blocks.css @@ -275,7 +275,8 @@ p.has-drop-cap:not(:focus)::first-letter { max-width: 100px; } -.wp-block-separator.is-style-wide { +.wp-block-separator.is-style-wide, +.wp-block-separator.is-style-dots { max-width: 100%; } diff --git a/wp-content/themes/twentyfifteen/css/blocks.css b/wp-content/themes/twentyfifteen/css/blocks.css index be2d8ffef6..df5b7515e4 100644 --- a/wp-content/themes/twentyfifteen/css/blocks.css +++ b/wp-content/themes/twentyfifteen/css/blocks.css @@ -472,7 +472,8 @@ p.has-drop-cap:not(:focus)::first-letter { max-width: 100px; } -.wp-block-separator.is-style-wide { +.wp-block-separator.is-style-wide, +.wp-block-separator.is-style-dots { max-width: 100%; } diff --git a/wp-content/themes/twentyfifteen/css/editor-blocks.css b/wp-content/themes/twentyfifteen/css/editor-blocks.css index 72e20fb75d..860ca9c162 100644 --- a/wp-content/themes/twentyfifteen/css/editor-blocks.css +++ b/wp-content/themes/twentyfifteen/css/editor-blocks.css @@ -804,7 +804,8 @@ p.has-drop-cap:not(:focus)::first-letter { max-width: 100px; } -.wp-block-separator.is-style-wide { +.wp-block-separator.is-style-wide, +.wp-block-separator.is-style-dots { max-width: 100%; } diff --git a/wp-content/themes/twentyfourteen/css/blocks.css b/wp-content/themes/twentyfourteen/css/blocks.css index 31691c9772..6d04a59f41 100644 --- a/wp-content/themes/twentyfourteen/css/blocks.css +++ b/wp-content/themes/twentyfourteen/css/blocks.css @@ -261,7 +261,8 @@ p.has-drop-cap:not(:focus)::first-letter { max-width: 100px; } -.wp-block-separator.is-style-wide { +.wp-block-separator.is-style-wide, +.wp-block-separator.is-style-dots { max-width: 100%; } diff --git a/wp-content/themes/twentysixteen/css/blocks.css b/wp-content/themes/twentysixteen/css/blocks.css index d468054501..61ffff6591 100644 --- a/wp-content/themes/twentysixteen/css/blocks.css +++ b/wp-content/themes/twentysixteen/css/blocks.css @@ -289,7 +289,8 @@ hr.wp-block-separator { max-width: 100px; } -.wp-block-separator.is-style-wide { +.wp-block-separator.is-style-wide, +.wp-block-separator.is-style-dots { max-width: 100%; } diff --git a/wp-content/themes/twentythirteen/css/blocks.css b/wp-content/themes/twentythirteen/css/blocks.css index 3b0f3fdfea..893ffeb4df 100644 --- a/wp-content/themes/twentythirteen/css/blocks.css +++ b/wp-content/themes/twentythirteen/css/blocks.css @@ -423,7 +423,8 @@ body:not(.sidebar) .wp-block-table.alignfull { max-width: 100px; } -.wp-block-separator.is-style-wide { +.wp-block-separator.is-style-wide, +.wp-block-separator.is-style-dots { max-width: 100%; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 6cf7e7c736..63e2f3cf2c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-55113'; +$wp_version = '6.2-alpha-55114'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.