Bundled Themes: Misaligned input placeholder text Twenty Twenty.

This fixes placeholder misalignment in Firefox when a `height` is added as an inline style to the input field.

Props aljullu, subratamal.
Fixes #48876.
Built from https://develop.svn.wordpress.org/trunk@46851


git-svn-id: http://core.svn.wordpress.org/trunk@46651 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ianbelanger 2019-12-09 15:10:00 +00:00
parent 35985cbf38
commit 48fbea17d6
2 changed files with 5 additions and 2 deletions

View File

@ -816,7 +816,10 @@ input:-ms-input-placeholder {
} }
input::-moz-placeholder { input::-moz-placeholder {
line-height: normal; /* Browsers supporting line-height revert
* to reset a property to the value established by the user-agent stylesheet
*/
line-height: revert;
} }
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-decoration,

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.4-alpha-46849'; $wp_version = '5.4-alpha-46851';
/** /**
* 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.