From: <var...@us...> - 2009-08-05 15:48:21
|
Revision: 7059 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7059&view=rev Author: vargenau Date: 2009-08-05 15:48:12 +0000 (Wed, 05 Aug 2009) Log Message: ----------- Use CSS to separate buttons Modified Paths: -------------- trunk/lib/plugin/WikiAdminRename.php trunk/themes/gforge/gforge.css Modified: trunk/lib/plugin/WikiAdminRename.php =================================================================== --- trunk/lib/plugin/WikiAdminRename.php 2009-08-05 15:06:15 UTC (rev 7058) +++ trunk/lib/plugin/WikiAdminRename.php 2009-08-05 15:48:12 UTC (rev 7059) @@ -224,7 +224,6 @@ } $buttons = HTML::p(Button('submit:admin_rename[rename]', $button_label, 'wikiadmin'), - HTML::Raw(' '), Button('submit:admin_rename[cancel]', _("Cancel"), 'button')); if ($singlepage === false) { Modified: trunk/themes/gforge/gforge.css =================================================================== --- trunk/themes/gforge/gforge.css 2009-08-05 15:06:15 UTC (rev 7058) +++ trunk/themes/gforge/gforge.css 2009-08-05 15:48:12 UTC (rev 7059) @@ -200,11 +200,15 @@ a.wikiaction, a.wiki-rc-action, a.wikiunsafe, input.wikiaction, input.button, input.wikiadmin { text-decoration: none; - font-family: Verdana, Arial, Helvetica, sans-serif; /* don't wrap text buttons */ white-space: nowrap; } +input.wikiaction, input.button, input.wikiadmin { + margin-right: 1em; + margin-left: 1em; +} + .wikiunsafe { background-color: #fcc; } /* Unknown links */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |