Changeset 7518
- Timestamp:
- 03/26/2008 04:23:02 AM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-classic.css
r7428 r7518 407 407 } 408 408 409 #plugins .active,.checkbox, .side-info, #your-profile #rich_editing {409 .checkbox, .side-info, #your-profile #rich_editing { 410 410 background-color: #fff; 411 } 412 413 #plugins .active { 414 background-color: #BBEEBB; 411 415 } 412 416 … … 420 424 421 425 #plugins tr { 422 background-color: #f 0f0f0;426 background-color: #fff; 423 427 } 424 428 -
trunk/wp-admin/css/colors-fresh.css
r7495 r7518 376 376 } 377 377 378 #plugins .active, .checkbox, .side-info, #your-profile #rich_editing { 379 background-color: #fff; 378 .checkbox, .side-info, #your-profile #rich_editing { 379 background-color: #fff; 380 } 381 382 #plugins .active { 383 background-color: #BBEEBB; 380 384 } 381 385 … … 389 393 390 394 #plugins tr { 391 background-color: #f 0f0f0;395 background-color: #fff; 392 396 } 393 397 -
trunk/wp-admin/plugins.php
r7517 r7518 107 107 <th class="num"><?php _e('Version'); ?></th> 108 108 <th><?php _e('Description'); ?></th> 109 <th><?php _e('Status') ?></th> 109 110 <th class="action-links"><?php _e('Action'); ?></th> 110 111 </tr> … … 117 118 $style = ''; 118 119 119 if ( is_plugin_active($plugin_file) ) {120 if ( is_plugin_active($plugin_file) ) { 120 121 $action_links[] = "<a href='" . wp_nonce_url("plugins.php?action=deactivate&plugin=$plugin_file", 'deactivate-plugin_' . $plugin_file) . "' title='".__('Deactivate this plugin')."' class='delete'>".__('Deactivate')."</a>"; 121 122 $style = 'active'; … … 145 146 <td class='vers'>{$plugin_data['Version']}</td> 146 147 <td class='desc'><p>{$plugin_data['Description']}$author</p></td> 148 <td class='status'>"; 149 if ( is_plugin_active($plugin_file) ) 150 echo "<img alt='" . __('Active Plugin') . "' src='images/active.png' />" . __('Active'); 151 else 152 _e('Inactive'); 153 echo "</td> 147 154 <td class='togl action-links'>$toggle"; 148 155 if ( !empty($action_links) )
Note: See TracChangeset
for help on using the changeset viewer.