CSS Coding Standards: Use unitless values for `line-height` in `wp-admin/css/login.css`.
Props ianbelanger, pbiron, afercia. Fixes #46514. See #44643. Built from https://develop.svn.wordpress.org/trunk@45466 git-svn-id: http://core.svn.wordpress.org/trunk@45277 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1899a99c35
commit
afaeca95cf
|
@ -14,7 +14,7 @@ body {
|
||||||
color: #444;
|
color: #444;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
line-height: 1.4em;
|
line-height: 1.4;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
@ -159,7 +159,7 @@ p {
|
||||||
|
|
||||||
.login form .forgetmenot label {
|
.login form .forgetmenot label {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 19px;
|
line-height: 1.58333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login h1 {
|
.login h1 {
|
||||||
|
@ -176,7 +176,7 @@ p {
|
||||||
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: 0 auto 25px;
|
margin: 0 auto 25px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -14,7 +14,7 @@ body {
|
||||||
color: #444;
|
color: #444;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
line-height: 1.4em;
|
line-height: 1.4;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
@ -159,7 +159,7 @@ p {
|
||||||
|
|
||||||
.login form .forgetmenot label {
|
.login form .forgetmenot label {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 19px;
|
line-height: 1.58333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login h1 {
|
.login h1 {
|
||||||
|
@ -176,7 +176,7 @@ p {
|
||||||
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: 0 auto 25px;
|
margin: 0 auto 25px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.3-alpha-45465';
|
$wp_version = '5.3-alpha-45466';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
|
Loading…
Reference in New Issue