From acad157d890b186f985aa88416f448ad5c8fc19f Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Thu, 8 Sep 2022 23:01:12 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@54107 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentytwenty/style-rtl.css | 1 + src/wp-content/themes/twentytwenty/style.css | 1 + 2 files changed, 2 insertions(+) diff --git a/src/wp-content/themes/twentytwenty/style-rtl.css b/src/wp-content/themes/twentytwenty/style-rtl.css index 0e5d365807..c101569225 100644 --- a/src/wp-content/themes/twentytwenty/style-rtl.css +++ b/src/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/src/wp-content/themes/twentytwenty/style.css b/src/wp-content/themes/twentytwenty/style.css index 0d38bc927d..246038500a 100644 --- a/src/wp-content/themes/twentytwenty/style.css +++ b/src/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); }