diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-09-28 10:40:20 +0300 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-09-28 10:40:20 +0300 |
commit | fb46a88a0f01f7f74ae6b941dd6f2060e020f09d (patch) | |
tree | f2cbccb5ed5ec840127b46346250bb2d4e2ab6d3 | |
parent | d671a4bb32774652fd4b89e707dcf053521b5bff (diff) | |
download | wekan-fb46a88a0f01f7f74ae6b941dd6f2060e020f09d.tar.gz wekan-fb46a88a0f01f7f74ae6b941dd6f2060e020f09d.tar.bz2 wekan-fb46a88a0f01f7f74ae6b941dd6f2060e020f09d.zip |
- Move Add Board button to top left, so there is no need to scroll
to bottom when there is a lot of boards.
Thanks to xet7 !
-rw-r--r-- | client/components/boards/boardsList.jade | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/client/components/boards/boardsList.jade b/client/components/boards/boardsList.jade index 95ce3678..89852570 100644 --- a/client/components/boards/boardsList.jade +++ b/client/components/boards/boardsList.jade @@ -1,6 +1,8 @@ template(name="boardList") .wrapper ul.board-list.clearfix + li.js-add-board + a.board-list-item.label {{_ 'add-board'}} each boards li(class="{{#if isStarred}}starred{{/if}}" class=colorClass) if isInvited @@ -27,9 +29,6 @@ template(name="boardList") title="{{#if hasOvertimeCards}}{{_ 'has-overtime-cards'}}{{else}}{{_ 'has-spenttime-cards'}}{{/if}}") p.board-list-item-desc= description - li.js-add-board - a.board-list-item.label {{_ 'add-board'}} - template(name="boardListHeaderBar") h1 {{_ 'my-boards'}} |