From fe1eb978328b62ccd0052a376b87b6b867dc531a Mon Sep 17 00:00:00 2001
From: "Matteo Nastasi (mop)" <nastasi@alternativeoutput.it>
Date: Mon, 15 Jan 2007 12:49:58 +0000
Subject: [PATCH] css skinned buttons

---
 web/brisk.phh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/web/brisk.phh b/web/brisk.phh
index df0c631..467680a 100644
--- a/web/brisk.phh
+++ b/web/brisk.phh
@@ -783,12 +783,12 @@ function table_act_content($isstanding, $sitted, $table, $cur_table)
 
   if ($isstanding) {
     if ($sitted < PLAYERS_N) {
-      $ret = sprintf('<input type=\\"button\\" name=\\"xhenter%d\\"  value=\\"Mi siedo.\\" onclick=\\"act_sitdown(%d);\\">', $table, $table);
+      $ret = sprintf('<input type=\\"button\\" class=\\"button\\" name=\\"xhenter%d\\"  value=\\"Mi siedo.\\" onclick=\\"act_sitdown(%d);\\">', $table, $table);
     }
   }
   else {
     if ($table == $cur_table)
-      $ret = sprintf('<input type=\\"button\\" name=\\"xwakeup\\"  value=\\"Mi alzo.\\" onclick=\\"act_wakeup();\\">');
+      $ret = sprintf('<input type=\\"button\\" class=\\"button\\" name=\\"xwakeup\\"  value=\\"Mi alzo.\\" onclick=\\"act_wakeup();\\">');
     else
       $ret = "";
   }
@@ -864,7 +864,7 @@ function standup_content(&$bri, $user)
   }
   $content .= '</table>';
 	
-  $content2 = '<input name=\\"logout\\" value=\\"Esco.\\" onclick=\\"window.onunload = null; act_logout();\\" type=\\"button\\">';
+  $content2 = '<input class=\\"button\\" name=\\"logout\\" value=\\"Esco.\\" onclick=\\"window.onunload = null; act_logout();\\" type=\\"button\\">';
   $ret .= sprintf('$("standup").innerHTML = "%s";  $("esco").innerHTML = "%s";', 
 		  $content, $content2);
 
-- 
2.17.1