Changeset 11391
- Timestamp:
- 05/19/2009 01:27:34 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-classic.css
r11311 r11391 383 383 } 384 384 385 .submitbox .submitdelete, a.delete { 385 .plugins a.delete:hover, 386 .submitbox .submitdelete, 387 a.delete { 386 388 color: #f00; 387 389 border-bottom-color: #f00; … … 419 421 .updated, 420 422 .login #login_error, 421 .login .message { 423 .login .message, 424 .update-message { 422 425 background-color: #ffffe0; 423 426 border-color: #e6db55; … … 466 469 #media-upload a.del-link, 467 470 #media-upload a.delete, 468 .ui-tabs-nav a { 471 .ui-tabs-nav a, 472 .plugins a.delete { 469 473 color: #1c6280; 470 474 } … … 575 579 } 576 580 581 #all-plugins-table .inactive, 582 #all-plugins-table .inactive th, 583 #all-plugins-table .inactive td { 584 color: #777; 585 } 586 577 587 .plugins .active, 578 588 .plugins .active th, 579 589 .plugins .active td { 580 background-color: #e7f7d3; 590 color: #000; 591 background-color: #f5f5f5; 581 592 } 582 593 -
trunk/wp-admin/css/colors-fresh.css
r11289 r11391 379 379 } 380 380 381 .submitbox .submitdelete, a.delete { 381 .plugins a.delete:hover, 382 .submitbox .submitdelete, 383 a.delete { 382 384 color: #f00; 383 385 border-bottom-color: #f00; … … 415 417 .updated, 416 418 .login #login_error, 417 .login .message { 419 .login .message, 420 .update-message { 418 421 background-color: #ffffe0; 419 422 border-color: #e6db55; … … 462 465 #media-upload a.del-link, 463 466 #media-upload a.delete, 464 .ui-tabs-nav a { 467 .ui-tabs-nav a, 468 .plugins a.delete { 465 469 color: #21759b; 466 470 } … … 570 574 } 571 575 576 #all-plugins-table .inactive, 577 #all-plugins-table .inactive th, 578 #all-plugins-table .inactive td { 579 color: #777; 580 } 581 572 582 .plugins .active, 573 583 .plugins .active th, 574 584 .plugins .active td { 575 background-color: #e7f7d3; 585 color: #000; 586 background-color: #f5f5f5; 576 587 } 577 588 -
trunk/wp-admin/includes/update.php
r11383 r11391 158 158 $details_url = admin_url('plugin-install.php?tab=plugin-information&plugin=' . $r->slug . '&TB_iframe=true&width=600&height=800'); 159 159 160 echo '<tr><td colspan=" 5" class="plugin-update">';160 echo '<tr><td colspan="3" class="plugin-update"><div class="update-message">'; 161 161 if ( ! current_user_can('update_plugins') ) 162 162 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 ); … … 168 168 do_action( "in_plugin_update_message-$file", $plugin_data, $r ); 169 169 170 echo '</ td></tr>';170 echo '</div></td></tr>'; 171 171 } 172 172 add_action( 'after_plugin_row', 'wp_plugin_update_row', 10, 2 ); -
trunk/wp-admin/plugins.php
r11389 r11391 355 355 if ( empty($plugins) ) { 356 356 echo '<tr> 357 <td colspan=" 6">' . __('No plugins to show') . '</td>357 <td colspan="3">' . __('No plugins to show') . '</td> 358 358 </tr>'; 359 359 } … … 380 380 <tr class='$class'> 381 381 <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'>"; 383 393 $i = 0; 384 394 echo '<div class="row-actions-visible">'; … … 388 398 echo "<span class='$action'>$link$sep</span>"; 389 399 } 390 echo '</div>'; 391 echo "</td> 392 <td class='desc'><p>{$plugin_data['Description']}</p>"; 400 echo "</div></td> 401 <td class='desc'>"; 393 402 $plugin_meta = array(); 394 403 if ( !empty($plugin_data['Version']) ) … … 405 414 $plugin_meta = apply_filters('plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $context); 406 415 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"; 412 418 } 413 419 ?> -
trunk/wp-admin/wp-admin.css
r11372 r11391 44 44 45 45 .plugins .desc p { 46 margin: 0 0 10px;46 margin: 0 0 8px; 47 47 } 48 48 … … 62 62 .plugins .action-links { 63 63 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; 64 85 } 65 86 … … 751 772 } 752 773 753 #update-nag, 754 .plugin-update { 774 #update-nag { 755 775 line-height: 29px; 756 776 font-size: 12px; … … 763 783 } 764 784 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; 768 802 } 769 803 … … 795 829 .row-actions-visible { 796 830 padding: 2px 0 0; 831 cursor: pointer; 797 832 } 798 833 -
trunk/wp-includes/script-loader.php
r11388 r11391 415 415 $rtl_styles = array( 'global', 'colors', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'plugin-install', 'farbtastic' ); 416 416 417 $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '2009051 4' );417 $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20090518' ); 418 418 $styles->add_data( 'wp-admin', 'rtl', '/wp-admin/rtl.css' ); 419 419 … … 422 422 423 423 // Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string. 424 $styles->add( 'colors', true, array(), '2009051 4' );424 $styles->add( 'colors', true, array(), '20090518' ); 425 425 $styles->add( 'colors-fresh', '/wp-admin/css/colors-fresh.css', array(), '20090514'); // for login.php. Is there a better way? 426 426 $styles->add_data( 'colors-fresh', 'rtl', true );
Note: See TracChangeset
for help on using the changeset viewer.