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.

git-svn-id: https://develop.svn.wordpress.org/trunk@46851 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ian Belanger 2019-12-09 15:08:16 +00:00
parent 2de8f8b3cd
commit 9b69d0f71d

View File

@ -816,7 +816,10 @@ input:-ms-input-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,