ui fix on description template editor

This commit is contained in:
Sofia Papacharalampous 2024-05-16 14:21:41 +03:00
parent 36a8936a95
commit 6dbc5a8189
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
<input [ngClass]="{'text-danger':form.get('title').invalid &&form.get('title').touched}" matInput type="text" [value]="numbering" disabled>
</mat-form-field> -->
<div class="col pl-0">
<mat-form-field class="w-100 field-title" floatLabel="never">
<mat-form-field class="w-100 field-title not-outlined-form-field" floatLabel="never">
<textarea matInput type="text" [placeholder]="('DESCRIPTION-TEMPLATE-EDITOR.STEPS.GENERAL-INFO.UNTITLED' | translate)+' '+('DESCRIPTION-TEMPLATE-EDITOR.STEPS.GENERAL-INFO.QUESTION'| translate)" #titleControl="matInput" [formControl]="this.form.get('title')" class="question-title"></textarea>
<mat-error *ngIf="this.form.get('title').hasError('backendError')">{{form.get('title').getError('backendError').message}}</mat-error>
</mat-form-field>

View File

@ -167,6 +167,6 @@ $blue-color-light: #5cf7f2;
font-size: 21px;
}
::ng-deep .mdc-text-field--outlined .mdc-notched-outline {
::ng-deep .not-outlined-form-field > .mdc-text-field--outlined .mdc-notched-outline {
display: none;
}