Minor BS4 adjustments

master
Skylar Ittner 6 years ago
parent 37e6d3e7ce
commit 225b9bb012

@ -37,7 +37,6 @@ redirectifnotloggedin();
$in = $database->has('punches', ['AND' => ['uid' => $_SESSION['uid'], 'out' => null]]) === TRUE; $in = $database->has('punches', ['AND' => ['uid' => $_SESSION['uid'], 'out' => null]]) === TRUE;
?> ?>
<h5 class="card-subtitle mb-2 ml-4"> <h5 class="card-subtitle mb-2 ml-4">
<span id="inmsg"><?php lang("you are punched in"); ?></span> <span id="inmsg"><?php lang("you are punched in"); ?></span>
<span id="outmsg"><?php lang("you are not punched in"); ?></span> <span id="outmsg"><?php lang("you are not punched in"); ?></span>
<style nonce="<?php echo $SECURE_NONCE; ?>"> <style nonce="<?php echo $SECURE_NONCE; ?>">

@ -57,10 +57,10 @@ $totalpunches = count($punches);
<tr> <tr>
<th data-priority="0"></th> <th data-priority="0"></th>
<th data-priority="1"><?php lang('actions'); ?></th> <th data-priority="1"><?php lang('actions'); ?></th>
<th data-priority="2"><i class="fas fa-fw fa-user hidden-xs"></i> <?php lang('name'); ?></th> <th data-priority="2"><i class="fas fa-fw fa-user d-none d-md-inline"></i> <?php lang('name'); ?></th>
<th data-priority="1"><i class="fas fa-fw fa-play hidden-xs"></i> <?php lang('in'); ?></th> <th data-priority="1"><i class="fas fa-fw fa-play d-none d-md-inline"></i> <?php lang('in'); ?></th>
<th data-priority="1"><i class="fas fa-fw fa-stop hidden-xs"></i> <?php lang('out'); ?></th> <th data-priority="1"><i class="fas fa-fw fa-stop d-none d-md-inline"></i> <?php lang('out'); ?></th>
<th data-priority="2"><i class="fas fa-fw fa-sticky-note hidden-xs"></i> <?php lang('notes'); ?></th> <th data-priority="2"><i class="fas fa-fw fa-sticky-note d-none d-md-inline"></i> <?php lang('notes'); ?></th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -70,10 +70,10 @@ $totalpunches = count($punches);
<tr> <tr>
<th data-priority="0"></th> <th data-priority="0"></th>
<th data-priority="1"><?php lang('actions'); ?></th> <th data-priority="1"><?php lang('actions'); ?></th>
<th data-priority="2"><i class="fas fa-fw fa-user hidden-xs"></i> <?php lang('name'); ?></th> <th data-priority="2"><i class="fas fa-fw fa-user d-none d-md-inline"></i> <?php lang('name'); ?></th>
<th data-priority="1"><i class="fas fa-fw fa-play hidden-xs"></i> <?php lang('in'); ?></th> <th data-priority="1"><i class="fas fa-fw fa-play d-none d-md-inline"></i> <?php lang('in'); ?></th>
<th data-priority="1"><i class="fas fa-fw fa-stop hidden-xs"></i> <?php lang('out'); ?></th> <th data-priority="1"><i class="fas fa-fw fa-stop d-none d-md-inline"></i> <?php lang('out'); ?></th>
<th data-priority="2"><i class="fas fa-fw fa-sticky-note hidden-xs"></i> <?php lang('notes'); ?></th> <th data-priority="2"><i class="fas fa-fw fa-sticky-note d-none d-md-inline"></i> <?php lang('notes'); ?></th>
</tr> </tr>
</tfoot> </tfoot>
</table> </table>

Loading…
Cancel
Save