diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-01-08 18:41:27 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-01-08 18:41:27 +0200 |
commit | f7ef629dbac4f0fcfc55b73c09c8c21cbfbe5bee (patch) | |
tree | a0fc72e33432a411ae6f4e1f549499510d76de32 | |
parent | 428465d361157db3b8c055c4ec8e84a7980b011e (diff) | |
parent | 0f0a93cabf8e64f1690ea34e2e0e0e91c332613d (diff) | |
download | wekan-f7ef629dbac4f0fcfc55b73c09c8c21cbfbe5bee.tar.gz wekan-f7ef629dbac4f0fcfc55b73c09c8c21cbfbe5bee.tar.bz2 wekan-f7ef629dbac4f0fcfc55b73c09c8c21cbfbe5bee.zip |
Merge branch 'dpoznyak-bugfix/#476-scroll-drag-lists' into devel
Fix for dragging into scrolled-down list. Thanks to dpoznyak !
Partially addresses #476
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | client/components/lists/list.styl | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b077bdc2..c7a8df15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ This release adds the following new features: * [Different icons for start and due date](https://github.com/wekan/wekan/pull/1420). -Thanks to GitHub user mmarschall for contributions. +and fixes the following bugs: + +* [Fix for dragging into scrolled-down list](https://github.com/wekan/wekan/pull/1424). + +Thanks to GitHub users dpoznyak and mmarschall for their contributions. # v0.63 2017-12-20 Wekan release diff --git a/client/components/lists/list.styl b/client/components/lists/list.styl index d5800140..21d267ca 100644 --- a/client/components/lists/list.styl +++ b/client/components/lists/list.styl @@ -88,12 +88,14 @@ .list-body flex: 1 + flex-direction: column display: flex overflow-y: auto padding: 5px 11px .minicards - flex: 1 + flex-grow: 1 + flex-shrink: 0 form margin-bottom: 9px |