minor ui fixes
This commit is contained in:
parent
2dfa34db40
commit
850eed05d0
|
@ -1,10 +1,12 @@
|
|||
<div class="form-content-editor-content">
|
||||
<div mat-dialog-title class="d-flex justify-content-between m-0">
|
||||
<span class="title">{{'GENERAL.FORM-VALIDATION-DISPLAY-DIALOG.WARNING' | translate}}</span>
|
||||
<mat-icon class="close-icon" (click)="onClose()">close</mat-icon>
|
||||
<div class="container-fluid">
|
||||
<div class="row mt-3">
|
||||
<div mat-dialog-title class="col-12 pr-1 d-flex justify-content-between">
|
||||
<span class="mr-3 title">{{'GENERAL.FORM-VALIDATION-DISPLAY-DIALOG.WARNING' | translate}}</span>
|
||||
<mat-icon class="close-icon" (click)="onClose()">close</mat-icon>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="col p-0">
|
||||
<div class="row mt-3 mr-3 mb-3">
|
||||
<div class="col-12">
|
||||
<ng-container *ngIf="errorMessages">
|
||||
<ul class="error-list" *ngIf="errorMessages.length > 1 else singleError">
|
||||
<li *ngFor="let error of errorMessages">{{error}}</li>
|
||||
|
@ -15,8 +17,8 @@
|
|||
</ng-template>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="col actions">
|
||||
<div class="row mt-3 mb-3">
|
||||
<div class="col-12 actions">
|
||||
<button mat-button type="button" class="ml-auto cancel-btn" (click)="onClose()">{{'GENERAL.FORM-VALIDATION-DISPLAY-DIALOG.ACTIONS.CANCEL' | translate}}</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue