[AAE-6807] Left side labels for text widget

This commit is contained in:
Rubén Barroso
2022-05-09 16:20:47 +02:00
parent d4fe4a0869
commit 8d1d50cf55
3 changed files with 38 additions and 26 deletions

View File

@@ -89,7 +89,7 @@
} }
&-left-label { &-left-label {
font-size: var(--theme-caption-font-size); font-size: 12px;
line-height: 64px; line-height: 64px;
margin-right: 15px; margin-right: 15px;
} }

View File

@@ -1,9 +1,8 @@
<div class="adf-textfield adf-text-widget {{field.className}}" <div class="adf-textfield adf-text-widget {{field.className}}"
[class.adf-invalid]="!field.isValid && isTouched()" [class.adf-readonly]="field.readOnly"> [class.adf-invalid]="!field.isValid && isTouched()" [class.adf-readonly]="field.readOnly">
<mat-form-field [hideRequiredMarker]="true" [appearance]="field.compactFields ? 'outline' : 'legacy'" [class.adf-compact-field]="field.compactFields"> <label class="adf-left-label" *ngIf="field.compactFields" [attr.for]="field.id">{{field.name | translate }}<span class="adf-asterisk" *ngIf="isRequired()">*</span></label>
<mat-label *ngIf="field.compactFields" [attr.for]="field.id">{{field.name | translate }} <div>
<span class="adf-asterisk" *ngIf="isRequired()">*</span> <mat-form-field [hideRequiredMarker]="true">
</mat-label>
<label class="adf-label" *ngIf="!field.compactFields" [attr.for]="field.id">{{field.name | translate }}<span class="adf-asterisk" *ngIf="isRequired()">*</span></label> <label class="adf-label" *ngIf="!field.compactFields" [attr.for]="field.id">{{field.name | translate }}<span class="adf-asterisk" *ngIf="isRequired()">*</span></label>
<input matInput <input matInput
class="adf-input" class="adf-input"
@@ -21,6 +20,7 @@
matTooltipPosition="above" matTooltipPosition="above"
matTooltipShowDelay="1000"> matTooltipShowDelay="1000">
</mat-form-field> </mat-form-field>
<error-widget *ngIf="isTouched() && !this.field.isValid" [error]="field.validationSummary" class="a"></error-widget> <error-widget [error]="field.validationSummary"></error-widget>
<error-widget *ngIf="isInvalidFieldRequired() && isTouched()" required="{{ 'FORM.FIELD.REQUIRED' | translate }}" class="b"></error-widget> <error-widget *ngIf="isInvalidFieldRequired() && isTouched()" required="{{ 'FORM.FIELD.REQUIRED' | translate }}"></error-widget>
</div>
</div> </div>

View File

@@ -1,7 +1,19 @@
.adf { .adf {
&-text-widget { &-text-widget {
display: flex;
min-height: 4.2em !important;
height: 4.2em;
div {
width: 100%; width: 100%;
padding-right: 1%;
}
label {
width: 240px;
}
.mat-form-field-label-wrapper label { .mat-form-field-label-wrapper label {
top: 20px; top: 20px;