CSS Coding Standards: Use unitless values for `line-height` in `wp-admin/css/about.css`.
Props ianbelanger, mukesh27, pbiron, afercia. Fixes #46495. See #44643. Built from https://develop.svn.wordpress.org/trunk@45130 git-svn-id: http://core.svn.wordpress.org/trunk@44939 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7eafd6d81a
commit
c33b18b721
|
@ -130,7 +130,7 @@
|
|||
margin: 0.2em 0 0 200px;
|
||||
padding: 0;
|
||||
color: #32373c;
|
||||
line-height: 1.2em;
|
||||
line-height: 1.2;
|
||||
font-size: 2.8em;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
@ -175,7 +175,7 @@
|
|||
.about-wrap .about-text {
|
||||
margin-top: 1.4em;
|
||||
font-weight: 400;
|
||||
line-height: 1.6em;
|
||||
line-height: 1.6;
|
||||
font-size: 19px;
|
||||
}
|
||||
|
||||
|
@ -452,7 +452,7 @@
|
|||
margin: 6px 0 2px;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
line-height: 2em;
|
||||
line-height: 2;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -130,7 +130,7 @@
|
|||
margin: 0.2em 200px 0 0;
|
||||
padding: 0;
|
||||
color: #32373c;
|
||||
line-height: 1.2em;
|
||||
line-height: 1.2;
|
||||
font-size: 2.8em;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
@ -175,7 +175,7 @@
|
|||
.about-wrap .about-text {
|
||||
margin-top: 1.4em;
|
||||
font-weight: 400;
|
||||
line-height: 1.6em;
|
||||
line-height: 1.6;
|
||||
font-size: 19px;
|
||||
}
|
||||
|
||||
|
@ -452,7 +452,7 @@
|
|||
margin: 6px 0 2px;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
line-height: 2em;
|
||||
line-height: 2;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.2-beta1-45129';
|
||||
$wp_version = '5.2-beta1-45130';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue