diff options
Diffstat (limited to 'app/Templates/board_show.php')
-rw-r--r-- | app/Templates/board_show.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Templates/board_show.php b/app/Templates/board_show.php index 6a138bf9..d5f31413 100644 --- a/app/Templates/board_show.php +++ b/app/Templates/board_show.php @@ -3,7 +3,9 @@ <?php $column_with = round(100 / count($board), 2); ?> <?php foreach ($board as $column): ?> <th width="<?= $column_with ?>%"> - <a href="?controller=task&action=create&project_id=<?= $column['project_id'] ?>&column_id=<?= $column['id'] ?>" title="<?= t('Add a new task') ?>">+</a> + <div class="board-add-icon"> + <a href="?controller=task&action=create&project_id=<?= $column['project_id'] ?>&column_id=<?= $column['id'] ?>" title="<?= t('Add a new task') ?>">+</a> + </div> <?= Helper\escape($column['title']) ?> <?php if ($column['task_limit']): ?> <span title="<?= t('Task limit') ?>" class="task-limit"> |