[Redizajn 1KA] Nastavitve --> Moj profil - v6

Dodan bottom border na tabelo prijav.
This commit is contained in:
tejagerjovic 2022-01-05 23:34:00 +01:00
parent 94c6c0a325
commit 198c2438ee
3 changed files with 4 additions and 3 deletions

View File

@ -10323,7 +10323,7 @@ class SurveyAdminSettings {
else {
$count = 0;
while ($row = mysqli_fetch_array ($result)) {
echo '<tr '.($count >= 5 ? ' class="displayNone"' : '').'>';
echo '<tr '.($count >= 5 ? ' class="displayNone"' : '').($count == 4 ? ' class="show_as_last_row"' : '').'>';
echo '<td>'.$row['IP'].'</td>';
echo '<td>'.date('j.n.Y', strtotime($row['kdaj'])).' '.date('H:i:s', strtotime($row['kdaj'])).'</td>';
echo '</tr>';

View File

@ -7673,7 +7673,7 @@ table th {
table tr {
height: 40px;
}
table tr:last-of-type td, table tr:last-of-type th {
table tr:last-of-type td, table tr:last-of-type th, table tr.show_as_last_row td, table tr.show_as_last_row th {
border-bottom: 1px solid #E5E5E5;
}
table#passwords_table, table#groups_table {

View File

@ -30,7 +30,8 @@ table {
height: 40px;
&:last-of-type{
&:last-of-type,
&.show_as_last_row{
td, th {
border-bottom: 1px solid $gray;