diff options
| author | Insert5StarName <anime@shourai.de> | 2023-09-30 21:53:52 +0200 |
|---|---|---|
| committer | Insert5StarName <anime@shourai.de> | 2023-09-30 21:53:52 +0200 |
| commit | 7b179d3a92adb91e111aca111d7875bb99748002 (patch) | |
| tree | 7793951e2a791ba8f85810756401271376361ff8 /packages/frontend/src/components/MkUserSetupDialog.Privacy.vue | |
| parent | upd: change icon font (diff) | |
| download | sharkey-7b179d3a92adb91e111aca111d7875bb99748002.tar.gz sharkey-7b179d3a92adb91e111aca111d7875bb99748002.tar.bz2 sharkey-7b179d3a92adb91e111aca111d7875bb99748002.zip | |
work in progress icons
Diffstat (limited to 'packages/frontend/src/components/MkUserSetupDialog.Privacy.vue')
| -rw-r--r-- | packages/frontend/src/components/MkUserSetupDialog.Privacy.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue b/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue index 841ab5ba0c..07ea6d5849 100644 --- a/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue +++ b/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue @@ -9,7 +9,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkFolder> <template #label>{{ i18n.ts.makeFollowManuallyApprove }}</template> - <template #icon><i class="ti ti-lock"></i></template> + <template #icon><i class="ph-lock ph-bold ph-lg"></i></template> <template #suffix>{{ isLocked ? i18n.ts.on : i18n.ts.off }}</template> <MkSwitch v-model="isLocked">{{ i18n.ts.makeFollowManuallyApprove }}<template #caption>{{ i18n.ts.lockedAccountInfo }}</template></MkSwitch> @@ -17,7 +17,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkFolder> <template #label>{{ i18n.ts.hideOnlineStatus }}</template> - <template #icon><i class="ti ti-eye-off"></i></template> + <template #icon><i class="ph-eye-slash ph-bold ph-lg"></i></template> <template #suffix>{{ hideOnlineStatus ? i18n.ts.on : i18n.ts.off }}</template> <MkSwitch v-model="hideOnlineStatus">{{ i18n.ts.hideOnlineStatus }}<template #caption>{{ i18n.ts.hideOnlineStatusDescription }}</template></MkSwitch> @@ -25,7 +25,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkFolder> <template #label>{{ i18n.ts.noCrawle }}</template> - <template #icon><i class="ti ti-world-x"></i></template> + <template #icon><i class="ph-planet ph-bold ph-lg"></i></template> <template #suffix>{{ noCrawle ? i18n.ts.on : i18n.ts.off }}</template> <MkSwitch v-model="noCrawle">{{ i18n.ts.noCrawle }}<template #caption>{{ i18n.ts.noCrawleDescription }}</template></MkSwitch> @@ -33,7 +33,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkFolder> <template #label>{{ i18n.ts.preventAiLearning }}</template> - <template #icon><i class="ti ti-photo-shield"></i></template> + <template #icon><i class="ph-image-square ph-bold ph-lg-shield"></i></template> <template #suffix>{{ preventAiLearning ? i18n.ts.on : i18n.ts.off }}</template> <MkSwitch v-model="preventAiLearning">{{ i18n.ts.preventAiLearning }}<template #caption>{{ i18n.ts.preventAiLearningDescription }}</template></MkSwitch> |