diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-09-26 18:10:00 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-09-26 18:10:00 -0400 |
commit | 53f4b410088258cf76162543909db025ecb62656 (patch) | |
tree | 20d23ae925887807edbc1e08a8b2dd4dcb318bb5 /app/Template/board/table_swimlane.php | |
parent | 1fca5e721ab63d4d49e068331aee90abb111dbc2 (diff) |
Add the possibility to set/unset max column height (scrolling)
Diffstat (limited to 'app/Template/board/table_swimlane.php')
-rw-r--r-- | app/Template/board/table_swimlane.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/board/table_swimlane.php b/app/Template/board/table_swimlane.php index 1caa920d..af74cbbe 100644 --- a/app/Template/board/table_swimlane.php +++ b/app/Template/board/table_swimlane.php @@ -4,8 +4,8 @@ <th class="board-swimlane-header"> <?php if (! $not_editable): ?> <a href="#" class="board-swimlane-toggle" data-swimlane-id="<?= $swimlane['id'] ?>"> - <i class="fa fa-minus-circle hide-icon-swimlane-<?= $swimlane['id'] ?>"></i> - <i class="fa fa-plus-circle show-icon-swimlane-<?= $swimlane['id'] ?>" style="display: none"></i> + <i class="fa fa-chevron-circle-up hide-icon-swimlane-<?= $swimlane['id'] ?>"></i> + <i class="fa fa-chevron-circle-down show-icon-swimlane-<?= $swimlane['id'] ?>" style="display: none"></i> </a> <?php if (! empty($swimlane['description'])): ?> @@ -95,7 +95,7 @@ <div class="board-column-collapsed"> <div class="board-rotation-wrapper"> <div class="board-column-title board-rotation" data-column-id="<?= $column['id'] ?>" title="<?= t('Show this column') ?>"> - <?= $this->e($column['title']) ?> + <i class="fa fa-chevron-circle-up tooltip" title="<?= $this->e($column['title']) ?>"></i> <?= $this->e($column['title']) ?> </div> </div> </div> |