diff options
author | Andrés Manelli <andresmanelli@gmail.com> | 2018-01-19 16:00:02 -0300 |
---|---|---|
committer | Andrés Manelli <andresmanelli@gmail.com> | 2018-01-19 16:00:02 -0300 |
commit | ee2a43dd5b4b5296f61f68b46fd85521224f571d (patch) | |
tree | 124f6eedc070ba926b8dc3f47985bb6951be3d92 /client/components/boards | |
parent | 690a5b970319ceabc0be965152187d7098022621 (diff) | |
download | wekan-ee2a43dd5b4b5296f61f68b46fd85521224f571d.tar.gz wekan-ee2a43dd5b4b5296f61f68b46fd85521224f571d.tar.bz2 wekan-ee2a43dd5b4b5296f61f68b46fd85521224f571d.zip |
Add siwmlane button. Allow card drop between swimlanes
Diffstat (limited to 'client/components/boards')
-rw-r--r-- | client/components/boards/boardBody.jade | 16 | ||||
-rw-r--r-- | client/components/boards/boardBody.styl | 4 |
2 files changed, 0 insertions, 20 deletions
diff --git a/client/components/boards/boardBody.jade b/client/components/boards/boardBody.jade index 98384c84..e00794f3 100644 --- a/client/components/boards/boardBody.jade +++ b/client/components/boards/boardBody.jade @@ -22,19 +22,3 @@ template(name="boardBody") .board-overlay each currentBoard.swimlanes +swimlane(this) -// if currentUser.isBoardMember -// +addSwimlaneForm - -template(name="addListForm") - .list.js-list.list-composer.js-list-composer - .list-header - +inlinedForm(autoclose=false) - input.list-name-input.full-line(type="text" placeholder="{{_ 'add-list'}}" - autocomplete="off" autofocus) - .edit-controls.clearfix - button.primary.confirm(type="submit") {{_ 'save'}} - a.fa.fa-times-thin.js-close-inlined-form - else - a.open-list-composer.js-open-inlined-form - i.fa.fa-plus - | {{_ 'add-list'}} diff --git a/client/components/boards/boardBody.styl b/client/components/boards/boardBody.styl index 7d3c8f71..f5ecc08e 100644 --- a/client/components/boards/boardBody.styl +++ b/client/components/boards/boardBody.styl @@ -22,14 +22,12 @@ position() .swimlane border-bottom: 1px solid #CCC - align-items: flex-start display: flex flex-direction: row margin: 0 0 10px padding: 0 40px 5px 0 overflow-x: auto overflow-y: hidden - position: cover .board-overlay position: cover @@ -51,7 +49,6 @@ position() .board-canvas .swimlane - align-items: flex-start border-bottom: 1px solid #CCC display: flex flex-direction: column @@ -59,4 +56,3 @@ position() padding: 0 40px 0px 0 overflow-x: hidden overflow-y: auto - position: cover |