Admin: Reskin - update active plugin colors.

Update the background and border colors to new admin color scheme on active plugin highlighting.

Props fabiankaegy, r1k0, shailu25, noruzzaman, rahultank, joedolson.
Fixes #64745.
Built from https://develop.svn.wordpress.org/trunk@61780


git-svn-id: http://core.svn.wordpress.org/trunk@61086 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
joedolson
2026-03-02 00:35:44 +00:00
parent 22b8dc66bc
commit abdf1dfea1
5 changed files with 13 additions and 13 deletions

View File

@@ -258,7 +258,7 @@
.vim-current,
.vim-current th,
.vim-current td {
background-color: #f0f6fc !important;
background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08) !important;
}
th .comment-grey-bubble {
@@ -1271,7 +1271,7 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
.plugins .active td,
.plugins .active th {
background-color: #f0f6fc;
background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08);
}
.plugins .update th,
@@ -1312,7 +1312,7 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
.plugins .active th.check-column,
.plugin-update-tr.active td {
border-right: 4px solid #72aee6;
border-right: 4px solid var(--wp-admin-theme-color);
}
.wp-list-table.plugins .plugin-title,
@@ -2331,8 +2331,8 @@ div.action-links,
.plugins .active.update + .plugin-update-tr:before,
.plugins .active.updated + .plugin-update-tr:before {
background-color: #f0f6fc;
border-right: 4px solid #72aee6;
background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08);
border-right: 4px solid var(--wp-admin-theme-color);
}
.plugins .plugin-update-tr .update-message {

File diff suppressed because one or more lines are too long

View File

@@ -257,7 +257,7 @@
.vim-current,
.vim-current th,
.vim-current td {
background-color: #f0f6fc !important;
background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08) !important;
}
th .comment-grey-bubble {
@@ -1270,7 +1270,7 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
.plugins .active td,
.plugins .active th {
background-color: #f0f6fc;
background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08);
}
.plugins .update th,
@@ -1311,7 +1311,7 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
.plugins .active th.check-column,
.plugin-update-tr.active td {
border-left: 4px solid #72aee6;
border-left: 4px solid var(--wp-admin-theme-color);
}
.wp-list-table.plugins .plugin-title,
@@ -2330,8 +2330,8 @@ div.action-links,
.plugins .active.update + .plugin-update-tr:before,
.plugins .active.updated + .plugin-update-tr:before {
background-color: #f0f6fc;
border-left: 4px solid #72aee6;
background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08);
border-left: 4px solid var(--wp-admin-theme-color);
}
.plugins .plugin-update-tr .update-message {

File diff suppressed because one or more lines are too long