Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv30984
Modified Files:
serendipity_admin_plugins.inc.php
Log Message:
Make the plugin table look better
Index: serendipity_admin_plugins.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_admin_plugins.inc.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- serendipity_admin_plugins.inc.php 16 Jul 2003 12:03:22 -0000 1.7
+++ serendipity_admin_plugins.inc.php 20 Aug 2003 16:03:44 -0000 1.8
@@ -197,8 +197,8 @@
<br />
<br />
- <table border="1" cellpadding="5">
- <tr>
+ <table border="0" cellpadding="5" cellspacing="0">
+ <tr style="font-size: 10pt">
<th> </th>
<th><?php echo TITLE; ?></th>
<th><?php echo PLUGIN; ?></th>
@@ -262,17 +262,17 @@
$movedown = ($moveup != '' ? ' ' : '') . '<a href="?serendipity[adminModule]=plugins&submit=move+down&serendipity[plugin_to_move]=' . $key . '">' . DOWN . '</a>';
}
?>
- <tr>
- <td>
+ <tr style="font-size: 10pt">
+ <td style="border-bottom: 1px solid #000000">
<div>
<input type="checkbox" name="serendipity[plugin_to_remove][]" value="<?php echo $plugin_data['name']; ?>">
</div>
</td>
- <td><?php echo $title; ?></td>
- <td><?php echo $name; ?></td>
- <td><?php echo $desc; ?></td>
- <td>
+ <td style="border-bottom: 1px solid #000000"><?php echo $title; ?></td>
+ <td style="border-bottom: 1px solid #000000"><?php echo $name; ?></td>
+ <td style="border-bottom: 1px solid #000000"><?php echo $desc; ?></td>
+ <td style="border-bottom: 1px solid #000000">
<div><?php echo $place . $moveup . $movedown; ?></div>
</td>
</tr>
|