From ee5e12f906be79a75117f745f308885c19b1fab4 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Thu, 8 Sep 2022 23:03:11 +0000 Subject: [PATCH] Twenty Twenty: Add a missing border to button-style links with Outline style. This changeset addresses an issue where button-style links with Outline style variation were not consistent with the corresponding variation of the Button block. Props umesh84, sabernhardt, mrfoxtalbot, mohitdadhich10. Fixes #55824. Built from https://develop.svn.wordpress.org/trunk@54107 git-svn-id: http://core.svn.wordpress.org/trunk@53666 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwenty/style-rtl.css | 1 + wp-content/themes/twentytwenty/style.css | 1 + wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentytwenty/style-rtl.css b/wp-content/themes/twentytwenty/style-rtl.css index 0e5d365807..c101569225 100644 --- a/wp-content/themes/twentytwenty/style-rtl.css +++ b/wp-content/themes/twentytwenty/style-rtl.css @@ -3019,6 +3019,7 @@ h2.entry-title { } .is-style-outline .wp-block-button__link { + border: 2px solid; padding: calc(1.1em - 0.2rem) calc(1.44em - 0.2rem); } diff --git a/wp-content/themes/twentytwenty/style.css b/wp-content/themes/twentytwenty/style.css index 0d38bc927d..246038500a 100644 --- a/wp-content/themes/twentytwenty/style.css +++ b/wp-content/themes/twentytwenty/style.css @@ -3039,6 +3039,7 @@ h2.entry-title { } .is-style-outline .wp-block-button__link { + border: 2px solid; padding: calc(1.1em - 0.2rem) calc(1.44em - 0.2rem); } diff --git a/wp-includes/version.php b/wp-includes/version.php index b8dc7cd9f5..e7333c0e73 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54106'; +$wp_version = '6.1-alpha-54107'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.