Administration: Combine the styles for <p> and .wp-die-message, instead of duplicating.

This brings some consistency with `_default_wp_die_handler()`, where they are already combined.

Follow-up to [45909].

See #47580.
Built from https://develop.svn.wordpress.org/trunk@48082


git-svn-id: http://core.svn.wordpress.org/trunk@47849 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-06-18 15:07:11 +00:00
parent 168a9df672
commit 8d3075952e
5 changed files with 7 additions and 17 deletions

View File

@ -305,7 +305,8 @@ q:after {
content: none;
}
p {
p,
.wp-die-message {
font-size: 13px;
line-height: 1.5;
margin: 1em 0;
@ -457,12 +458,6 @@ code {
white-space: nowrap;
}
.wp-die-message {
font-size: 13px;
line-height: 1.5;
margin: 1em 0;
}
/* .widefat - main style for tables */
.widefat {
border-spacing: 0;

File diff suppressed because one or more lines are too long

View File

@ -304,7 +304,8 @@ q:after {
content: none;
}
p {
p,
.wp-die-message {
font-size: 13px;
line-height: 1.5;
margin: 1em 0;
@ -456,12 +457,6 @@ code {
white-space: nowrap;
}
.wp-die-message {
font-size: 13px;
line-height: 1.5;
margin: 1em 0;
}
/* .widefat - main style for tables */
.widefat {
border-spacing: 0;

File diff suppressed because one or more lines are too long

View File

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