Merged PR 2068: fix(shared-filter): Adjusted Styling parameters for Height and Scrolling

fix(shared-filter): Adjusted Styling parameters for Height and Scrolling

Ref: #5476, #5477
This commit is contained in:
Nino Righi
2025-12-05 10:10:32 +00:00
committed by Lorenz Hilpert
parent 3696fb5b2d
commit 5711a75188
5 changed files with 5 additions and 11 deletions

View File

@@ -1,3 +1,3 @@
.filter-checkbox-input {
@apply inline-block w-full p-6 text-isa-neutral-900;
@apply inline-block w-full p-6 text-isa-neutral-900 overflow-scroll max-h-96;
}

View File

@@ -45,10 +45,7 @@
<span> {{ input!.label }} </span>
</button>
<filter-input-renderer
class="overflow-scroll"
[filterInput]="input!"
></filter-input-renderer>
<filter-input-renderer [filterInput]="input!"></filter-input-renderer>
}
<filter-actions

View File

@@ -2,6 +2,6 @@
@apply inline-flex flex-col;
@apply bg-isa-white;
@apply rounded-[1.25rem];
@apply min-w-[14.3125rem] max-w-[18.375rem] max-h-[33.5rem];
@apply min-w-[14.3125rem] max-w-[18.375rem];
@apply shadow-overlay;
}

View File

@@ -1,7 +1,4 @@
<filter-input-renderer
class="overflow-scroll"
[filterInput]="filterInput()"
></filter-input-renderer>
<filter-input-renderer [filterInput]="filterInput()"></filter-input-renderer>
<filter-actions
[inputKey]="filterInput().key"
[canApply]="canApply()"

View File

@@ -1,4 +1,4 @@
:host {
@apply inline-flex flex-col;
@apply shadow-overlay bg-isa-white rounded-[1.25rem] max-h-[32.3rem];
@apply shadow-overlay bg-isa-white rounded-[1.25rem];
}