summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorarun <arun@nubati.net>2007-04-08 20:08:24 +0000
committerarun <arun>2007-04-08 20:08:24 +0000
commit330c4ad8114934ccd906eee471c9986e27549c47 (patch)
tree14e9f712ab54f3a7c26aa1aefba8eba780985484 /index.php
parentee59b6b39abc3691431b027785341aa308d1313c (diff)
downloade-DoKo-330c4ad8114934ccd906eee471c9986e27549c47.tar.gz
e-DoKo-330c4ad8114934ccd906eee471c9986e27549c47.tar.bz2
e-DoKo-330c4ad8114934ccd906eee471c9986e27549c47.zip
more cleanup, the layout for the pre game stuff is now probably broken:(
Diffstat (limited to 'index.php')
-rw-r--r--index.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/index.php b/index.php
index a4ace5c..95ccfcf 100644
--- a/index.php
+++ b/index.php
@@ -689,7 +689,7 @@ else if(myisset("me"))
$firstcard = ""; /* first card in a trick */
echo "\n<ul class=\"tricks\">\n";
- echo " <li> Game $gameid: </li>\n";
+ echo " <li class=\"nohighlight\"> Game $gameid: </li>\n";
while($r = mysql_fetch_array($result,MYSQL_NUM))
{
@@ -711,14 +711,14 @@ else if(myisset("me"))
if($trick!=$lasttrick)
{
/* start of an old trick? */
- echo " <li onclick=\"hl('$trickNR');\"><a href=\"#\">Trick $trickNR</a>\n".
+ echo " <li onclick=\"hl('$trickNR');\" class=\"old\"><a href=\"#\">Trick $trickNR</a>\n".
" <div class=\"trick\" id=\"trick".$trickNR."\">\n".
" <img class=\"arrow\" src=\"pics/arrow".($pos-1).".png\" alt=\"table\" />\n";
}
else if($trick==$lasttrick)
{
/* start of a last trick? */
- echo " <li onclick=\"hl('$trickNR');\"><a href=\"#\">Current Trick</a>\n".
+ echo " <li onclick=\"hl('$trickNR');\" class=\"current\"><a href=\"#\">Trick $trickNR</a>\n".
" <div class=\"trick\" id=\"trick".$trickNR."\">\n".
" <img class=\"arrow\" src=\"pics/arrow".($pos-1).".png\" alt=\"table\" />\n";
};