Multisite: Re-Account for striped table rows with .site-*
classes.
[34356] removed the table row specificity on rules for `.site-deleted`, `.site-spammed`, `.site-archived`, and `.site-matured` so that the styles would be properly applied to other elements. Now, the zebra striping rules override these styles on even rows. We can account for `tr` specific and more generic applications of these classes. Fixes #33595. git-svn-id: https://develop.svn.wordpress.org/trunk@35692 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
23fc24278c
commit
8c5ce610b3
@ -1662,16 +1662,20 @@ div.action-links,
|
||||
|
||||
/* ms */
|
||||
/* Background Color for Site Status */
|
||||
.wp-list-table .site-deleted {
|
||||
.wp-list-table .site-deleted,
|
||||
.wp-list-table tr.site-deleted {
|
||||
background: #ff8573;
|
||||
}
|
||||
.wp-list-table .site-spammed {
|
||||
.wp-list-table .site-spammed,
|
||||
.wp-list-table tr.site-spammed {
|
||||
background: #faafaa;
|
||||
}
|
||||
.wp-list-table .site-archived {
|
||||
.wp-list-table .site-archived,
|
||||
.wp-list-table tr.site-archived {
|
||||
background: #ffebe8;
|
||||
}
|
||||
.wp-list-table .site-mature {
|
||||
.wp-list-table .site-mature,
|
||||
.wp-list-table tr.site-mature {
|
||||
background: #fecac2;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user