pad frames cells to account for detail view

This commit is contained in:
Andrew Bauer 2020-08-23 13:12:54 -05:00
parent 4b144dea74
commit 63fc59568f
1 changed files with 7 additions and 7 deletions

View File

@ -145,16 +145,16 @@ xhtmlHeaders(__FILE__, translate('Frames').' - '.$Event->Id());
<thead> <thead>
<!-- Row styling is handled by bootstrap-tables --> <!-- Row styling is handled by bootstrap-tables -->
<tr> <tr>
<th data-align="center" data-sortable="false" data-field="EventId"><?php echo translate('EventId') ?></th> <th class="px-3" data-align="center" data-sortable="false" data-field="EventId"><?php echo translate('EventId') ?></th>
<th data-align="center" data-sortable="true" data-field="FramesId"><?php echo translate('FrameId') ?></th> <th class="px-3" data-align="center" data-sortable="true" data-field="FramesId"><?php echo translate('FrameId') ?></th>
<th data-align="center" data-sortable="true" data-field="FramesType"><?php echo translate('Type') ?></th> <th class="px-3" data-align="center" data-sortable="true" data-field="FramesType"><?php echo translate('Type') ?></th>
<th data-align="center" data-sortable="true" data-field="FramesTimeStamp"><?php echo translate('TimeStamp') ?></th> <th class="px-3" data-align="center" data-sortable="true" data-field="FramesTimeStamp"><?php echo translate('TimeStamp') ?></th>
<th data-align="center" data-sortable="true" data-field="FramesDelta"><?php echo translate('TimeDelta') ?></th> <th class="px-3" data-align="center" data-sortable="true" data-field="FramesDelta"><?php echo translate('TimeDelta') ?></th>
<th data-align="center" data-sortable="true" data-field="FramesScore"><?php echo translate('Score') ?></th> <th class="px-3" data-align="center" data-sortable="true" data-field="FramesScore"><?php echo translate('Score') ?></th>
<?php <?php
if ( ZM_WEB_LIST_THUMBS ) { if ( ZM_WEB_LIST_THUMBS ) {
?> ?>
<th data-align="center" data-sortable="false" data-field="Thumbnail"><?php echo translate('Thumbnail') ?></th> <th class="px-3" data-align="center" data-sortable="false" data-field="Thumbnail"><?php echo translate('Thumbnail') ?></th>
<?php <?php
} }
?> ?>