- changing the tricks-selector to a paginator and fixing the js for highlighting
- adding a navbar using bootstrap, probably should use .wrap more instead of adding divs to the code
*
*/
-body { background-color: #ddd; }
+body { background-color: #ddd; padding-top:40px}
/* the header, footer, etc */
header {
footer .right { text-align:right; font-size:smaller;}
footer .left { float:left; font-size:smaller;}
-.status {
- position:absolute;
- right:4em;
- top:0.1em;
- font-size: smaller;
-}
-
.WIP {
background-color: #efaaaa;
text-size: larger;
/* display the card tricks */
-ul.tricks {
- text-align:center;
- list-style:none;
- margin:0px;
- padding:3px;
- padding-bottom:3px;
- border-bottom:1px solid #444;
-}
-ul.tricks a { text-decoration:none; color:#000;}
-ul.tricks li {
- /*background-color:blue;*/
- padding:0.1em;
- margin:0.2em 0.5em;
- display:inline;
-}
-ul.tricks li.old { background-color:#fff; }
-ul.tricks li a:hover { background-color: #bbb;}
-ul.tricks li.nohighlight a:hover { background-color: #fff;}
-
div.tricks {
position: absolute;
top: 0;
border-top: 1px solid gray;
}
-.session div.sessionscore div, .status {
+.session div.sessionscore div {
right:0em;
}
text-align: right;
font-size: smaller;
}
+}
+.pagination {
+ text-align:center;
}
\ No newline at end of file
if(!isset($HOST))
exit;
-/* display the menu */
-output_status();
-
/* you should only get here from a game page, so $me should be set */
if(!myisset("me"))
{
case 'check':
/* output sickness of other playes, in case they already selected and are sitting in front of the current player */
echo "\n<ul class=\"tricks\">\n";
- echo " <li onclick=\"hl('0');\" class=\"current\"><a href=\"#\">Pre</a>\n";
+ echo " <li onclick=\"hl('0');\" class=\"active\" id=\"tricks0\"><a href=\"#\">Pre</a>\n";
echo " </li>\n</ul>\n"; /* end div trick, end li trick , end tricks*/
/* end displaying sickness */
$mygametype = DB_get_gametype_by_gameid($gameid);
- echo " <li onclick=\"hl('0');\" class=\"current\"><a href=\"#\">Pre</a>\n";
+ echo " <li onclick=\"hl('0');\" class=\"active\"><a href=\"#\">Pre</a>\n";
echo " </li>\n</ul>\n\n"; /* end div trick, end li trick , end ul tricks */
}
/* end output pre-game trick */
{
$trick=$r[0];
if($trick!=$lasttrick)
- echo " <li onclick=\"hl('$trickNR');\" class=\"old\"><a href=\"#\">"._('Trick')." $trickNR</a></li>\n";
+ echo " <li onclick=\"hl('$trickNR');\" id=\"tricks$trickNR\"><a href=\"#\">"._('Trick')." $trickNR</a></li>\n";
else if($trick==$lasttrick)
- echo " <li onclick=\"hl('$trickNR');\" class=\"current\"><a href=\"#\">"._('Trick')." $trickNR</a></li>\n";
+ echo " <li onclick=\"hl('$trickNR');\" id=\"tricks$trickNR\" class=\"active\"><a href=\"#\">"._('Trick')." $trickNR</a></li>\n";
$trickNR++;
}
/* if game is over, also output link to Score tab */
if($mystatus=='gameover' && DB_get_game_status_by_gameid($gameid)=='gameover' )
- echo " <li onclick=\"hl('13');\" class=\"current\"><a href=\"#\">"._('Score')."</a></li>\n";
+ echo " <li onclick=\"hl('13');\" id=\"tricks13\" class=\"active\"><a href=\"#\">"._('Score')."</a></li>\n";
/* output previous/next buttons */
- echo ' <li onclick="hl_prev();" ><button>'._('prev')."</button></li>\n";
- echo ' <li onclick="hl_next();" ><button>'._('next')."</button></li>\n";
+ echo ' <li onclick="hl_prev();" id=\"prevtr\"><a href="#">'._('prev')."</a></li>\n";
+ echo ' <li onclick="hl_next();" id=\"nexttr\"><a href="#">'._('next')."</a></li>\n";
echo "</ul>\n\n";
<script src="js/less.min.js" type="text/javascript"></script>
</head>
<body onload="high_last();">
-<header>
-<?php
- echo '<h1> '._('Welcome to E-Doko').' </h1>';
-?>
-</header>
<?php
echo "<div class=\"main\">";
echo '<script src="'.autoversion('js/jquery.tablesorter.min.js'). '"></script>';
echo '<script src="'.autoversion('js/jquery.tools.min.js'). '"></script>';
echo '<script src="'.autoversion('js/bootstrap.min.js'). '"></script>';
+ echo '<script src="'.autoversion('js/layout.js'). '"></script>';
echo '<script src="'.autoversion('js/game.js'). '"></script>';
echo "</body>\n";
return;
}
-function output_status()
+function output_navbar()
{
global $defaulttimezone, $INDEX, $WIKI, $RSS;
$token = get_user_token($myid);
/* logout info */
- echo "\n<div class=\"status\">\n";
- echo $name,"\n";
- echo " | <a href=\"".$INDEX."\">"._('mypage')."</a>\n";
- echo " | <a href=\"".$INDEX."?action=prefs\">"._('settings')."</a>\n";
- echo " | <a href=\"".$INDEX."?action=new\">"._('new game')."</a>\n";
- echo " | <a href=\"".$INDEX."?action=stats\">"._('statistics')."</a>\n";
- echo " | <a href=\"".$WIKI."\">"._('wiki/bugs')."</a>\n";
- echo " | <a href=\"".$RSS."?uid=".$myid."&token=".$token."\">"._('atom')."</a>\n";
- echo " | <a href=\"".$INDEX."?action=logout\">"._('logout')."</a>\n";
+ echo "\n<div class=\"navbar navbar-fixed-top\">\n";
+ echo " <div class=\"navbar-inner\">\n";
+ echo " <span class=\"brand\" href=\"#\">E-DoKo</span>\n";
+ echo " <ul class=\"nav\">";
+ echo " <li><a href=\"#\">$name</a> </li>\n";
+ echo " <li class=\"divider-vertical\"></li>\n";
+ echo " <li> <a href=\"".$INDEX."\">"._('mypage')."</a></li>\n";
+ echo " <li class=\"divider-vertical\"></li>\n";
+ echo " <li> <a href=\"".$INDEX."?action=prefs\">"._('settings')."</a></li>\n";
+ echo " <li class=\"divider-vertical\"></li>\n";
+ echo " <li> <a href=\"".$INDEX."?action=new\">"._('new game')."</a></li>\n";
+ echo " <li class=\"divider-vertical\"></li>\n";
+ echo " <li> <a href=\"".$INDEX."?action=stats\">"._('statistics')."</a></li>\n";
+ echo " <li class=\"divider-vertical\"></li>\n";
+ echo " <li> <a href=\"".$WIKI."\">"._('wiki/bugs')."</a></li>\n";
+ echo " <li class=\"divider-vertical\"></li>\n";
+ echo " <li> <a href=\"".$RSS."?uid=".$myid."&token=".$token."\">"._('atom')."</a></li>\n";
+ echo " <li class=\"divider-vertical\"></li>\n";
+ echo " <li> <a href=\"".$INDEX."?action=logout\">"._('logout')."</a></li>\n";
+ echo " </ul>\n";
+ echo " </div>\n";
echo "</div>\n\n";
echo "<div class=\"lastlogin\"><span>"._('last login').": ".date("r",$unixtime)."</span></div>\n\n";
/* ask for login or display login info, needs to go at the end, so that we have the
* session-variable already set.
*/
-output_status();
+output_navbar();
output_footer();
/* do the higlighting */
function hl(num) {
var i;
- for(i=0;i<14;i++){ $("#trick"+i).hide(); }
+ for(i=0;i<14;i++){ $("#trick"+i).hide(); $("#tricks"+i).removeClass('active'); }
$("#trick"+num).css('display', 'block');
+ $("#tricks"+num).addClass('active');
current=num;
+
+ if(document.getElementById("tricks0"))
+ min=0;
+ else
+ min=1;
+
+ if(document.getElementById("tricks13"))
+ max=13;
+ else
+ min=12;
+
+ if(current==min)
+ $("#prevtr").addClass('disabled');
+ else
+ $("#prevtr").removeClass('disabled');
+ if(current==max)
+ $("#nexttr").addClass('disabled');
+ else
+ $("#nexttr").removeClass('disabled');
+
}
/* highlight the last trick, useful when a page is called the first time*/
--- /dev/null
+$(".navbar .nav").addClass("pull-right");
+$("table").addClass("table table-striped");
+$("ul.tricks").wrap('<div class="pagination">');
\ No newline at end of file