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.

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


git-svn-id: http://core.svn.wordpress.org/trunk@58129 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Tammie Lister 2024-07-15 19:55:13 +00:00
parent 98ef1859bd
commit a8517c8293
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ a:active {
.wp-block-file .wp-block-file__button { .wp-block-file .wp-block-file__button {
background-color: var(--wp--preset--color--primary); background-color: var(--wp--preset--color--primary);
border-radius: 0; border-radius: 0;
border: none; border: 0 solid;
color: var(--wp--preset--color--background); color: var(--wp--preset--color--background);
font-size: var(--wp--preset--font-size--medium); font-size: var(--wp--preset--font-size--medium);
padding: calc(.667em + 2px) calc(1.333em + 2px); padding: calc(.667em + 2px) calc(1.333em + 2px);

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.7-alpha-58726'; $wp_version = '6.7-alpha-58727';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.