Make WordPress Core

Changeset 11517


Ignore:
Timestamp:
06/04/2009 02:08:34 AM (16 years ago)
Author:
azaozz
Message:

Add gray background to inactive rows on plugins screen

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/css/colors-classic.css

    r11445 r11517  
    588588#all-plugins-table .inactive th,
    589589#all-plugins-table .inactive td,
    590 #all-plugins-table .inactive a {
    591     color: #666;
     590tr.inactive + tr.plugin-update-tr .plugin-update {
     591    background-color: #eee;
    592592}
    593593
     
    665665}
    666666
    667 #update-nag, .plugin-update {
     667#update-nag {
    668668    background-color: #fffeeb;
    669669    border-color: #ccc;
  • trunk/wp-admin/css/colors-fresh.css

    r11445 r11517  
    583583#all-plugins-table .inactive th,
    584584#all-plugins-table .inactive td,
    585 #all-plugins-table .inactive a {
    586     color: #666;
     585tr.inactive + tr.plugin-update-tr .plugin-update {
     586    background-color: #eee;
    587587}
    588588
     
    660660}
    661661
    662 #update-nag, .plugin-update {
     662#update-nag {
    663663    background-color: #fffeeb;
    664664    border-color: #ccc;
  • trunk/wp-admin/includes/update.php

    r11450 r11517  
    158158    $details_url = admin_url('plugin-install.php?tab=plugin-information&plugin=' . $r->slug . '&TB_iframe=true&width=600&height=800');
    159159
    160     echo '<tr><td colspan="3" class="plugin-update"><div class="update-message">';
     160    echo '<tr class="plugin-update-tr"><td colspan="3" class="plugin-update"><div class="update-message">';
    161161    if ( ! current_user_can('update_plugins') )
    162162        printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s Details</a>.'), $plugin_name, esc_url($details_url), esc_attr($plugin_name), $r->new_version );
  • trunk/wp-includes/script-loader.php

    r11516 r11517  
    422422
    423423    // all colors stylesheets need to have the same query strings (cache manifest compat)
    424     $colors_version = '20090522';
     424    $colors_version = '20090603';
    425425
    426426    $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20090522' );
Note: See TracChangeset for help on using the changeset viewer.