fix table overflow

This commit is contained in:
Dennis Eichhorn 2021-09-05 20:16:54 +02:00
parent 5019eb681b
commit 5e3a49e0e9
2 changed files with 3 additions and 1 deletions

View File

@ -130,7 +130,7 @@ final class BackendController extends Controller
foreach ($glob as $file) { foreach ($glob as $file) {
$basename = \basename($file); $basename = \basename($file);
if ($basename[0] === '_' && \strlen($basename) === 3) { if ($basename[0] === '_' && \strlen($basename) === 5) {
continue; continue;
} }

View File

@ -81,6 +81,7 @@ $next = empty($media) ? '{/prefix}media/list' : '{/prefix}media/list?{?}&id=
<div class="col-xs-12"> <div class="col-xs-12">
<div class="portlet"> <div class="portlet">
<div class="portlet-head"><?= $this->getHtml('Media'); ?><i class="fa fa-download floatRight download btn"></i></div> <div class="portlet-head"><?= $this->getHtml('Media'); ?><i class="fa fa-download floatRight download btn"></i></div>
<div class="slider">
<table id="iMediaList" class="default sticky"> <table id="iMediaList" class="default sticky">
<thead> <thead>
<tr> <tr>
@ -207,6 +208,7 @@ $next = empty($media) ? '{/prefix}media/list' : '{/prefix}media/list?{?}&id=
<tr><td colspan="8" class="empty"><?= $this->getHtml('Empty', '0', '0'); ?> <tr><td colspan="8" class="empty"><?= $this->getHtml('Empty', '0', '0'); ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</div>
<div class="portlet-foot"> <div class="portlet-foot">
<a tabindex="0" class="button" href="<?= UriFactory::build($previous); ?>"><?= $this->getHtml('Previous', '0', '0'); ?></a> <a tabindex="0" class="button" href="<?= UriFactory::build($previous); ?>"><?= $this->getHtml('Previous', '0', '0'); ?></a>
<a tabindex="0" class="button" href="<?= UriFactory::build($next); ?>"><?= $this->getHtml('Next', '0', '0'); ?></a> <a tabindex="0" class="button" href="<?= UriFactory::build($next); ?>"><?= $this->getHtml('Next', '0', '0'); ?></a>