diff --git a/wp-content/themes/twentytwentyone/.stylelintrc-css.json b/wp-content/themes/twentytwentyone/.stylelintrc-css.json index c48e0bee62..810b6b5889 100644 --- a/wp-content/themes/twentytwentyone/.stylelintrc-css.json +++ b/wp-content/themes/twentytwentyone/.stylelintrc-css.json @@ -17,6 +17,7 @@ "at-rule-empty-line-before": null, "selector-pseudo-element-colon-notation": null, "number-leading-zero": null, - "no-descending-specificity": null + "no-descending-specificity": null, + "length-zero-no-unit": [true, {"ignore": ["custom-properties"]}] } } diff --git a/wp-content/themes/twentytwentyone/assets/css/style-editor.css b/wp-content/themes/twentytwentyone/assets/css/style-editor.css index dda0334ba3..67791c1eb0 100644 --- a/wp-content/themes/twentytwentyone/assets/css/style-editor.css +++ b/wp-content/themes/twentytwentyone/assets/css/style-editor.css @@ -224,7 +224,7 @@ --widget--spacing-menu: calc(0.66 * var(--global--spacing-unit)); /* Admin-bar height */ - --global--admin-bar--height: 0; + --global--admin-bar--height: 0px; } .admin-bar { diff --git a/wp-content/themes/twentytwentyone/assets/sass/01-settings/global.scss b/wp-content/themes/twentytwentyone/assets/sass/01-settings/global.scss index 45d6086ccc..91d845259a 100644 --- a/wp-content/themes/twentytwentyone/assets/sass/01-settings/global.scss +++ b/wp-content/themes/twentytwentyone/assets/sass/01-settings/global.scss @@ -227,7 +227,7 @@ $baseline-unit: 10px; --widget--spacing-menu: calc(0.66 * var(--global--spacing-unit)); /* Admin-bar height */ - --global--admin-bar--height: 0; + --global--admin-bar--height: 0px; } .admin-bar { diff --git a/wp-content/themes/twentytwentyone/style-rtl.css b/wp-content/themes/twentytwentyone/style-rtl.css index d217e88f07..0ccb8eee57 100644 --- a/wp-content/themes/twentytwentyone/style-rtl.css +++ b/wp-content/themes/twentytwentyone/style-rtl.css @@ -317,7 +317,7 @@ Twenty Twenty-One is distributed under the terms of the GNU GPL. --widget--spacing-menu: calc(0.66 * var(--global--spacing-unit)); /* Admin-bar height */ - --global--admin-bar--height: 0; + --global--admin-bar--height: 0px; } .admin-bar { diff --git a/wp-content/themes/twentytwentyone/style.css b/wp-content/themes/twentytwentyone/style.css index 39bd1a9682..4511b4461e 100644 --- a/wp-content/themes/twentytwentyone/style.css +++ b/wp-content/themes/twentytwentyone/style.css @@ -317,7 +317,7 @@ Twenty Twenty-One is distributed under the terms of the GNU GPL. --widget--spacing-menu: calc(0.66 * var(--global--spacing-unit)); /* Admin-bar height */ - --global--admin-bar--height: 0; + --global--admin-bar--height: 0px; } .admin-bar { diff --git a/wp-includes/version.php b/wp-includes/version.php index e026810d54..b78769ef4b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-beta3-50387'; +$wp_version = '5.7-beta3-50388'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.