Reduce dependency on inline style. Props mdawaffe. fixes #6228

git-svn-id: https://develop.svn.wordpress.org/trunk@7304 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2008-03-14 23:58:31 +00:00
parent bef6abf768
commit 872d374ece
29 changed files with 127 additions and 95 deletions

View File

@@ -83,7 +83,7 @@ if (empty($plugins)) {
?>
<div class="tablenav">
<div style="float: left">
<div class="alignleft">
<?php
$active = get_option('active_plugins');
$inactive = get_option('deactivated_plugins');
@@ -98,16 +98,16 @@ if (empty($plugins)) {
} // endif active/inactive plugin check
?>
</div>
<br style="clear:both;">
<br class="clear" />
</div>
<br style="clear:both;">
<br class="clear" />
<table class="widefat">
<thead>
<tr>
<th><?php _e('Plugin'); ?></th>
<th style="text-align: center"><?php _e('Version'); ?></th>
<th class="num"><?php _e('Version'); ?></th>
<th><?php _e('Description'); ?></th>
<th <?php if ( current_user_can('edit_plugins') ) echo ' colspan="2"'; ?>><?php _e('Action'); ?></th>
</tr>