Administration: Switch `rgb()` CSS property for paused plugin error message in Plugins list table to `rgba()`.
While technically correct as is, the latter is more consistent with other admin styles and causes less confusion. Props manikmist09. Fixes #48629. Built from https://develop.svn.wordpress.org/trunk@46744 git-svn-id: http://core.svn.wordpress.org/trunk@46544 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f32831bf6d
commit
306045277e
|
@ -1322,7 +1322,7 @@ ul.cat-checklist {
|
||||||
.plugins .paused .error-display code {
|
.plugins .paused .error-display code {
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
color: rgb( 0, 0, 0, 0.7 );
|
color: rgba( 0, 0, 0, 0.7 );
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugins .resume-link {
|
.plugins .resume-link {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1321,7 +1321,7 @@ ul.cat-checklist {
|
||||||
.plugins .paused .error-display code {
|
.plugins .paused .error-display code {
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
color: rgb( 0, 0, 0, 0.7 );
|
color: rgba( 0, 0, 0, 0.7 );
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugins .resume-link {
|
.plugins .resume-link {
|
||||||
|
|
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.4-alpha-46743';
|
$wp_version = '5.4-alpha-46744';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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