Multisite: Make site status classes available to other elements.

Fixes a regression introduced in [31181], where links to user's site would not
have a colored background based on their status anymore.

Fixed during WordCamp Switzerland Contributor Day.

Props psoluch.
Fixes #33595.


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


git-svn-id: http://core.svn.wordpress.org/trunk@34320 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Konstantin Obenland 2015-09-20 12:53:27 +00:00
parent b051f0f6c8
commit b548119d99
5 changed files with 11 additions and 11 deletions

View File

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

View File

@ -1618,16 +1618,16 @@ div.action-links,
/* ms */
/* Background Color for Site Status */
.wp-list-table tr.site-deleted {
.wp-list-table .site-deleted {
background: #ff8573;
}
.wp-list-table tr.site-spammed {
.wp-list-table .site-spammed {
background: #faafaa;
}
.wp-list-table tr.site-archived {
.wp-list-table .site-archived {
background: #ffebe8;
}
.wp-list-table tr.site-mature {
.wp-list-table .site-mature {
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
*/
$wp_version = '4.4-alpha-34355';
$wp_version = '4.4-alpha-34356';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.