Bundled themes: Fix row variation nested in group block.

Remove the `display` property from the custom group block styles to prevent the flex layout in the row variation from been removed.

Props abirhasandipu, poena, robinwpdeveloper.
Fixes #56226.


Built from https://develop.svn.wordpress.org/trunk@55329


git-svn-id: http://core.svn.wordpress.org/trunk@54862 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Peter Wilson 2023-02-14 04:03:18 +00:00
parent afe51338ac
commit 5237f454bd
4 changed files with 1 additions and 42 deletions

View File

@ -863,19 +863,6 @@ a:hover {
color: #fff;
}
.wp-block-group {
display: block;
clear: both;
display: flow-root;
}
.wp-block-group:before,
.wp-block-group:after {
content: "";
display: block;
clear: both;
}
.wp-block-group.has-background {
padding: 30px;
}

View File

@ -931,19 +931,6 @@ a:hover {
color: var(--global--color-white);
}
.wp-block-group {
display: block;
clear: both;
display: flow-root;
}
.wp-block-group:before,
.wp-block-group:after {
content: "";
display: block;
clear: both;
}
.wp-block-group.has-background {
padding: var(--global--spacing-vertical);
}

View File

@ -1,19 +1,4 @@
.wp-block-group {
// Start IE clearfix.
// This hack is only necessary because we want to support IE11.
// If we don't want to support IE11, then "display: flow-root" would suffice.
display: block;
clear: both;
display: flow-root; // stylelint-disable-line declaration-block-no-duplicate-properties
&:before,
&:after {
content: "";
display: block;
clear: both;
}
// End IE clearfix.
&.has-background {
padding: var(--global--spacing-vertical);

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.2-beta1-55328';
$wp_version = '6.2-beta1-55329';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.