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:
Sergey Biryukov 2019-11-18 13:18:03 +00:00
parent f32831bf6d
commit 306045277e
5 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -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.