Ticket #6275: 6275.diff
| File 6275.diff, 1.9 kB (added by iammattthomas, 8 months ago) |
|---|
-
wp-admin/wp-admin.css
old new 1459 1459 1460 1460 .hide-if-no-js { 1461 1461 display: none; 1462 } 1463 1464 .status * { 1465 line-height: 16px; 1466 display: block; 1467 padding-left: 18px; 1468 } 1469 1470 th.status { 1471 padding-left: 28px; 1472 } 1473 1474 .status .active { 1475 background: url(images/active.png) center left no-repeat; 1462 1476 } -
wp-admin/plugins.php
old new 106 106 <th><?php _e('Plugin'); ?></th> 107 107 <th class="num"><?php _e('Version'); ?></th> 108 108 <th><?php _e('Description'); ?></th> 109 <th ><?php _e('Status') ?></th>109 <th class="status"><?php _e('Status') ?></th> 110 110 <th class="action-links"><?php _e('Action'); ?></th> 111 111 </tr> 112 112 </thead> … … 147 147 <td class='desc'><p>{$plugin_data['Description']}$author</p></td> 148 148 <td class='status'>"; 149 149 if ( is_plugin_active($plugin_file) ) 150 echo __(' Active');150 echo __('<span class="active">Active</span>'); 151 151 else 152 _e(' Inactive');152 _e('<span class="inactive">Inactive</span>'); 153 153 echo "</td> 154 154 <td class='togl action-links'>$toggle"; 155 155 if ( !empty($action_links) ) -
wp-admin/css/global.css
old new 117 117 } 118 118 119 119 .widefat td { 120 padding: 7px 15px 6px 10px;120 padding: 7px 15px 9px 10px; 121 121 vertical-align: top; 122 122 } 123 123 -
wp-admin/css/colors-fresh.css
old new 380 380 } 381 381 382 382 #plugins .active { 383 background-color: # EAF3FA;383 background-color: #e7f7d3; 384 384 } 385 385 386 386 #plugins .togl {
