mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 09:37:42 +01:00
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:
parent
b051f0f6c8
commit
b548119d99
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
2
wp-admin/css/wp-admin-rtl.min.css
vendored
2
wp-admin/css/wp-admin-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
2
wp-admin/css/wp-admin.min.css
vendored
2
wp-admin/css/wp-admin.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user