fix table overflow

This commit is contained in:
Dennis Eichhorn 2021-09-05 20:16:54 +02:00
parent 763cb61b8b
commit 1f71c7c5e0
2 changed files with 4 additions and 2 deletions

View File

@ -29,6 +29,7 @@ echo $this->getData('nav')->render(); ?>
<div class="col-xs-12">
<div class="portlet">
<div class="portlet-head"><?= $this->getHtml('Checklists'); ?><i class="fa fa-download floatRight download btn"></i></div>
<div class="slider">
<table class="default sticky">
<thead>
<tr>
@ -52,6 +53,7 @@ echo $this->getData('nav')->render(); ?>
<td colspan="5" class="empty"><?= $this->getHtml('Empty', '0', '0'); ?>
<?php endif; ?>
</table>
</div>
</div>
</div>
</div>

View File

@ -28,6 +28,7 @@ echo $this->getData('nav')->render(); ?>
<div class="row">
<div class="col-xs-12">
<div class="box wf-100">
<div class="slider">
<table class="default sticky">
<caption><?= $this->getHtml('Templates'); ?><i class="fa fa-download floatRight download btn"></i></caption>
<thead>
@ -37,8 +38,6 @@ echo $this->getData('nav')->render(); ?>
<td class="wf-100"><?= $this->getHtml('Name'); ?>
<td><?= $this->getHtml('Creator'); ?>
<td><?= $this->getHtml('Created'); ?>
<tfoot>
<tr><td colspan="5">
<tbody>
<?php $c = 0; foreach ([] as $key => $value) : ++$c;
$url = \phpOMS\Uri\UriFactory::build('{/prefix}checklist/single?{?}&id=' . $value->getId()); ?>
@ -53,6 +52,7 @@ echo $this->getData('nav')->render(); ?>
<td colspan="5" class="empty"><?= $this->getHtml('Empty', '0', '0'); ?>
<?php endif; ?>
</table>
</div>
</div>
</div>
</div>