Make WordPress Core

Changeset 11391


Ignore:
Timestamp:
05/19/2009 01:27:34 AM (15 years ago)
Author:
azaozz
Message:

Some more styling for the plugins screen

Location:
trunk
Files:
6 edited

Legend:

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

    r11311 r11391  
    383383}
    384384
    385 .submitbox .submitdelete, a.delete {
     385.plugins a.delete:hover,
     386.submitbox .submitdelete,
     387a.delete {
    386388    color: #f00;
    387389    border-bottom-color: #f00;
     
    419421.updated,
    420422.login #login_error,
    421 .login .message {
     423.login .message,
     424.update-message {
    422425    background-color: #ffffe0;
    423426    border-color: #e6db55;
     
    466469#media-upload a.del-link,
    467470#media-upload a.delete,
    468 .ui-tabs-nav a {
     471.ui-tabs-nav a,
     472.plugins a.delete {
    469473    color: #1c6280;
    470474}
     
    575579}
    576580
     581#all-plugins-table .inactive,
     582#all-plugins-table .inactive th,
     583#all-plugins-table .inactive td {
     584    color: #777;
     585}
     586
    577587.plugins .active,
    578588.plugins .active th,
    579589.plugins .active td {
    580     background-color: #e7f7d3;
     590    color: #000;
     591    background-color: #f5f5f5;
    581592}
    582593
  • trunk/wp-admin/css/colors-fresh.css

    r11289 r11391  
    379379}
    380380
    381 .submitbox .submitdelete, a.delete {
     381.plugins a.delete:hover,
     382.submitbox .submitdelete,
     383a.delete {
    382384    color: #f00;
    383385    border-bottom-color: #f00;
     
    415417.updated,
    416418.login #login_error,
    417 .login .message {
     419.login .message,
     420.update-message {
    418421    background-color: #ffffe0;
    419422    border-color: #e6db55;
     
    462465#media-upload a.del-link,
    463466#media-upload a.delete,
    464 .ui-tabs-nav a {
     467.ui-tabs-nav a,
     468.plugins a.delete {
    465469    color: #21759b;
    466470}
     
    570574}
    571575
     576#all-plugins-table .inactive,
     577#all-plugins-table .inactive th,
     578#all-plugins-table .inactive td {
     579    color: #777;
     580}
     581
    572582.plugins .active,
    573583.plugins .active th,
    574584.plugins .active td {
    575     background-color: #e7f7d3;
     585    color: #000;
     586    background-color: #f5f5f5;
    576587}
    577588
  • trunk/wp-admin/includes/update.php

    r11383 r11391  
    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="5" class="plugin-update">';
     160    echo '<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 );
     
    168168    do_action( "in_plugin_update_message-$file", $plugin_data, $r );
    169169   
    170     echo '</td></tr>';
     170    echo '</div></td></tr>';
    171171}
    172172add_action( 'after_plugin_row', 'wp_plugin_update_row', 10, 2 );
  • trunk/wp-admin/plugins.php

    r11389 r11391  
    355355    if ( empty($plugins) ) {
    356356        echo '<tr>
    357             <td colspan="6">' . __('No plugins to show') . '</td>
     357            <td colspan="3">' . __('No plugins to show') . '</td>
    358358        </tr>';
    359359    }
     
    380380    <tr class='$class'>
    381381        <th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr($plugin_file) . "' /></th>
    382         <td class='plugin-title'><strong>{$plugin_data['Name']}</strong>";
     382        <td class='plugin-title'><strong>{$plugin_data['Name']}</strong></td>
     383        <td class='desc'><p>{$plugin_data['Description']}</p></td>
     384    </tr>\n";
     385
     386        do_action( 'after_plugin_row', $plugin_file, $plugin_data, $context );
     387        do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $context );
     388
     389        echo "
     390    <tr class='$class second'>
     391        <td></td>
     392        <td class='plugin-title'>";
    383393        $i = 0;
    384394        echo '<div class="row-actions-visible">';
     
    388398            echo "<span class='$action'>$link$sep</span>";
    389399        }
    390         echo '</div>';
    391         echo "</td>
    392         <td class='desc'><p>{$plugin_data['Description']}</p>";
     400        echo "</div></td>
     401        <td class='desc'>";
    393402        $plugin_meta = array();
    394403        if ( !empty($plugin_data['Version']) )
     
    405414        $plugin_meta = apply_filters('plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $context);
    406415        echo implode(' | ', $plugin_meta);
    407         echo "</p>";
    408         echo '</td>
    409     </tr>';
    410         do_action( 'after_plugin_row', $plugin_file, $plugin_data, $context );
    411         do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $context );
     416        echo "</p></td>
     417    </tr>\n";
    412418    }
    413419?>
  • trunk/wp-admin/wp-admin.css

    r11372 r11391  
    4444
    4545.plugins .desc p {
    46     margin: 0 0 10px;
     46    margin: 0 0 8px;
    4747}
    4848
     
    6262.plugins .action-links {
    6363    white-space: nowrap;
     64}
     65
     66.plugins .row-actions-visible {
     67    padding: 0;
     68}
     69
     70.widefat tbody.plugins th.check-column {
     71    padding: 7px 0;
     72}
     73
     74.plugins td,
     75.plugins th {
     76    border-bottom: 0 none;
     77    padding: 4px 7px 0;
     78}
     79
     80.plugins .second td,
     81.plugins .second th {
     82    border-bottom-style: solid;
     83    border-bottom-width: 1px;
     84    padding: 0 7px 4px;
    6485}
    6586
     
    751772}
    752773
    753 #update-nag,
    754 .plugin-update {
     774#update-nag {
    755775    line-height: 29px;
    756776    font-size: 12px;
     
    763783}
    764784
    765 .plugin-update {
    766     border-width: 0 0 1px;
    767     border-style: none none solid;
     785.plugins .plugin-update {
     786    text-align: center;
     787    padding: 0;
     788}
     789
     790.plugin-update .update-message {
     791    padding: 3px 7px;
     792    margin: 2px 20px 10px;
     793}
     794
     795.update-message {
     796    border-width: 1px;
     797    border-style: solid;
     798    -moz-border-radius: 3px;
     799    -khtml-border-radius: 3px;
     800    -webkit-border-radius: 3px;
     801    border-radius: 3px;
    768802}
    769803
     
    795829.row-actions-visible {
    796830    padding: 2px 0 0;
     831    cursor: pointer;
    797832}
    798833
  • trunk/wp-includes/script-loader.php

    r11388 r11391  
    415415    $rtl_styles = array( 'global', 'colors', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'plugin-install', 'farbtastic' );
    416416
    417     $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20090514' );
     417    $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20090518' );
    418418    $styles->add_data( 'wp-admin', 'rtl', '/wp-admin/rtl.css' );
    419419
     
    422422
    423423    // Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
    424     $styles->add( 'colors', true, array(), '20090514' );
     424    $styles->add( 'colors', true, array(), '20090518' );
    425425    $styles->add( 'colors-fresh', '/wp-admin/css/colors-fresh.css', array(), '20090514'); // for login.php.  Is there a better way?
    426426    $styles->add_data( 'colors-fresh', 'rtl', true );
Note: See TracChangeset for help on using the changeset viewer.