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

@@ -5,13 +5,13 @@
<?php foreach ($grouped_links as $link): ?>
<?php if (! $hide_td): ?>
<tr>
<th class="column-45">
<th>
<?= t('This task') ?>
<em><?= t($label) ?></em>
<span class="task-links-task-count">(<?= count($grouped_links) ?>)</span>
</th>
<th class="column-15"><?= t('Assignee') ?></th>
<th><?= t('Time tracking') ?></th>
<th class="column-10"><?= t('Assignee') ?></th>
<th class="column-30"><?= t('Time tracking') ?></th>
</tr>
<?php $hide_td = true ?>
<?php endif ?>