Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv31848
Modified Files:
serendipity_admin_installer.inc.php
serendipity_admin_plugins.inc.php
Log Message:
Move font-sizes to be template based, not static
Index: serendipity_admin_installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_admin_installer.inc.php,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- serendipity_admin_installer.inc.php 20 Aug 2003 15:59:06 -0000 1.31
+++ serendipity_admin_installer.inc.php 20 Aug 2003 16:08:32 -0000 1.32
@@ -149,7 +149,7 @@
<input type="hidden" name="installAction" value="check" />
<br />
<div align="right">
- <a style="border:0; text-decoration: none" href="#" onclick="showConfigAll(<?php echo count($t); ?>)" title="<?php echo TOGGLE_ALL; ?>"><img src="pixel/plus.png" id="optionall" alt="+/-" border="0" /> <span style="font-size: 10pt"><?php echo TOGGLE_ALL; ?></a></a><br />
+ <a style="border:0; text-decoration: none" href="#" onclick="showConfigAll(<?php echo count($t); ?>)" title="<?php echo TOGGLE_ALL; ?>"><img src="pixel/plus.png" id="optionall" alt="+/-" border="0" /> <?php echo TOGGLE_ALL; ?></a></a><br />
</div>
<?php
$el_count = 0;
@@ -159,14 +159,14 @@
<table width="100%" cellspacing="2">
<tr>
<th align="left" colspan="2" style="padding-left: 15px;">
- <a style="border:0; text-decoration: none" href="#" onclick="showConfig('el<?php echo $el_count; ?>'); return false" title="<?php echo TOGGLE_OPTION; ?>"><img src="pixel/plus.png" id="optionel<?php echo $el_count; ?>" alt="+/-" border="0" /> <span style="font-size: 10pt"><?php echo $key; ?></span></a></th>
+ <a style="border:0; text-decoration: none" href="#" onclick="showConfig('el<?php echo $el_count; ?>'); return false" title="<?php echo TOGGLE_OPTION; ?>"><img src="pixel/plus.png" id="optionel<?php echo $el_count; ?>" alt="+/-" border="0" /> <?php echo $key; ?></a></th>
</tr>
<tr>
<td>
<table width="100%" cellspacing="0" cellpadding="3" style="display: none;" id="el<?php echo $el_count; ?>">
<tr>
- <td style="padding-left: 20px; font-size: 10pt" colspan="2">
+ <td style="padding-left: 20px;" colspan="2">
<?php echo $t['descriptions'][$key] ?>
</td>
</tr>
@@ -180,7 +180,7 @@
?>
<tr>
<td style="border-bottom: 1px #000000 solid" align="left" valign="top">
- <strong><span style="font-size: 9pt"><?php echo $value[$x]['longname']; ?></span></strong>
+ <strong><?php echo $value[$x]['longname']; ?></strong>
<br />
<span style="color: #5E7A94; font-size: 8pt;"><?php echo '(' . $value[$x]['type'] . ') ' . $value[$x]['desc']; ?></span>
</td>
Index: serendipity_admin_plugins.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_admin_plugins.inc.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- serendipity_admin_plugins.inc.php 20 Aug 2003 16:03:44 -0000 1.8
+++ serendipity_admin_plugins.inc.php 20 Aug 2003 16:08:33 -0000 1.9
@@ -198,7 +198,7 @@
<br />
<table border="0" cellpadding="5" cellspacing="0">
- <tr style="font-size: 10pt">
+ <tr>
<th> </th>
<th><?php echo TITLE; ?></th>
<th><?php echo PLUGIN; ?></th>
@@ -262,7 +262,7 @@
$movedown = ($moveup != '' ? ' ' : '') . '<a href="?serendipity[adminModule]=plugins&submit=move+down&serendipity[plugin_to_move]=' . $key . '">' . DOWN . '</a>';
}
?>
- <tr style="font-size: 10pt">
+ <tr>
<td style="border-bottom: 1px solid #000000">
<div>
<input type="checkbox" name="serendipity[plugin_to_remove][]" value="<?php echo $plugin_data['name']; ?>">
|