Adjust width of timetracking column. Make subtasks wrap not under icons

This commit is contained in:
Slade
2019-12-04 19:22:08 -07:00
committed by Frédéric Guillot
parent 061b4a676c
commit ad85637aa1
8 changed files with 42 additions and 21 deletions

View File

@@ -2,9 +2,9 @@
<table class="table-striped table-scrolling">
<tr>
<th><?= t('Filename') ?></th>
<th><?= t('Creator') ?></th>
<th><?= t('Date') ?></th>
<th><?= t('Size') ?></th>
<th class="column-15"><?= t('Size') ?></th>
<th class="column-15"><?= t('Creator') ?></th>
<th class="column-10"><?= t('Date') ?></th>
</tr>
<?php foreach ($files as $file): ?>
<tr>
@@ -34,15 +34,15 @@
</ul>
</div>
</td>
<td>
<?= $this->text->bytes($file['size']) ?>
</td>
<td>
<?= $this->text->e($file['user_name'] ?: $file['username']) ?>
</td>
<td>
<?= $this->dt->date($file['date']) ?>
</td>
<td>
<?= $this->text->bytes($file['size']) ?>
</td>
</tr>
<?php endforeach ?>
</table>