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.

Built from https://develop.svn.wordpress.org/trunk@35692


git-svn-id: http://core.svn.wordpress.org/trunk@35656 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Jeremy Felt 2015-11-18 21:59:26 +00:00
parent b17cb707dc
commit f7b29ecd1b
5 changed files with 19 additions and 11 deletions

View File

@ -1662,16 +1662,20 @@ div.action-links,
/* ms */ /* ms */
/* Background Color for Site Status */ /* Background Color for Site Status */
.wp-list-table .site-deleted { .wp-list-table .site-deleted,
.wp-list-table tr.site-deleted {
background: #ff8573; background: #ff8573;
} }
.wp-list-table .site-spammed { .wp-list-table .site-spammed,
.wp-list-table tr.site-spammed {
background: #faafaa; background: #faafaa;
} }
.wp-list-table .site-archived { .wp-list-table .site-archived,
.wp-list-table tr.site-archived {
background: #ffebe8; background: #ffebe8;
} }
.wp-list-table .site-mature { .wp-list-table .site-mature,
.wp-list-table tr.site-mature {
background: #fecac2; background: #fecac2;
} }

View File

@ -1662,16 +1662,20 @@ div.action-links,
/* ms */ /* ms */
/* Background Color for Site Status */ /* Background Color for Site Status */
.wp-list-table .site-deleted { .wp-list-table .site-deleted,
.wp-list-table tr.site-deleted {
background: #ff8573; background: #ff8573;
} }
.wp-list-table .site-spammed { .wp-list-table .site-spammed,
.wp-list-table tr.site-spammed {
background: #faafaa; background: #faafaa;
} }
.wp-list-table .site-archived { .wp-list-table .site-archived,
.wp-list-table tr.site-archived {
background: #ffebe8; background: #ffebe8;
} }
.wp-list-table .site-mature { .wp-list-table .site-mature,
.wp-list-table tr.site-mature {
background: #fecac2; background: #fecac2;
} }

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.4-beta4-35691'; $wp_version = '4.4-beta4-35692';
/** /**
* 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.