From 55208cc3ffcd580ee0c3a787d2ac85c79562ccb9 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Mon, 15 Jul 2024 19:53:49 +0000 Subject: [PATCH] Twenty Twenty-Two: Fixes search block not showing selected border on bottom. The border was not showing on search block. This brings in a resolution for that removing the none from border property. Props viralsampat, poena, sabernhardt. Fixes #60669. git-svn-id: https://develop.svn.wordpress.org/trunk@58727 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentytwentytwo/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-content/themes/twentytwentytwo/style.css b/src/wp-content/themes/twentytwentytwo/style.css index 3b4166028457d..4d36abfab2f9b 100644 --- a/src/wp-content/themes/twentytwentytwo/style.css +++ b/src/wp-content/themes/twentytwentytwo/style.css @@ -65,7 +65,7 @@ a:active { .wp-block-file .wp-block-file__button { background-color: var(--wp--preset--color--primary); border-radius: 0; - border: none; + border: 0 solid; color: var(--wp--preset--color--background); font-size: var(--wp--preset--font-size--medium); padding: calc(.667em + 2px) calc(1.333em + 2px);