Skip to content
Snippets Groups Projects
Commit c6bdbd42 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-4527 fix layout and form validation

OZG-4527 WIP form errors
parent e5b13922
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
unter der Lizenz sind dem Lizenztext zu entnehmen. unter der Lizenz sind dem Lizenztext zu entnehmen.
--> -->
<mat-form-field class="compact-input" appearance="{{appearance}}" [floatLabel]="readOnly || autoFocus ? 'always' : 'auto'"> <mat-form-field subscriptSizing="dynamic" class="compact-input" appearance="{{appearance}}" [floatLabel]="readOnly || autoFocus ? 'always' : 'auto'">
<mat-label>{{ label }}</mat-label> <mat-label>{{ label }}</mat-label>
<div class="wrapper"> <div class="wrapper">
<input #inputElement <input #inputElement
...@@ -34,7 +34,8 @@ ...@@ -34,7 +34,8 @@
[readonly]="readOnly" [readonly]="readOnly"
(blur)="touch()" (blur)="touch()"
[attr.data-test-id]="(label | convertForDataTest) + '-text-input'" [attr.data-test-id]="(label | convertForDataTest) + '-text-input'"
[class.with-clear-button]="showClearButton$ | async"/> [class.with-clear-button]="showClearButton$ | async"
/>
<button *ngIf="showClearButton$ | async" <button *ngIf="showClearButton$ | async"
data-test-id="clear-button" data-test-id="clear-button"
class="clear-button" class="clear-button"
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
} }
::ng-deep .mat-mdc-form-field-subscript-wrapper { ::ng-deep .mat-mdc-form-field-subscript-wrapper {
display: none; //display: none;
} }
} }
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
grid-template-columns: min-content auto min-content; grid-template-columns: min-content auto min-content;
grid-column-gap: 0.5rem; grid-column-gap: 0.5rem;
grid-row-gap: 0.25rem; grid-row-gap: 0.25rem;
align-items: center; align-items: flex-start;
grid-template-areas: grid-template-areas:
'az_icon az_text paste_icon' 'az_icon az_text paste_icon'
'. hinweis .'; '. hinweis .';
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
.az_icon { .az_icon {
grid-area: az_icon; grid-area: az_icon;
color: #c2c2c2; color: #c2c2c2;
margin-top: 12px;
&--active { &--active {
color: black; color: black;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment