mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
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:
committed by
Lorenz Hilpert
parent
3696fb5b2d
commit
5711a75188
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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()"
|
||||
|
||||
@@ -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];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user