diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-07-05 21:57:17 +0300 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-07-05 21:57:17 +0300 |
commit | 515c9be051272b91563c6de516424a246503853a (patch) | |
tree | a3e34dd8a97a1076656383d784e44d58fedd28fc | |
parent | c997786e6435a7e5728eab32c0e24bd458db75ae (diff) | |
download | wekan-515c9be051272b91563c6de516424a246503853a.tar.gz wekan-515c9be051272b91563c6de516424a246503853a.tar.bz2 wekan-515c9be051272b91563c6de516424a246503853a.zip |
- Fix Minimize board sidebar actually just moves it over.
Thanks to dagomar !
Closes #1589
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | client/components/boards/boardBody.styl | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b23eb958..1c3a038c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,10 @@ This release fixes the following bugs: - Revert [Fix vertical align of user avatar initials](https://github.com/wekan/wekan/pull/1714), so that [initials are again visible](https://github.com/wekan/wekan/commit/122a61b3333fb77c0f08bbdc6fe0d3c2f6db97df); - Fix lint warning: [EditCardDate is assigned a value but never used - no-unused-vars](https://github.com/wekan/wekan/commit/dd324aa581bed7ea31f20968c6b596f373e7054f). + no-unused-vars](https://github.com/wekan/wekan/commit/dd324aa581bed7ea31f20968c6b596f373e7054f); +- Fix [Minimize board sidebar actually just moves it over](https://github.com/wekan/wekan/issues/1589). -Thanks to GitHub users pravdomil and xet7 for their contributions. +Thanks to GitHub users dagomar, pravdomil and xet7 for their contributions. # v1.11 2018-06-30 Wekan release diff --git a/client/components/boards/boardBody.styl b/client/components/boards/boardBody.styl index a614c7ed..148c6ce1 100644 --- a/client/components/boards/boardBody.styl +++ b/client/components/boards/boardBody.styl @@ -15,12 +15,13 @@ position() .board-wrapper position: cover - overflow-y: hidden; + overflow-x: hidden + overflow-y: hidden .board-canvas position: cover transition: margin .1s - overflow-y: auto; + overflow-y: auto &.is-sibling-sidebar-open margin-right: 248px |