reference could not find style fix
This commit is contained in:
parent
2541cc7258
commit
078f5d0df1
|
@ -8,7 +8,7 @@
|
|||
<mat-error *ngIf="form.hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
||||
<mat-hint *ngIf="hint" align="start">{{hint}}</mat-hint>
|
||||
</mat-form-field>
|
||||
<small class="ml-auto inherit-mat-hint" *ngIf="!form.disabled">
|
||||
<small class="ml-auto inherit-mat-hint could-not-finded-container" *ngIf="!form.disabled">
|
||||
<span class="not-found">{{'REFERENCE-FIELD.COULD-NOT-FIND-MESSAGE' | translate}} </span>
|
||||
<span class="insert-manually" (click)="addReference($event)">{{'REFERENCE-FIELD.ACTIONS.INSERT-MANUALLY' | translate}}</span>
|
||||
</small>
|
||||
|
@ -22,7 +22,7 @@
|
|||
<mat-error *ngIf="form.hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
||||
<mat-hint *ngIf="hint" align="start">{{hint}}</mat-hint>
|
||||
</mat-form-field>
|
||||
<small class="ml-auto inherit-mat-hint" *ngIf="!form.disabled">
|
||||
<small class="ml-auto inherit-mat-hint could-not-finded-container" *ngIf="!form.disabled">
|
||||
<span class="not-found">{{'REFERENCE-FIELD.COULD-NOT-FIND-MESSAGE' | translate}} </span>
|
||||
<span class="insert-manually" (click)="addReference($event)">{{'REFERENCE-FIELD.ACTIONS.INSERT-MANUALLY' | translate}}</span>
|
||||
</small>
|
||||
|
|
|
@ -11,6 +11,10 @@
|
|||
padding: 0rem 0.5rem 0rem 0rem;
|
||||
}
|
||||
|
||||
.could-not-finded-container {
|
||||
margin-bottom: 3em;
|
||||
}
|
||||
|
||||
.inherit-mat-hint { //todo mchouliara move to styles.scss after accessibility refactor merge
|
||||
font-size: var(--mat-form-field-subscript-text-size);
|
||||
}
|
Loading…
Reference in New Issue