CSS Coding Standards: Use unitless values for `line-height` in `wp-includes/functions.php`.

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


git-svn-id: http://core.svn.wordpress.org/trunk@45284 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-05-30 12:39:52 +00:00
parent 820baca1bd
commit 05afb2271d
2 changed files with 3 additions and 3 deletions

View File

@ -3177,7 +3177,7 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
display: inline-block;
text-decoration: none;
font-size: 13px;
line-height: 26px;
line-height: 2;
height: 28px;
margin: 0;
padding: 0 10px 1px;
@ -3197,7 +3197,7 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
.button.button-large {
height: 30px;
line-height: 28px;
line-height: 2.15384615;
padding: 0 12px 2px;
}

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.3-alpha-45472';
$wp_version = '5.3-alpha-45473';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.