Correction de modification design tableaux + déplacement élèves

This commit is contained in:
xdrm-brackets 2015-11-02 12:25:25 +01:00
parent f746ba1672
commit 1bf0141988
2 changed files with 3 additions and 2 deletions

View File

@ -81,6 +81,7 @@ table.basic:nth-child(4n+1) tr td:first-child{ border-left: 10px solid #3c73e6;
table.basic:nth-child(4n+2) tr td:first-child{ border-left: 10px solid #e6983c; }
table.basic:nth-child(4n+3) tr td:first-child{ border-left: 10px solid #2dcc70; }
/* @hover */
table.basic tr:hover td{ color: #fff; }

View File

@ -185,7 +185,7 @@ if( $_SESSION['identifiant'] != null && $_SESSION['droits'] == 'admin' ){ // si
echo '<thead>';
echo '<tr>';
echo '<th colspan=5>';
echo 'Groupe '.$group->nom;
echo 'Groupe <span>'.$group->nom.'</span>';
echo "<span style='font-weight:normal;padding-left:1em; font-size: .8em;'>(glisser-déposer étudiant pour le déplacer)</span>";
echo '</th>';
echo '</tr>';
@ -202,7 +202,7 @@ if( $_SESSION['identifiant'] != null && $_SESSION['droits'] == 'admin' ){ // si
echo "<td>".$user['identifiant'].'</td>';
echo '<td>'.$user['prenom'].'</td>';
echo '<td>'.$user['nom'].'</td>';
echo '<td><strong><span>'.$group->nom.'</span></strong></td>';
echo '<td>Groupe <strong><span>'.$group->nom.'</span></strong></td>';
echo '</tr>';
}