diff --git a/packages/frontend/src/pages/admin/index.vue b/packages/frontend/src/pages/admin/index.vue index 7d03b857d2..26ef540563 100644 --- a/packages/frontend/src/pages/admin/index.vue +++ b/packages/frontend/src/pages/admin/index.vue @@ -107,7 +107,7 @@ const menuDef = computed(() => [{ }, { title: i18n.ts.administration, items: [{ - icon: 'ph-gauge ph-bold ph-lg', + icon: 'ti ti-dashboard', text: i18n.ts.dashboard, to: '/admin/overview', active: currentPage.value?.route.name === 'overview', diff --git a/packages/frontend/src/pages/admin/overview.vue b/packages/frontend/src/pages/admin/overview.vue index bf766600e5..1de4dc0dc8 100644 --- a/packages/frontend/src/pages/admin/overview.vue +++ b/packages/frontend/src/pages/admin/overview.vue @@ -186,7 +186,7 @@ const headerTabs = computed(() => []); definePageMetadata(() => ({ title: i18n.ts.dashboard, - icon: 'ph-gauge ph-bold ph-lg', + icon: 'ti ti-dashboard', })); diff --git a/packages/frontend/src/pages/channel.vue b/packages/frontend/src/pages/channel.vue index 930cbebb00..76c36fda86 100644 --- a/packages/frontend/src/pages/channel.vue +++ b/packages/frontend/src/pages/channel.vue @@ -229,7 +229,7 @@ const headerActions = computed(() => { }]; headerItems.push({ - icon: 'ph-share-network ph-bold ph-lg', + icon: 'ti ti-link', text: i18n.ts.copyUrl, handler: async (): Promise => { if (!channel.value) { @@ -243,7 +243,7 @@ const headerActions = computed(() => { if (isSupportShare()) { headerItems.push({ - icon: 'ph-share-network ph-bold ph-lg', + icon: 'ti ti-share', text: i18n.ts.share, handler: async (): Promise => { if (!channel.value) { diff --git a/packages/frontend/src/pages/channels.vue b/packages/frontend/src/pages/channels.vue index 40cae9ead6..a88ade14eb 100644 --- a/packages/frontend/src/pages/channels.vue +++ b/packages/frontend/src/pages/channels.vue @@ -149,7 +149,7 @@ const headerTabs = computed(() => [{ }, { key: 'owned', title: i18n.ts._channel.owned, - icon: 'ph-pencil-simple-line ph-bold ph-lg', + icon: 'ti ti-edit', }]); definePageMetadata(() => ({ diff --git a/packages/frontend/src/pages/clip.vue b/packages/frontend/src/pages/clip.vue index c9aaeb96e5..428d60c4d9 100644 --- a/packages/frontend/src/pages/clip.vue +++ b/packages/frontend/src/pages/clip.vue @@ -127,14 +127,14 @@ const headerActions = computed(() => clip.value && isOwned.value ? [{ clipsCache.delete(); }, }, ...(clip.value.isPublic ? [{ - icon: 'ph-share-network ph-bold ph-lg', + icon: 'ti ti-link', text: i18n.ts.copyUrl, handler: async (): Promise => { copyToClipboard(`${url}/clips/${clip.value.id}`); os.success(); }, }] : []), ...(clip.value.isPublic && isSupportShare() ? [{ - icon: 'ph-share-network ph-bold ph-lg', + icon: 'ti ti-share', text: i18n.ts.share, handler: async (): Promise => { navigator.share({ diff --git a/packages/frontend/src/pages/flash/flash-index.vue b/packages/frontend/src/pages/flash/flash-index.vue index c047b32161..b9ee7cb41c 100644 --- a/packages/frontend/src/pages/flash/flash-index.vue +++ b/packages/frontend/src/pages/flash/flash-index.vue @@ -83,7 +83,7 @@ const headerTabs = computed(() => [{ }, { key: 'my', title: i18n.ts._play.my, - icon: 'ph-pencil-simple-line ph-bold ph-lg', + icon: 'ti ti-edit', }, { key: 'liked', title: i18n.ts._play.liked, diff --git a/packages/frontend/src/pages/flash/flash.vue b/packages/frontend/src/pages/flash/flash.vue index 9404dc465b..78bbb60f2a 100644 --- a/packages/frontend/src/pages/flash/flash.vue +++ b/packages/frontend/src/pages/flash/flash.vue @@ -22,7 +22,7 @@ SPDX-License-Identifier: AGPL-3.0-only {{ flash.likedCount }} {{ flash.likedCount }} - + @@ -109,7 +109,7 @@ function share(ev: MouseEvent) { }, ...(isSupportShare() ? [{ text: i18n.ts.share, - icon: 'ph-share-network ph-bold ph-lg ti-fw', + icon: 'ti ti-share', action: shareWithNavigator, }] : []), ], ev.currentTarget ?? ev.target); diff --git a/packages/frontend/src/pages/gallery/index.vue b/packages/frontend/src/pages/gallery/index.vue index 7a34463428..bc8bc6d5f9 100644 --- a/packages/frontend/src/pages/gallery/index.vue +++ b/packages/frontend/src/pages/gallery/index.vue @@ -116,7 +116,7 @@ const headerTabs = computed(() => [{ }, { key: 'my', title: i18n.ts._gallery.my, - icon: 'ph-pencil-simple-line ph-bold ph-lg', + icon: 'ti ti-edit', }]); definePageMetadata(() => ({ diff --git a/packages/frontend/src/pages/gallery/post.vue b/packages/frontend/src/pages/gallery/post.vue index 7e4fafd3bd..9c0b6c1d47 100644 --- a/packages/frontend/src/pages/gallery/post.vue +++ b/packages/frontend/src/pages/gallery/post.vue @@ -29,8 +29,8 @@ SPDX-License-Identifier: AGPL-3.0-only
- - + +
diff --git a/packages/frontend/src/pages/instance-info.vue b/packages/frontend/src/pages/instance-info.vue index 6a03042a0b..a6bc3e7138 100644 --- a/packages/frontend/src/pages/instance-info.vue +++ b/packages/frontend/src/pages/instance-info.vue @@ -287,7 +287,7 @@ const headerTabs = computed(() => [{ definePageMetadata(() => ({ title: props.host, - icon: 'ph-hard-drives ph-bold ph-lg', + icon: 'ti ti-server', })); diff --git a/packages/frontend/src/pages/page-editor/els/page-editor.el.note.vue b/packages/frontend/src/pages/page-editor/els/page-editor.el.note.vue index 0bbe256cbf..0a28386986 100644 --- a/packages/frontend/src/pages/page-editor/els/page-editor.el.note.vue +++ b/packages/frontend/src/pages/page-editor/els/page-editor.el.note.vue @@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only
- +