From 75d3974143dbaa3601317f767d77ed1c3cc13e9b Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Tue, 15 Nov 2011 21:13:20 -0800 Subject: [PATCH] LAYOUT: use html5 buttons for prev/next for the tricks --- css/standard.css | 4 ++-- include/game.php | 4 ++-- include/output.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/css/standard.css b/css/standard.css index 5c2b9fa..2e8567f 100644 --- a/css/standard.css +++ b/css/standard.css @@ -258,8 +258,8 @@ ul.tricks li { display:inline; } ul.tricks li.old { background-color:#fff; } -ul.tricks li:hover { background-color: #bbb;} -ul.tricks li.nohighlight:hover { background-color: #fff;} +ul.tricks li a:hover { background-color: #bbb;} +ul.tricks li.nohighlight a:hover { background-color: #fff;} div.tricks { position: absolute; diff --git a/include/game.php b/include/game.php index 621b0b0..6d5b169 100644 --- a/include/game.php +++ b/include/game.php @@ -417,8 +417,8 @@ switch($mystatus) echo "
  • "._('Score')."
  • \n"; /* output previous/next buttons */ - echo "
  • "._('prev')."
  • \n"; - echo "
  • "._('next')."
  • \n"; + echo "
  • \n"; + echo "
  • \n"; echo "\n\n"; diff --git a/include/output.php b/include/output.php index 74d0e00..1d1a71f 100644 --- a/include/output.php +++ b/include/output.php @@ -379,7 +379,7 @@ function output_header() - + -- 2.17.1