Make WordPress Core

Changeset 35692


Ignore:
Timestamp:
11/18/2015 09:58:18 PM (8 years ago)
Author:
jeremyfelt
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/list-tables.css

    r35681 r35692  
    16631663/* ms */
    16641664/* Background Color for Site Status */
    1665 .wp-list-table .site-deleted {
     1665.wp-list-table .site-deleted,
     1666.wp-list-table tr.site-deleted {
    16661667    background: #ff8573;
    16671668}
    1668 .wp-list-table .site-spammed {
     1669.wp-list-table .site-spammed,
     1670.wp-list-table tr.site-spammed {
    16691671    background: #faafaa;
    16701672}
    1671 .wp-list-table .site-archived {
     1673.wp-list-table .site-archived,
     1674.wp-list-table tr.site-archived {
    16721675    background: #ffebe8;
    16731676}
    1674 .wp-list-table .site-mature {
     1677.wp-list-table .site-mature,
     1678.wp-list-table tr.site-mature {
    16751679    background: #fecac2;
    16761680}
Note: See TracChangeset for help on using the changeset viewer.