mirror of
https://github.com/wekan/wekan.git
synced 2026-02-10 18:24:21 +01:00
Fix 6.93 with brackground image breaks scrolling on lists within swimlanes.
Thanks to xet7 ! Fixes #4936
This commit is contained in:
parent
4405693b1f
commit
04aaa6f30c
3 changed files with 11 additions and 18 deletions
|
|
@ -694,9 +694,8 @@ BlazeComponent.extendComponent({
|
|||
'click .js-remove-background-image'() {
|
||||
const currentBoard = Boards.findOne(Session.get('currentBoard'));
|
||||
currentBoard.setBackgroundImageURL("");
|
||||
Utils.setBackgroundImage("");
|
||||
Popup.back();
|
||||
//Utils.reload();
|
||||
Utils.reload();
|
||||
event.preventDefault();
|
||||
},
|
||||
},
|
||||
|
|
|
|||
|
|
@ -47,7 +47,8 @@
|
|||
display: flex;
|
||||
flex-direction: row;
|
||||
overflow: 0;
|
||||
max-height: calc(100% - 26px);
|
||||
/* max-height: calc(100% - 26px); */
|
||||
max-height: calc(400px);
|
||||
}
|
||||
.swimlane.placeholder {
|
||||
background-color: rgba(0,0,0,0.2);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue