Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv26452
Modified Files:
serendipity_admin_installer.inc.php
Log Message:
Trying not to use static colors in the installer, so that it will be usable on black/dark themes to
Index: serendipity_admin_installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_admin_installer.inc.php,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- serendipity_admin_installer.inc.php 9 Aug 2003 12:41:39 -0000 1.26
+++ serendipity_admin_installer.inc.php 9 Aug 2003 12:45:04 -0000 1.27
@@ -162,7 +162,7 @@
<tr>
<td>
- <table width="100%" cellspacing="2" cellpadding="3" style="display: none;" id="el<?php echo $el_count; ?>">
+ <table width="100%" cellspacing="0" cellpadding="3" style="display: none;" id="el<?php echo $el_count; ?>">
<?php
for ($x=0; $x<count($value); $x++) {
if (@is_array($from)) {
@@ -170,13 +170,13 @@
}
?>
<tr>
- <td align="left" bgcolor="#D8D8D8" valign="top">
+ <td style="border-bottom: 1px #000000 solid" align="left" valign="top">
<strong><span style="font-size: 9pt"><?php echo $value[$x]['longname']; ?></span></strong>
<br />
<span style="color: #5E7A94; font-size: 8pt;"><?php echo '(' . $value[$x]['type'] . ') ' . $value[$x]['desc']; ?></span>
</th>
- <td align="left" bgcolor="#E0E0E0" valign="top" width="1">
+ <td style="border-bottom: 1px #000000 solid; font-size: 8pt" align="left" valign="middle" width="1">
<?php echo serendipity_guessInput($value[$x]['type'], $value[$x]['name'], $from[$value[$x]['name']], $value[$x]['default']); ?>
</th>
</tr>
|