Skip to content

Commit

Permalink
fix #704
Browse files Browse the repository at this point in the history
  • Loading branch information
emmrichard committed Jul 17, 2017
1 parent bab38c2 commit 99e629f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion style/ikurso.css
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ div.col > p:first-child {
/* styles specifiques */
.eo {color: #2196F3;}
.noto strong {color: #2196F3;}
.eta {font-size: 85%;}
.eta, .numero {font-size: 85%;}
.tab {padding-left: 1em;}

/* amélioration de l'affichage s12 */
Expand Down
5 changes: 2 additions & 3 deletions webui.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -909,9 +909,8 @@ function vortlisto($persono_id,$kurso,$pattern) {
echo "<div class='row'>";
while ($row = $res->fetch()) {

echo "<p class='col s6 m3 eo'>".$row['eo']." ";
echo "<span class='numero'> (".$row['numero'].")</span>";
echo "</p><p class='col s6 m3'> ".$row['fr']."</p>\n";
echo "<p class='col s12 m6'><span class='eo'>".$row['eo']." ";
echo "<span class='numero'> (".$row['numero'].")</span></span> : ".$row['fr']."</p>\n";
$i++;
}
echo "</div></div></div>";
Expand Down

0 comments on commit 99e629f

Please sign in to comment.