From 9c8e17821a2fe0adea1bb52a48d1e3818fa702c3 Mon Sep 17 00:00:00 2001 From: Kelly Choyce-Dwan Date: Mon, 8 Feb 2021 16:11:34 +0000 Subject: [PATCH] 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. git-svn-id: https://develop.svn.wordpress.org/trunk@50237 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/list-tables.css | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/wp-admin/css/list-tables.css b/src/wp-admin/css/list-tables.css index 7e870d39a8..283afbf977 100644 --- a/src/wp-admin/css/list-tables.css +++ b/src/wp-admin/css/list-tables.css @@ -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; }