Administration: Fix background color of plugin update row on small screens.
When the color change was done, the background of plugins with updates had to be manually changed. This section was missed, which caused a visual bug. This fix also removes some redundant CSS for the same element. Follow-up to [50025]. Props afragen. Fixes #52452. Built from https://develop.svn.wordpress.org/trunk@50237 git-svn-id: http://core.svn.wordpress.org/trunk@49898 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8bc5c10684
commit
d4e4828d0a
|
@ -2074,11 +2074,6 @@ div.action-links,
|
|||
display: table-cell;
|
||||
}
|
||||
|
||||
.plugins .active.update + .plugin-update-tr:before {
|
||||
border-right: 4px solid #d63638;
|
||||
background-color: #f6f7f7;
|
||||
}
|
||||
|
||||
.plugins #the-list .plugin-update-tr .plugin-update {
|
||||
border-right: none;
|
||||
}
|
||||
|
@ -2088,7 +2083,7 @@ div.action-links,
|
|||
}
|
||||
|
||||
.plugins .active.update + .plugin-update-tr:before {
|
||||
background-color: #fff;
|
||||
background-color: #f0f6fc;
|
||||
border-right: 4px solid #72aee6;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2073,11 +2073,6 @@ div.action-links,
|
|||
display: table-cell;
|
||||
}
|
||||
|
||||
.plugins .active.update + .plugin-update-tr:before {
|
||||
border-left: 4px solid #d63638;
|
||||
background-color: #f6f7f7;
|
||||
}
|
||||
|
||||
.plugins #the-list .plugin-update-tr .plugin-update {
|
||||
border-left: none;
|
||||
}
|
||||
|
@ -2087,7 +2082,7 @@ div.action-links,
|
|||
}
|
||||
|
||||
.plugins .active.update + .plugin-update-tr:before {
|
||||
background-color: #fff;
|
||||
background-color: #f0f6fc;
|
||||
border-left: 4px solid #72aee6;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.7-beta1-50236';
|
||||
$wp_version = '5.7-beta1-50237';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue