diff options
| author | Mar0xy <marie@kaifa.ch> | 2023-11-06 00:28:29 +0100 |
|---|---|---|
| committer | Mar0xy <marie@kaifa.ch> | 2023-11-06 00:28:29 +0100 |
| commit | 53868f0176c7ec2e46b4eabd1166bd5a7f5b9618 (patch) | |
| tree | cece8356696ddda61137f61c4c884094826d2e34 /packages/frontend/src/components | |
| parent | upd: play animated MFM button (diff) | |
| download | sharkey-53868f0176c7ec2e46b4eabd1166bd5a7f5b9618.tar.gz sharkey-53868f0176c7ec2e46b4eabd1166bd5a7f5b9618.tar.bz2 sharkey-53868f0176c7ec2e46b4eabd1166bd5a7f5b9618.zip | |
chore: replace tabler icons with phosphor icons
Diffstat (limited to 'packages/frontend/src/components')
| -rw-r--r-- | packages/frontend/src/components/MkNotification.vue | 4 | ||||
| -rw-r--r-- | packages/frontend/src/components/global/MkEmoji.vue | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/frontend/src/components/MkNotification.vue b/packages/frontend/src/components/MkNotification.vue index fd96aa4335..6b47f9c341 100644 --- a/packages/frontend/src/components/MkNotification.vue +++ b/packages/frontend/src/components/MkNotification.vue @@ -9,8 +9,8 @@ SPDX-License-Identifier: AGPL-3.0-only <MkAvatar v-if="notification.type === 'pollEnded'" :class="$style.icon" :user="notification.note.user" link preview/> <MkAvatar v-else-if="notification.type === 'note'" :class="$style.icon" :user="notification.note.user" link preview/> <MkAvatar v-else-if="notification.type === 'achievementEarned'" :class="$style.icon" :user="$i" link preview/> - <div v-else-if="notification.type === 'reaction:grouped'" :class="[$style.icon, $style.icon_reactionGroup]"><i class="ti ti-plus" style="line-height: 1;"></i></div> - <div v-else-if="notification.type === 'renote:grouped'" :class="[$style.icon, $style.icon_renoteGroup]"><i class="ti ti-repeat" style="line-height: 1;"></i></div> + <div v-else-if="notification.type === 'reaction:grouped'" :class="[$style.icon, $style.icon_reactionGroup]"><i class="ph-plus ph-bold ph-lg" style="line-height: 1;"></i></div> + <div v-else-if="notification.type === 'renote:grouped'" :class="[$style.icon, $style.icon_renoteGroup]"><i class="ph-repeat ph-bold ph-lg" style="line-height: 1;"></i></div> <img v-else-if="notification.type === 'test'" :class="$style.icon" :src="infoImageUrl"/> <MkAvatar v-else-if="notification.user" :class="$style.icon" :user="notification.user" link preview/> <img v-else-if="notification.icon" :class="[$style.icon, $style.icon_app]" :src="notification.icon" alt=""/> diff --git a/packages/frontend/src/components/global/MkEmoji.vue b/packages/frontend/src/components/global/MkEmoji.vue index 0855f20b8d..7fa3ce75a3 100644 --- a/packages/frontend/src/components/global/MkEmoji.vue +++ b/packages/frontend/src/components/global/MkEmoji.vue @@ -46,14 +46,14 @@ function onClick(ev: MouseEvent) { text: props.emoji, }, { text: i18n.ts.copy, - icon: 'ti ti-copy', + icon: 'ph-copy ph-bold ph-lg', action: () => { copyToClipboard(props.emoji); os.success(); }, }, ...(props.menuReaction && react ? [{ text: i18n.ts.doReaction, - icon: 'ti ti-plus', + icon: 'ph-plus ph-bold ph-lg', action: () => { react(props.emoji); }, |