diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-06-20 16:01:53 -0300 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-06-20 16:01:53 -0300 |
commit | 08621f99e6333c5e218724d173654bf225586d59 (patch) | |
tree | b986cd560c62d4a43f6405ac8017c8c975a0be61 /app/Templates/board_show.php | |
parent | 169cbb56f83afedec74b51802d78342541c9128f (diff) |
Merge pull-request #106 (datepicker and long column names fix)
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"> |