]> git.decadent.org.uk Git - maypole.git/commitdiff
Fixes to XHTML & CSS compability.
authorMarcus Ramberg <mramberg@cpan.org>
Mon, 25 Oct 2004 13:59:07 +0000 (13:59 +0000)
committerMarcus Ramberg <mramberg@cpan.org>
Mon, 25 Oct 2004 13:59:07 +0000 (13:59 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@265 48953598-375a-da11-a14b-00016c27c3ee

templates/factory/macros
templates/maypole.css

index ddd9ffbb10f47cfdb1dd945f9c62dc5f8c843c03..357c32981ec708da0829db2b4de4e3c58d134d9e 100644 (file)
@@ -81,8 +81,8 @@ This is a generic button, which performs an action on an object.
 
 #%]
 [% MACRO button(obj, action) BLOCK; %]
-<form class="actionform" action="[% base %]/[% obj.table %]/[% action %]/[% obj.id %]" method=POST>
-    <input id="actionbutton" type="submit" value="[% action %]" /></form>
+<form class="actionform" action="[% base %]/[% obj.table %]/[% action %]/[% obj.id %]" method="post">
+<div class="field"><input class="actionbutton" type="submit" value="[% action %]" /></div></form>
 [% END %]
 [%#
 
index c7697e2597242df6799d7ac84cf705fbc2be4ad8..f20b5877ee57900188ffed1f1d5e32f1ab5177d0 100644 (file)
@@ -290,11 +290,6 @@ label .field {
 
 .error { color: #d00; }
 
-.actions {
-    white-space: nowrap;
-    background-color: #fff;
-}
-
 .action {
     border: 1px outset #7d95b5;
     style:block;
@@ -310,7 +305,7 @@ label .field {
     display: inline;
 }
 
-#actionbutton {
+.actionbutton {
     height: 16px;
     width: 40px;
     font-family: sans-serif;
@@ -320,11 +315,20 @@ label .field {
     margin-bottom: 0px;
 }
 
-#actionbutton:hover {
+.actionbutton:hover {
     color: #fff;
     background-color: #7d95b5;
 }
 
+.actions {
+white-space: nowrap;
+}
+
+.field {
+    display:inline;
+    background-color: #fff;
+}
+
 .pager {
     font: 11px Arial, Helvetica, sans-serif;
     text-align: center;