Skip to content

Commit 863de5c

Browse files
bodnaraHejdaJakub
authored andcommitted
fix: migration to bootstrap 5
Renamed the following classes * left-* to start-* * right-* to end-* * ml-* to ms-* * mr-* to me-* * pl-* to ps-* * pr-* to pe-* * font-weight-* to fw-*
1 parent b332ca1 commit 863de5c

File tree

149 files changed

+386
-419
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+386
-419
lines changed

apps/admin-gui/src/app/admin/pages/admin-page/admin-page.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="container-fluid pl-xl-5 pr-xl-5 admin-theme">
1+
<div class="container-fluid ps-xl-5 pe-xl-5 admin-theme">
22
<perun-web-apps-back-button> </perun-web-apps-back-button>
33
<h1 class="page-title d-flex">
44
<mat-icon

apps/admin-gui/src/app/admin/pages/admin-page/admin-searcher/admin-searcher.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ <h1 class="page-subtitle">{{'ADMIN.SEARCHER.TITLE' | translate}}</h1>
8888
</ng-template>
8989
</mat-tab>
9090
</mat-tab-group>
91-
<mat-spinner class="ml-auto mr-auto" *ngIf="loading || loadingEntityData"></mat-spinner>
91+
<mat-spinner class="ms-auto me-auto" *ngIf="loading || loadingEntityData"></mat-spinner>

apps/admin-gui/src/app/admin/pages/admin-page/admin-services/service-detail-page/service-detail-page.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<div class="container-fluid pl-xl-5 pr-xl-5 service-theme">
1+
<div class="container-fluid ps-xl-5 pe-xl-5 service-theme">
22
<perun-web-apps-back-button> </perun-web-apps-back-button>
3-
<mat-spinner *ngIf="loading" class="ml-auto mr-auto"></mat-spinner>
3+
<mat-spinner *ngIf="loading" class="ms-auto me-auto"></mat-spinner>
44
<div *ngIf="!loading" class="page-title-headtitle detail-layout">
55
<mat-icon
66
matTooltip="{{'SERVICE_DETAIL.ENTITY' | translate}}"

apps/admin-gui/src/app/admin/pages/admin-page/admin-visualizer/user-destination-relationship/user-destination-graph/user-destination-graph.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ <h1 class="page-subtitle">
22
{{'ADMIN.VISUALIZER.USER_DESTINATION.TITLE' | translate}}
33
</h1>
44
<div *ngIf="loading; else elseBlock">
5-
<mat-spinner class="ml-auto mr-auto"></mat-spinner>
5+
<mat-spinner class="ms-auto me-auto"></mat-spinner>
66
</div>
77

88
<ng-template #elseBlock>

apps/admin-gui/src/app/admin/pages/admin-user-detail-page/admin-user-detail-page.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<div class="container-fluid pl-xl-5 pr-xl-5 user-theme">
1+
<div class="container-fluid ps-xl-5 pe-xl-5 user-theme">
22
<perun-web-apps-back-button> </perun-web-apps-back-button>
3-
<mat-spinner *ngIf="loading" class="mr-auto ml-auto"></mat-spinner>
3+
<mat-spinner *ngIf="loading" class="me-auto ms-auto"></mat-spinner>
44
<div *ngIf="!loading && user !== undefined" class="d-flex page-title-headtitle">
55
<mat-icon
66
class="perun-icon perun-icon-detail"
@@ -28,7 +28,7 @@
2828
<mat-icon
2929
*ngIf="anonymized"
3030
matTooltip="{{'USER_DETAIL.DASHBOARD.ANONYMIZED' | translate}}"
31-
class="mat-icon-war ml-2">
31+
class="mat-icon-war ms-2">
3232
blur_off
3333
</mat-icon>
3434
</span>

apps/admin-gui/src/app/facilities/components/cancel-configuration-dialog/cancel-configuration-dialog.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ <h1 mat-dialog-title>{{title | translate}}</h1>
44
<i [innerHTML]="info | translate"></i>
55
</div>
66
<div *ngIf="!loading" matDialogActions>
7-
<button (click)="onCancel()" class="mr-2" mat-flat-button>
7+
<button (click)="onCancel()" class="me-2" mat-flat-button>
88
{{'DIALOGS.CANCEL_CONFIG.CANCEL' | translate}}
99
</button>
10-
<button (click)="onDelete()" class="ml-auto mr-2" color="warn" mat-flat-button>
10+
<button (click)="onDelete()" class="ms-auto me-2" color="warn" mat-flat-button>
1111
<mat-icon> warning </mat-icon>
1212
{{'DIALOGS.CANCEL_CONFIG.DELETE' | translate}}
1313
</button>

apps/admin-gui/src/app/facilities/components/config-unsaved-dialog/config-unsaved-dialog.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ <h1 mat-dialog-title>{{'DIALOGS.CONFIG_UNSAVED.TITLE' | translate}}</h1>
44
{{'DIALOGS.CONFIG_UNSAVED.INFO' | translate}}
55
</div>
66
<div matDialogActions>
7-
<button (click)="onCancel()" class="ml-auto mr-2" mat-flat-button>
7+
<button (click)="onCancel()" class="ms-auto me-2" mat-flat-button>
88
{{'DIALOGS.CONFIG_UNSAVED.CANCEL' | translate}}
99
</button>
1010
<button (click)="onSkip()" color="accent" mat-flat-button>

apps/admin-gui/src/app/facilities/components/no-service-dialog/no-service-dialog.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ <h1 mat-dialog-title>{{'DIALOGS.NO_SERVICE.TITLE' | translate}}</h1>
44
{{'DIALOGS.NO_SERVICE.INFO' | translate}}
55
</div>
66
<div matDialogActions>
7-
<button (click)="onCancel()" class="ml-auto mr-2" mat-flat-button>
7+
<button (click)="onCancel()" class="ms-auto me-2" mat-flat-button>
88
{{'DIALOGS.NO_SERVICE.CANCEL' | translate}}
99
</button>
1010
<button (click)="onSkip()" color="accent" mat-flat-button>

apps/admin-gui/src/app/facilities/pages/facility-detail-page/facility-detail-page.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<div class="container-fluid pl-xl-5 pr-xl-5 facility-theme">
1+
<div class="container-fluid ps-xl-5 pe-xl-5 facility-theme">
22
<perun-web-apps-back-button> </perun-web-apps-back-button>
3-
<mat-spinner *ngIf="loading" class="mr-auto ml-auto"></mat-spinner>
3+
<mat-spinner *ngIf="loading" class="me-auto ms-auto"></mat-spinner>
44
<div *ngIf="!loading && facility !== undefined">
55
<div class="d-flex page-title-headtitle">
66
<mat-icon

apps/admin-gui/src/app/facilities/pages/facility-detail-page/facility-overview/facility-overview.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<mat-spinner *ngIf="loading" class="mr-auto ml-auto"></mat-spinner>
1+
<mat-spinner *ngIf="loading" class="me-auto ms-auto"></mat-spinner>
22
<div *ngIf="!loading">
33
<perun-web-apps-menu-buttons-field
44
[items]="navItems"

apps/admin-gui/src/app/facilities/pages/facility-detail-page/facility-settings/facility-settings-bans/facility-settings-bans.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ <h1 class="page-subtitle">
33
</h1>
44

55
<perun-web-apps-refresh-button (click)="refresh()"></perun-web-apps-refresh-button>
6-
<button (click)="add()" *ngIf="addAuth" class="mr-2 action-button" color="accent" mat-flat-button>
6+
<button (click)="add()" *ngIf="addAuth" class="me-2 action-button" color="accent" mat-flat-button>
77
{{'FACILITY_DETAIL.SETTINGS.BANS.ADD' | translate}}
88
</button>
99
<button
1010
*ngIf="removeAuth"
1111
(click)="remove()"
1212
color="warn"
1313
[disabled]="selection.selected.length === 0"
14-
class="mr-2"
14+
class="me-2"
1515
mat-flat-button>
1616
{{'FACILITY_DETAIL.SETTINGS.BANS.REMOVE' | translate}}
1717
</button>

apps/admin-gui/src/app/facilities/pages/facility-detail-page/facility-settings/facility-settings-overview/facility-settings-overview.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<mat-spinner *ngIf="loading" class="mr-auto ml-auto"></mat-spinner>
1+
<mat-spinner *ngIf="loading" class="me-auto ms-auto"></mat-spinner>
22
<div *ngIf="!loading">
33
<perun-web-apps-menu-buttons-field
44
[items]="items"

apps/admin-gui/src/app/facilities/pages/resource-detail-page/resource-detail-page.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<div class="container-fluid pl-xl-5 pr-xl-5 resource-theme">
1+
<div class="container-fluid ps-xl-5 pe-xl-5 resource-theme">
22
<perun-web-apps-back-button> </perun-web-apps-back-button>
3-
<mat-spinner *ngIf="loading" class="mr-auto ml-auto"></mat-spinner>
3+
<mat-spinner *ngIf="loading" class="me-auto ms-auto"></mat-spinner>
44
<div *ngIf="!loading && resource !== undefined">
55
<div class="d-flex page-title-headtitle">
66
<mat-icon

apps/admin-gui/src/app/facilities/pages/resource-detail-page/resource-overview/resource-overview.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<mat-spinner *ngIf="loading" class="mr-auto ml-auto"></mat-spinner>
1+
<mat-spinner *ngIf="loading" class="me-auto ms-auto"></mat-spinner>
22
<div *ngIf="!loading">
33
<perun-web-apps-menu-buttons-field
44
[items]="navItems"

apps/admin-gui/src/app/facilities/pages/resource-detail-page/resource-settings/resource-settings-bans/resource-settings-bans.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ <h1 class="page-subtitle">
33
</h1>
44

55
<perun-web-apps-refresh-button (click)="refresh()"></perun-web-apps-refresh-button>
6-
<button (click)="add()" *ngIf="addAuth" class="mr-2 action-button" color="accent" mat-flat-button>
6+
<button (click)="add()" *ngIf="addAuth" class="me-2 action-button" color="accent" mat-flat-button>
77
{{'RESOURCE_DETAIL.SETTINGS.BANS.ADD' | translate}}
88
</button>
99
<button
1010
*ngIf="removeAuth"
1111
(click)="remove()"
1212
color="warn"
1313
[disabled]="selection.selected.length === 0"
14-
class="mr-2"
14+
class="me-2"
1515
mat-flat-button>
1616
{{'RESOURCE_DETAIL.SETTINGS.BANS.REMOVE' | translate}}
1717
</button>

apps/admin-gui/src/app/facilities/pages/resource-detail-page/resource-settings/resource-settings-overview/resource-settings-overview.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<mat-spinner *ngIf="loading" class="mr-auto ml-auto"></mat-spinner>
1+
<mat-spinner *ngIf="loading" class="me-auto ms-auto"></mat-spinner>
22
<div *ngIf="!loading">
33
<perun-web-apps-menu-buttons-field
44
[items]="items"

apps/admin-gui/src/app/main-menu-page/main-menu-page.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="buttons-container pl-2 pr-2 pl-xl-5 pr-xl-5">
1+
<div class="buttons-container ps-2 pe-2 ps-xl-5 pe-xl-5">
22
<a class="main-menu-button user-btn" [routerLink]="['profile']" mat-ripple>
33
<mat-icon [svgIcon]="'perun-user'" class="item-pic perun-icon"></mat-icon>
44
<!-- <img src="assets/img/PerunWebImages/user-white.svg">-->

apps/admin-gui/src/app/shared/components/dialogs/add-application-form-item-dialog/add-application-form-item-dialog.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ <h1 mat-dialog-title>{{'DIALOGS.APPLICATION_FORM_ADD_ITEM.TITLE' | translate}}</
2929
</div>
3030

3131
<div mat-dialog-actions>
32-
<button (click)="cancel()" class="ml-auto" mat-flat-button>
32+
<button (click)="cancel()" class="ms-auto" mat-flat-button>
3333
{{'DIALOGS.APPLICATION_FORM_ADD_ITEM.CANCEL' | translate}}
3434
</button>
3535
<button
3636
[disabled]="nameCtrl.invalid"
3737
(click)="submit()"
38-
class="ml-2"
38+
class="ms-2"
3939
color="accent"
4040
data-cy="add-form-item-button-dialog"
4141
mat-flat-button>

apps/admin-gui/src/app/shared/components/dialogs/add-edit-notification-dialog/tag-bar/tag-bar.component.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
{{'DIALOGS.NOTIFICATIONS_ADD_EDIT_MAIL.TAGS_DESCRIPTION' | translate}}
33
</perun-web-apps-alert>
44
<div cdkScrollable class="scrollable">
5-
<div class="font-weight-bold">
5+
<div class="fw-bold">
66
{{'DIALOGS.NOTIFICATIONS_ADD_EDIT_MAIL.APPLICATION_RELATED_SECTION' | translate}}:
77
</div>
88
<app-tag-section (addedTag)="addTag($event)" [tags]="applicationRelatedTags"> </app-tag-section>
99

10-
<div class="font-weight-bold pt-2">
10+
<div class="fw-bold pt-2">
1111
{{'DIALOGS.NOTIFICATIONS_ADD_EDIT_MAIL.USER_RELATED_SECTION' | translate}}:
1212
</div>
1313

1414
<app-tag-section (addedTag)="addTag($event)" [tags]="userRelatedTags"> </app-tag-section>
1515

16-
<div class="font-weight-bold pt-2">
16+
<div class="fw-bold pt-2">
1717
{{'DIALOGS.NOTIFICATIONS_ADD_EDIT_MAIL.VALIDATION_LINKS_USERS_SECTION' | translate}}:
1818
</div>
1919

@@ -23,7 +23,7 @@
2323

2424
<app-tag-section (addedTag)="addTag($event)" [tags]="validationLinksUsersTags"> </app-tag-section>
2525

26-
<div class="font-weight-bold pt-2">
26+
<div class="fw-bold pt-2">
2727
{{'DIALOGS.NOTIFICATIONS_ADD_EDIT_MAIL.APPLICATION_LINKS_USERS_SECTION' | translate}}:
2828
</div>
2929

@@ -34,7 +34,7 @@
3434
<app-tag-section (addedTag)="addTag($event)" [tags]="applicationLinksUsersTags">
3535
</app-tag-section>
3636

37-
<div class="font-weight-bold pt-2">
37+
<div class="fw-bold pt-2">
3838
{{'DIALOGS.NOTIFICATIONS_ADD_EDIT_MAIL.APPLICATION_LINKS_ADMINISTRATOR_SECTION' | translate}}:
3939
</div>
4040

@@ -45,7 +45,7 @@
4545
<app-tag-section (addedTag)="addTag($event)" [tags]="applicationLinksAdministratorsTags">
4646
</app-tag-section>
4747

48-
<div class="font-weight-bold pt-2">
48+
<div class="fw-bold pt-2">
4949
{{'DIALOGS.NOTIFICATIONS_ADD_EDIT_MAIL.PERUN_LINKS_ADMINISTRATOR_SECTION' | translate}}:
5050
</div>
5151

@@ -56,7 +56,7 @@
5656
<app-tag-section (addedTag)="addTag($event)" [tags]="perunLinksAdministratorsTags">
5757
</app-tag-section>
5858

59-
<div class="font-weight-bold pt-2">
59+
<div class="fw-bold pt-2">
6060
{{'DIALOGS.NOTIFICATIONS_ADD_EDIT_MAIL.USER_INVITATIONS_SECTION' | translate}}:
6161
</div>
6262

apps/admin-gui/src/app/shared/components/dialogs/audit-message-detail-dialog/audit-message-detail-dialog.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h1 mat-dialog-title>
2828
</mat-tab-group>
2929
</div>
3030
<div mat-dialog-actions>
31-
<button (click)="onClose()" class="ml-auto" mat-flat-button>
31+
<button (click)="onClose()" class="ms-auto" mat-flat-button>
3232
{{'DIALOGS.AUDIT_MESSAGE_DETAIL.CLOSE' | translate}}
3333
</button>
3434
<button (click)="tabIndex === 0 ? copyObjects() : copyMessage()" mat-button>

apps/admin-gui/src/app/shared/components/dialogs/create-resource-dialog/create-resource-dialog.component.html

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,14 @@
1212

1313
<mat-form-field>
1414
<mat-label>{{'DIALOGS.CREATE_RESOURCE.NAME' | translate}}</mat-label>
15-
<input
16-
matInput
17-
[formControl]="nameCtrl"
18-
data-cy="create-resource-name-input"
19-
required />
15+
<input matInput [formControl]="nameCtrl" data-cy="create-resource-name-input" required />
2016
<mat-error>
2117
{{'DIALOGS.CREATE_RESOURCE.INCORRECT_NAME' | translate}}
2218
</mat-error>
2319
</mat-form-field>
2420
<mat-form-field>
2521
<mat-label>{{'DIALOGS.CREATE_RESOURCE.DESCRIPTION' | translate}}</mat-label>
26-
<input
27-
matInput
28-
[formControl]="descriptionCtrl" />
22+
<input matInput [formControl]="descriptionCtrl" />
2923
<mat-error>
3024
{{'DIALOGS.CREATE_RESOURCE.FILL_DESCRIPTION' | translate}}
3125
</mat-error>

apps/admin-gui/src/app/shared/components/dialogs/delete-application-form-item-dialog/delete-application-form-item-dialog.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<h1 mat-dialog-title>{{'DIALOGS.DELETE_APPLICATION_FORM_ITEM.TITLE' | translate}}</h1>
22
<div class="dialog-container" mat-dialog-content>
3-
<div class="pb-2 font-weight-bold">
3+
<div class="pb-2 fw-bold">
44
{{'DIALOGS.DELETE_APPLICATION_FORM_ITEM.INFO_1' | translate}}
55
</div>
66
<div>{{'DIALOGS.DELETE_APPLICATION_FORM_ITEM.INFO_2' | translate}}</div>
77
<div class="pb-4 pt-2">{{'DIALOGS.DELETE_APPLICATION_FORM_ITEM.INFO_3' | translate}}</div>
88
</div>
99
<div mat-dialog-actions>
10-
<button (click)="onCancel()" class="ml-auto" mat-flat-button>
10+
<button (click)="onCancel()" class="ms-auto" mat-flat-button>
1111
{{'DIALOGS.DELETE_APPLICATION_FORM_ITEM.CANCEL_BUTTON' | translate}}
1212
</button>
1313
<button
1414
(click)="submit()"
15-
class="ml-2"
15+
class="ms-2"
1616
color="warn"
1717
data-cy="delete-application-form-item-dialog"
1818
mat-flat-button>

apps/admin-gui/src/app/shared/components/dialogs/disconnect-identity-dialog/disconnect-identity-dialog.component.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ <h1 mat-dialog-title>{{'DIALOGS.DISCONNECT_IDENTITY.TITLE_'+targetTitle | transl
22
<div class="{{theme}}">
33
<div mat-dialog-content>
44
<p>{{'DIALOGS.DISCONNECT_IDENTITY.DESCRIPTION_'+targetDescription | translate}}</p>
5-
<div class="font-weight-bold">
5+
<div class="fw-bold">
66
{{'DIALOGS.DISCONNECT_IDENTITY.ASK' | translate}}
77
</div>
88
<table [dataSource]="dataSource" class="w-100" mat-table>
99
<ng-container matColumnDef="name">
1010
<th *matHeaderCellDef mat-header-cell></th>
1111
<td *matCellDef="let identity" mat-cell>{{identity | userFullName}}</td>
1212
</ng-container>
13-
<tr *matHeaderRowDef="displayedColumns" class="font-weight-bolder" mat-header-row></tr>
13+
<tr *matHeaderRowDef="displayedColumns" class="fw-bolder" mat-header-row></tr>
1414
<tr *matRowDef="let identity; columns: displayedColumns;" mat-row></tr>
1515
</table>
1616
<perun-web-apps-alert *ngIf="disconnectingSelf" alert_type="warn">
@@ -21,10 +21,10 @@ <h1 mat-dialog-title>{{'DIALOGS.DISCONNECT_IDENTITY.TITLE_'+targetTitle | transl
2121
</perun-web-apps-alert>
2222
</div>
2323
<div mat-dialog-actions>
24-
<button (click)="onCancel()" class="ml-auto" mat-flat-button>
24+
<button (click)="onCancel()" class="ms-auto" mat-flat-button>
2525
{{'DIALOGS.DISCONNECT_IDENTITY.CANCEL' | translate}}
2626
</button>
27-
<button (click)="onConfirm()" class="ml-2" color="warn" mat-flat-button>
27+
<button (click)="onConfirm()" class="ms-2" color="warn" mat-flat-button>
2828
{{'DIALOGS.DISCONNECT_IDENTITY.REMOVE' | translate}}
2929
</button>
3030
</div>

apps/admin-gui/src/app/shared/components/dialogs/edit-application-form-item-dialog/edit-application-form-item-line/edit-application-form-item-line.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="d-flex">
2-
<span class="w-25 m-auto font-weight-bold">{{label}}:</span>
2+
<span class="w-25 m-auto fw-bold">{{label}}:</span>
33
<div class="w-75">
44
<ng-content></ng-content>
55
</div>

apps/admin-gui/src/app/shared/components/dialogs/edit-enforce-consents-dialog/edit-enforce-consents-dialog.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ <h1 mat-dialog-title>
2222
</perun-web-apps-alert>
2323
</div>
2424
<div mat-dialog-actions>
25-
<button mat-flat-button class="ml-auto" (click)="onCancel()">
25+
<button mat-flat-button class="ms-auto" (click)="onCancel()">
2626
{{'DIALOGS.EDIT_ENFORCE_CONSENTS_FLAG.CANCEL_BUTTON' | translate}}
2727
</button>
28-
<button mat-flat-button class="ml-2" color="accent" (click)="onSubmit()">
28+
<button mat-flat-button class="ms-2" color="accent" (click)="onSubmit()">
2929
{{this.data.enforceConsents
3030
? ('DIALOGS.EDIT_ENFORCE_CONSENTS_FLAG.DISABLE_BUTTON' | translate)
3131
: ('DIALOGS.EDIT_ENFORCE_CONSENTS_FLAG.ENFORCE_BUTTON' | translate)}}

apps/admin-gui/src/app/shared/components/dialogs/edit-user-dialog/edit-user-dialog.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ <h1 class="mat-dialog-title">{{'DIALOGS.EDIT_USER.DIALOG_TITLE' | translate}}</h
4343
</mat-form-field>
4444
</div>
4545
<div mat-dialog-actions>
46-
<button (click)="onCancel()" class="ml-auto" mat-flat-button>
46+
<button (click)="onCancel()" class="ms-auto" mat-flat-button>
4747
{{'DIALOGS.EDIT_USER.CANCEL' | translate}}
4848
</button>
4949
<button
5050
(click)="onSave()"
51-
class="ml-2"
51+
class="ms-2"
5252
color="accent"
5353
[disabled]="loading || firstName.invalid || lastName.invalid || titleBefore.invalid || titleAfter.invalid || middleName.invalid"
5454
data-cy="user-save-button"

apps/admin-gui/src/app/shared/components/dialogs/new-version-dialog/new-version-dialog.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ <h1 mat-dialog-title>{{'DIALOGS.NEW_VERSION.TITLE' | translate}}</h1>
88
</div>
99

1010
<div mat-dialog-actions>
11-
<button (click)="onClose()" class="ml-auto" mat-flat-button>
11+
<button (click)="onClose()" class="ms-auto" mat-flat-button>
1212
{{'DIALOGS.NEW_VERSION.LATER' | translate}}
1313
</button>
14-
<button (click)="onReload()" class="ml-2" color="accent" mat-flat-button>
14+
<button (click)="onReload()" class="ms-2" color="accent" mat-flat-button>
1515
{{'DIALOGS.NEW_VERSION.RELOAD' | translate}}
1616
</button>
1717
</div>

0 commit comments

Comments
 (0)