]> git.decadent.org.uk Git - maypole.git/commitdiff
Changed CSS buttons to POST buttons
authorSimon Flack <sf@flacks.net>
Mon, 25 Oct 2004 10:24:06 +0000 (10:24 +0000)
committerSimon Flack <sf@flacks.net>
Mon, 25 Oct 2004 10:24:06 +0000 (10:24 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@261 48953598-375a-da11-a14b-00016c27c3ee

templates/factory/macros
templates/maypole.css

index 7aead21b87ae4c5bd369ca5f860cabad739847d5..ddd9ffbb10f47cfdb1dd945f9c62dc5f8c843c03 100644 (file)
@@ -81,8 +81,8 @@ This is a generic button, which performs an action on an object.
 
 #%]
 [% MACRO button(obj, action) BLOCK; %]
-<a class="action" href="[% base %]/[% obj.table %]/[% action %]/[% obj.id %]">
-    [% action %]</a>
+<form class="actionform" action="[% base %]/[% obj.table %]/[% action %]/[% obj.id %]" method=POST>
+    <input id="actionbutton" type="submit" value="[% action %]" /></form>
 [% END %]
 [%#
 
index 93bdce717a7fb3fa5f2f8c3db2dae8fe36f8f36a..c7697e2597242df6799d7ac84cf705fbc2be4ad8 100644 (file)
@@ -306,6 +306,25 @@ label .field {
     background-color: #7d95b5;
 }
 
+.actionform {
+    display: inline;
+}
+
+#actionbutton {
+    height: 16px;
+    width: 40px;
+    font-family: sans-serif;
+    font-size: 10px;
+    border: 1px outset;
+    background-color: #fff;
+    margin-bottom: 0px;
+}
+
+#actionbutton:hover {
+    color: #fff;
+    background-color: #7d95b5;
+}
+
 .pager {
     font: 11px Arial, Helvetica, sans-serif;
     text-align: center;