CSS Coding Standards: Use unitless values for `line-height` in `wp-admin/css/install.css`.

Props ianbelanger, pbiron, afercia.
Fixes #46513. See #44643.
Built from https://develop.svn.wordpress.org/trunk@45465


git-svn-id: http://core.svn.wordpress.org/trunk@45276 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-05-30 11:53:53 +00:00
parent 03814826b2
commit 1899a99c35
5 changed files with 13 additions and 13 deletions

View File

@ -96,7 +96,7 @@ label {
height: 84px; height: 84px;
font-size: 20px; font-size: 20px;
font-weight: 400; font-weight: 400;
line-height: 1.3em; line-height: 1.3;
margin: -130px auto 25px; margin: -130px auto 25px;
padding: 0; padding: 0;
text-decoration: none; text-decoration: none;
@ -117,7 +117,7 @@ label {
.language-chooser.wp-core-ui .step .button.button-large { .language-chooser.wp-core-ui .step .button.button-large {
height: 36px; height: 36px;
font-size: 14px; font-size: 14px;
line-height: 33px; line-height: 2.35714285;
vertical-align: middle; vertical-align: middle;
} }
textarea { textarea {
@ -149,7 +149,7 @@ textarea {
} }
.form-table code { .form-table code {
line-height: 18px; line-height: 1.28571428;
font-size: 14px; font-size: 14px;
} }
@ -159,7 +159,7 @@ textarea {
} }
.form-table input { .form-table input {
line-height: 20px; line-height: 1.33333333;
font-size: 15px; font-size: 15px;
padding: 3px 5px; padding: 3px 5px;
border: 1px solid #ddd; border: 1px solid #ddd;
@ -204,7 +204,7 @@ submit {
#error-page p { #error-page p {
font-size: 14px; font-size: 14px;
line-height: 18px; line-height: 1.28571428;
margin: 25px 0 20px; margin: 25px 0 20px;
} }

File diff suppressed because one or more lines are too long

View File

@ -96,7 +96,7 @@ label {
height: 84px; height: 84px;
font-size: 20px; font-size: 20px;
font-weight: 400; font-weight: 400;
line-height: 1.3em; line-height: 1.3;
margin: -130px auto 25px; margin: -130px auto 25px;
padding: 0; padding: 0;
text-decoration: none; text-decoration: none;
@ -117,7 +117,7 @@ label {
.language-chooser.wp-core-ui .step .button.button-large { .language-chooser.wp-core-ui .step .button.button-large {
height: 36px; height: 36px;
font-size: 14px; font-size: 14px;
line-height: 33px; line-height: 2.35714285;
vertical-align: middle; vertical-align: middle;
} }
textarea { textarea {
@ -149,7 +149,7 @@ textarea {
} }
.form-table code { .form-table code {
line-height: 18px; line-height: 1.28571428;
font-size: 14px; font-size: 14px;
} }
@ -159,7 +159,7 @@ textarea {
} }
.form-table input { .form-table input {
line-height: 20px; line-height: 1.33333333;
font-size: 15px; font-size: 15px;
padding: 3px 5px; padding: 3px 5px;
border: 1px solid #ddd; border: 1px solid #ddd;
@ -204,7 +204,7 @@ submit {
#error-page p { #error-page p {
font-size: 14px; font-size: 14px;
line-height: 18px; line-height: 1.28571428;
margin: 25px 0 20px; margin: 25px 0 20px;
} }

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.3-alpha-45464'; $wp_version = '5.3-alpha-45465';
/** /**
* 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.