From c430f97aaa0d91ceb3af285a0100bbe85f6c7045 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 8 Sep 2022 19:24:40 +0200 Subject: [PATCH 1/3] fix: height of form elements --- .../entity-form/entity-form/entity-form.component.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/entity-components/entity-form/entity-form/entity-form.component.scss b/src/app/core/entity-components/entity-form/entity-form/entity-form.component.scss index 304c13a833..c79619a5d3 100644 --- a/src/app/core/entity-components/entity-form/entity-form/entity-form.component.scss +++ b/src/app/core/entity-components/entity-form/entity-form/entity-form.component.scss @@ -22,7 +22,7 @@ $max-screen-width: $min-block-width + $margin-main-view-right + $margin-main-vie @include adaptive-grid($min-block-width, $max-screen-width); align-items: start; position: relative; - height: calc(100vh - 240px); + max-height: calc(100vh - 240px); overflow: auto; } From f4f51d2bea2fd041f1e145e9909bc6f85d73a10e Mon Sep 17 00:00:00 2001 From: Schottkyc137 Date: Thu, 8 Sep 2022 20:05:45 +0200 Subject: [PATCH 2/3] fix: display entity component no longer wraps multiple lines --- .../display-entity/display-entity.component.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/core/entity-components/entity-utils/view-components/display-entity/display-entity.component.scss b/src/app/core/entity-components/entity-utils/view-components/display-entity/display-entity.component.scss index d2476c155f..28e5f846b7 100644 --- a/src/app/core/entity-components/entity-utils/view-components/display-entity/display-entity.component.scss +++ b/src/app/core/entity-components/entity-utils/view-components/display-entity/display-entity.component.scss @@ -5,3 +5,7 @@ .clickable:hover { text-decoration: underline; } + +:host { + display: inline-block; +} From 659541ab217684ddf3c4f35708480878fef69228 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 19 Sep 2022 16:06:23 +0200 Subject: [PATCH 3/3] removed vertical padding to prevent hidden title --- .../entity-utils/entity-select/entity-select.component.scss | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/core/entity-components/entity-utils/entity-select/entity-select.component.scss b/src/app/core/entity-components/entity-utils/entity-select/entity-select.component.scss index 5504cb490f..e14f5cd4fd 100644 --- a/src/app/core/entity-components/entity-utils/entity-select/entity-select.component.scss +++ b/src/app/core/entity-components/entity-utils/entity-select/entity-select.component.scss @@ -4,8 +4,6 @@ // Mat chip list overflows a little bit without this hack width: 98%; padding-left: 1px; - // fixes the vertical centering of this component - margin-top: -12px; } .chip {