This commit is contained in:
Gnieark 2016-06-10 16:19:41 +02:00
parent c277d8da42
commit 0e6a132df2
2 changed files with 3 additions and 2 deletions

View File

@ -74,11 +74,11 @@ if(isset($_GET['arena'])){
$asideSectionContent.='<li>'.$img.'&nbsp;<a href="/p/aboutBot/'.urlencode(htmlentities(($sc['name']))).'">'.htmlentities($sc['name']).'</a> ELO rank: '.$sc['ELO'].'</li>'; $asideSectionContent.='<li>'.$img.'&nbsp;<a href="/p/aboutBot/'.urlencode(htmlentities(($sc['name']))).'">'.htmlentities($sc['name']).'</a> ELO rank: '.$sc['ELO'].'</li>';
} }
$asideSectionContent.='</ul><h2>Détail des matchs</h2>'; $asideSectionContent.='</ul><h2><a href="#" onclick="document.getElementById(\'detailMatches\').class=\'\';">Détail des matchs</a></h2>';
foreach($hist as $sc){ foreach($hist as $sc){
$asideSectionContent.='<h3><a href="/p/aboutBot/'.urlencode(htmlentities($sc['bot1'])).'">'.$sc['bot1'].'</a> VS <a href="/p/aboutBot/'.urlencode(htmlentities($sc['bot2'])).'">'.$sc['bot2'].'</a></h3> $asideSectionContent.='<h3><a href="/p/aboutBot/'.urlencode(htmlentities($sc['bot1'])).'">'.$sc['bot1'].'</a> VS <a href="/p/aboutBot/'.urlencode(htmlentities($sc['bot2'])).'">'.$sc['bot2'].'</a></h3>
<ul> <ul id="detailMatches" class="hidden">
<li>'.$sc['bot1']." ".$lang['VICTORIES'].":".$sc['player1Wins'].'</li> <li>'.$sc['bot1']." ".$lang['VICTORIES'].":".$sc['player1Wins'].'</li>
<li>'.$sc['bot2']." ".$lang['VICTORIES'].":".$sc['player2Wins'].'</li> <li>'.$sc['bot2']." ".$lang['VICTORIES'].":".$sc['player2Wins'].'</li>
<li>'.$lang['DRAW'].":".$sc['draws'].'</li> <li>'.$lang['DRAW'].":".$sc['draws'].'</li>

View File

@ -107,6 +107,7 @@ pre{
.podium{list-style-type:none;padding: 5px 20px 5px 0;} .podium{list-style-type:none;padding: 5px 20px 5px 0;}
.podium li{padding: 5px 20px 5px 0;} .podium li{padding: 5px 20px 5px 0;}
.podium li img {height: 50px; vertical-align:middle;} .podium li img {height: 50px; vertical-align:middle;}
.hide{display:none;}
@media screen and (max-width: 800px){ @media screen and (max-width: 800px){
aside, article{display: block; width: 100%; border-right:none;} aside, article{display: block; width: 100%; border-right:none;}