From 212576cb77e56ed925d40366e4914fb0753d0fc9 Mon Sep 17 00:00:00 2001 From: Dan Percic Date: Thu, 20 Jan 2022 12:34:56 +0200 Subject: [PATCH] fix show add button when multi select active --- src/lib/listing/workflow/workflow.component.html | 1 + src/lib/listing/workflow/workflow.component.scss | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/src/lib/listing/workflow/workflow.component.html b/src/lib/listing/workflow/workflow.component.html index 03fcb5d..7306332 100644 --- a/src/lib/listing/workflow/workflow.component.html +++ b/src/lib/listing/workflow/workflow.component.html @@ -32,6 +32,7 @@ *ngIf="column.entities | async as entities" [cdkDropListData]="entities" [cdkDropListEnterPredicate]="canMoveTo(column)" + [class.multi-select-active]="selectionColumn === column" [id]="column.key" [itemSize]="itemHeight" cdkDropList diff --git a/src/lib/listing/workflow/workflow.component.scss b/src/lib/listing/workflow/workflow.component.scss index 7943c0e..99aa44c 100644 --- a/src/lib/listing/workflow/workflow.component.scss +++ b/src/lib/listing/workflow/workflow.component.scss @@ -67,6 +67,10 @@ overflow-y: auto; @include no-scroll-bar; min-height: calc(100% - 36px); + + &.multi-select-active { + min-height: calc(100% - 86px); + } } .item {