implenter dialog padding

main
Said Gedik 2024-08-12 11:14:52 +02:00
parent 8283019dca
commit 549bb60c44
1 changed files with 18 additions and 14 deletions

View File

@ -1,17 +1,21 @@
<p style="margin-top: -3%;">{{this.languageService.lMap.get('implementerDialogHeading')}}</p>
<mat-form-field appearance="fill" >
<mat-label>{{this.languageService.lMap.get('implementerDialogLabel')}}</mat-label>
<mat-select [disabled]="diasbled" (selectionChange)="enableButton()" [(ngModel)]="selectedValue" name="state">
<mat-option *ngFor="let implementer of possibleImplementers" [value]="implementer.value">
{{implementer.viewValue}}
</mat-option>
</mat-select>
</mat-form-field>
<mat-progress-bar mode="determinate" [value]="progress"></mat-progress-bar>
<div style="padding: 20px;">
<p style="margin-top: -3%;">{{this.languageService.lMap.get('implementerDialogHeading')}}</p>
<mat-form-field appearance="fill">
<mat-label>{{this.languageService.lMap.get('implementerDialogLabel')}}</mat-label>
<mat-select [disabled]="diasbled" (selectionChange)="enableButton()" [(ngModel)]="selectedValue" name="state">
<mat-option *ngFor="let implementer of possibleImplementers" [value]="implementer.value">
{{implementer.viewValue}}
</mat-option>
</mat-select>
</mat-form-field>
<mat-progress-bar mode="determinate" [value]="progress"></mat-progress-bar>
<mat-dialog-actions align = "end">
<button [disabled]="diasbled" mat-raised-button matDialogClose>{{this.languageService.lMap.get('implementerDialogCancel')}}</button>
<button [disabled]="bdiasbled" mat-raised-button color="primary" (click)="updateImplementer()">{{this.languageService.lMap.get('implementerDialogApply')}}</button>
</mat-dialog-actions>
<mat-dialog-actions align="end">
<button [disabled]="diasbled" mat-raised-button
matDialogClose>{{this.languageService.lMap.get('implementerDialogCancel')}}</button>
<button [disabled]="bdiasbled" mat-raised-button color="primary"
(click)="updateImplementer()">{{this.languageService.lMap.get('implementerDialogApply')}}</button>
</mat-dialog-actions>
</div>