Skip to content

Commit 175bd6b

Browse files
committed
Changing the icons for menu entries.
1 parent 10e7178 commit 175bd6b

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
lines changed

eform-client/src/app/plugins/modules/backend-configuration-pn/components/properties/properties-page/properties-table/properties-table.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
(click)="onShowEditPropertyModal(row)"
103103
[disabled]="!authStateService.checkClaim('property_edit') && (selectAuthIsAdmin$ | async) !== true"
104104
>
105-
<mat-icon>edit</mat-icon>
105+
<mat-icon fontSet="material-symbols-outlined">edit_square</mat-icon>
106106
<span>{{ 'Edit property' | translate }}</span>
107107
</button>
108108
<button
@@ -112,7 +112,7 @@
112112
(click)="onShowDeletePropertyModal(row)"
113113
[disabled]="!authStateService.checkClaim('property_delete') && (selectAuthIsAdmin$ | async) !== true"
114114
>
115-
<mat-icon color="warn">delete</mat-icon>
115+
<mat-icon color="warn" fontSet="material-symbols-outlined">delete</mat-icon>
116116
<span>{{ 'Delete property' | translate }}</span>
117117
</button>
118118
</mat-menu>

eform-client/src/app/plugins/modules/backend-configuration-pn/modules/area-rules/components/area-rules-table/area-rules-table.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ <h3>{{'Pools' | translate}}</h3>
8585
matTooltip="{{ 'Edit rule' | translate }}"
8686
(click)="onShowEditRuleModal(row)"
8787
[disabled]="row.planningStatus">
88-
<mat-icon>edit</mat-icon>
88+
<mat-icon fontSet="material-symbols-outlined">edit_square</mat-icon>
8989
</button>
9090
<button
9191
mat-icon-button

eform-client/src/app/plugins/modules/backend-configuration-pn/modules/documents/components/documents-folders/documents-folders/documents-folders.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h3 mat-dialog-title>{{ 'Folders management' | translate }}</h3>
2424
id="editTagBtn"
2525
matTooltip="{{'Edit folder' | translate}}"
2626
>
27-
<mat-icon>edit</mat-icon>
27+
<mat-icon fontSet="material-symbols-outlined">edit_square</mat-icon>
2828
</button>
2929
<button
3030
[disabled]="!folder.isDeletable"

eform-client/src/app/plugins/modules/backend-configuration-pn/modules/documents/components/documents-table/documents-table.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
id="editDocumentBtn-{{i}}"
7373
(click)="onShowEditDocumentModal(row)"
7474
>
75-
<mat-icon>edit</mat-icon>
75+
<mat-icon fontSet="material-symbols-outlined">edit_square</mat-icon>
7676
<span>{{ 'Edit document' | translate }}</span>
7777
</button>
7878

@@ -82,7 +82,7 @@
8282
id="deleteDocumentBtn-{{i}}"
8383
(click)="onOpenDeleteModal(row)"
8484
>
85-
<mat-icon color="warn">delete</mat-icon>
85+
<mat-icon color="warn" fontSet="material-symbols-outlined">delete</mat-icon>
8686
<span>{{ 'Delete document' | translate }}</span>
8787
</button>
8888
</mat-menu>

eform-client/src/app/plugins/modules/backend-configuration-pn/modules/files/components/files-actions/file-create/file-create.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<!-- (click)="editFile(file)"-->
9595
<!-- matTooltip="{{ 'Edit file' | translate }}"-->
9696
<!-- id="editFile{{i}}Btn">-->
97-
<!-- <mat-icon>edit</mat-icon>-->
97+
<!-- <mat-icon fontSet="material-symbols-outlined">edit_square</mat-icon>-->
9898
<!-- </button>-->
9999
<button
100100
mat-icon-button

eform-client/src/app/plugins/modules/backend-configuration-pn/modules/files/components/files-table/files-table.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
id="editTagsBtn-{{i}}"
7979
matTooltip="{{'Edit tags file' | translate}}"
8080
(click)="openEditTags(row)">
81-
<mat-icon>edit</mat-icon>
81+
<mat-icon fontSet="material-symbols-outlined">edit_square</mat-icon>
8282
</button>
8383
</div>
8484
</ng-template>
@@ -114,7 +114,7 @@
114114
class="deleteFileBtn"
115115
(click)="onOpenDeleteModal(row)"
116116
>
117-
<mat-icon color="warn">delete</mat-icon>
117+
<mat-icon color="warn" fontSet="material-symbols-outlined">delete</mat-icon>
118118
<span>{{ 'Delete file' | translate }}</span>
119119
</button>
120120
</mat-menu>

eform-client/src/app/plugins/modules/backend-configuration-pn/modules/property-workers/components/property-worker-table/property-worker-table.component.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
matTooltip="{{ 'New OTP' | translate }}"
111111
(click)="openOtpModal(row)"
112112
>
113-
<mat-icon>key</mat-icon>
113+
<mat-icon fontSet="material-symbols-outlined">key</mat-icon>
114114
</button>
115115
</ng-container>
116116
<ng-container *ngIf="!row.unitId"> N/A</ng-container>
@@ -133,7 +133,7 @@
133133
id="editAssignmentsBtn-{{i}}"
134134
[routerLink]="['/plugins/backend-configuration-pn/task-worker-assignments/' + row.siteId]"
135135
>
136-
<mat-icon>visibility</mat-icon>
136+
<mat-icon fontSet="material-symbols-outlined">visibility</mat-icon>
137137
<span>{{ 'Show assignments' | translate }}</span>
138138
</button>
139139
<button
@@ -142,7 +142,7 @@
142142
id="editDeviceUserBtn-{{i}}"
143143
(click)="openEditModal(row)"
144144
>
145-
<mat-icon>edit</mat-icon>
145+
<mat-icon fontSet="material-symbols-outlined">edit_square</mat-icon>
146146
<span>{{ 'Edit Device User' | translate }}</span>
147147
</button>
148148
<button
@@ -152,7 +152,7 @@
152152
id="deleteDeviceUserBtn-{{i}}"
153153
(click)="openDeleteDeviceUserModal(row)"
154154
>
155-
<mat-icon color="warn">delete</mat-icon>
155+
<mat-icon color="warn" fontSet="material-symbols-outlined">delete</mat-icon>
156156
<span>{{ 'Delete Device User' | translate }}</span>
157157
</button>
158158
</mat-menu>
@@ -164,7 +164,7 @@
164164
<ng-container *ngIf="row['manufacturer'] === 'iOS' ">
165165
<div class="manufacturer" id="manufacturer-{{row.id}}">
166166
<span [matTooltip]="row['deviceModel']" class="neutral-icon">
167-
<mat-icon>phone_iphone</mat-icon>
167+
<mat-icon fontSet="material-symbols-outlined">ios</mat-icon>
168168
</span>
169169
{{ row.model }} ({{ row.osVersion }})
170170
</div>

eform-client/src/app/plugins/modules/backend-configuration-pn/modules/task-management/components/task-management-table/task-management-table.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
class="taskManagementViewBtn"
7070
(click)="onOpenViewModal(row.id)"
7171
>
72-
<mat-icon>edit</mat-icon>
72+
<mat-icon fontSet="material-symbols-outlined">edit_square</mat-icon>
7373
<span>{{ 'Edit task' | translate }}</span>
7474
</button>
7575
<button
@@ -78,7 +78,7 @@
7878
class="taskManagementDeleteTaskBtn"
7979
(click)="onOpenDeleteModal(row)"
8080
>
81-
<mat-icon color="warn">delete</mat-icon>
81+
<mat-icon color="warn" fontSet="material-symbols-outlined">delete</mat-icon>
8282
<span>{{ 'Delete task' | translate }}</span>
8383
</button>
8484
</mat-menu>

eform-client/src/app/plugins/modules/backend-configuration-pn/modules/task-tracker/components/task-tracker-table/task-tracker-table.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
id="editTaskBtn-{{i}}"
3737
(click)="redirectToCompliance(row)"
3838
>
39-
<mat-icon>edit</mat-icon>
39+
<mat-icon fontSet="material-symbols-outlined">edit_square</mat-icon>
4040
<span>{{ 'Edit' | translate }}</span>
4141
</button>
4242
<button

eform-client/src/app/plugins/modules/backend-configuration-pn/modules/task-wizard/components/task-wizard-table/task-wizard-table.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
id="editTaskBtn-{{i}}"
9797
(click)="editTask.emit(row)"
9898
>
99-
<mat-icon>edit</mat-icon>
99+
<mat-icon fontSet="material-symbols-outlined">edit_square</mat-icon>
100100
<span>{{ 'Edit task' | translate }}</span>
101101
</button>
102102

@@ -116,7 +116,7 @@
116116
id="deleteTaskBtn-{{i}}"
117117
(click)="deleteTask.emit(row)"
118118
>
119-
<mat-icon color="warn">delete</mat-icon>
119+
<mat-icon color="warn" fontSet="material-symbols-outlined">delete</mat-icon>
120120
<span>{{ 'Delete task' | translate }}</span>
121121
</button>
122122
</mat-menu>

0 commit comments

Comments
 (0)