Update of /cvsroot/php-blog/serendipity/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21766/include
Modified Files:
functions_entries.inc.php functions_installer.inc.php
Log Message:
- Add "serendipityPrettyButton" CSS class, which will make a very pretty button, soon to be tweaked -- don't worry :)
Index: functions_installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/functions_installer.inc.php,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- functions_installer.inc.php 19 Jan 2005 10:22:11 -0000 1.29
+++ functions_installer.inc.php 21 Jan 2005 20:55:52 -0000 1.30
@@ -402,7 +402,7 @@
if (!$noForm) {
?>
- <input type="submit" value="<?php echo CHECK_N_SAVE; ?>" />
+ <input type="submit" value="<?php echo CHECK_N_SAVE; ?>" class="serendipityPrettyButton" />
</div>
</form>
<?php
Index: functions_entries.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/functions_entries.inc.php,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- functions_entries.inc.php 21 Jan 2005 10:19:06 -0000 1.47
+++ functions_entries.inc.php 21 Jan 2005 20:55:51 -0000 1.48
@@ -1396,8 +1396,8 @@
<input id="checkbox_moderate_comments" type="checkbox" name="serendipity[moderate_comments]" value="true" <?php echo $moderate_comments; ?> /><label for="checkbox_moderate_comments"><?php echo COMMENTS_MODERATE; ?></label>
</td>
<td align="right" rowspan="2" valign="middle" width="30%">
- <input accesskey="p" type="submit" value="- <?php echo PREVIEW; ?> -" style="margin: 2px; width: 200px; text-align: center" onclick="document.forms['serendipityEntry'].elements['serendipity[preview]'].value='true';" /><br />
- <input accesskey="s" type="submit" onclick="return checkSave();" value="- <?php echo SAVE; ?> -" style="font-weight: bold; margin: 2px; width: 200px; text-align: center" />
+ <input accesskey="p" type="submit" value="- <?php echo PREVIEW; ?> -" class="serendipityPrettyButton" style="width: 150px" onclick="document.forms['serendipityEntry'].elements['serendipity[preview]'].value='true';" /><br />
+ <input accesskey="s" type="submit" onclick="return checkSave();" value="- <?php echo SAVE; ?> -" class="serendipityPrettyButton" style="width: 150px" />
</td>
</tr>
</table>
|