replaced ti-dots

This commit is contained in:
dakkar 2024-06-21 13:04:54 +01:00
parent b2054a674d
commit 14fbac7ca5
19 changed files with 21 additions and 20 deletions

View file

@ -306,7 +306,7 @@ const headerActions = computed(() => [{
text: i18n.ts.addEmoji,
handler: add,
}, {
icon: 'ph-dots-three ph-bold ph-lg',
icon: 'ti ti-dots',
handler: menu,
}]);

View file

@ -38,7 +38,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkA :class="$style.userItemBody" :to="`${userPage(item.user)}`">
<MkUserCardMini :user="item.user"/>
</MkA>
<button class="_button" :class="$style.menu" @click="showMembershipMenu(item, $event)"><i class="ph-dots-three ph-bold ph-lg"></i></button>
<button class="_button" :class="$style.menu" @click="showMembershipMenu(item, $event)"><i class="ti ti-dots"></i></button>
<button class="_button" :class="$style.remove" @click="removeUser(item, $event)"><i class="ph-x ph-bold ph-lg"></i></button>
</div>
</div>

View file

@ -163,7 +163,7 @@ const menuDef = computed(() => [{
to: '/settings/migration',
active: currentPage.value?.route.name === 'migration',
}, {
icon: 'ph-dots-three ph-bold ph-lg',
icon: 'ti ti-dots',
text: i18n.ts.other,
to: '/settings/other',
active: currentPage.value?.route.name === 'other',

View file

@ -189,6 +189,6 @@ const headerTabs = computed(() => []);
definePageMetadata(() => ({
title: i18n.ts.other,
icon: 'ph-dots-three ph-bold ph-lg',
icon: 'ti ti-dots',
}));
</script>

View file

@ -248,7 +248,7 @@ function closeTutorial(): void {
const headerActions = computed(() => {
const tmp = [
{
icon: 'ph-dots-three ph-bold ph-lg',
icon: 'ti ti-dots',
text: i18n.ts.options,
handler: (ev) => {
os.popupMenu([{

View file

@ -32,7 +32,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
<span v-if="$i && $i.id != user.id && user.isFollowed" class="followed">{{ i18n.ts.followsYou }}</span>
<div v-if="$i" class="actions">
<button class="menu _button" @click="menu"><i class="ph-dots-three ph-bold ph-lg"></i></button>
<button class="menu _button" @click="menu"><i class="ti ti-dots"></i></button>
<MkFollowButton v-if="$i.id != user.id" v-model:user="user" :inline="true" :transparent="false" :full="true" class="koudoku"/>
</div>
</div>

View file

@ -9,7 +9,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #header>{{ i18n.ts.activity }}</template>
<template #func="{ buttonStyleClass }">
<button class="_button" :class="buttonStyleClass" @click="showMenu">
<i class="ph-dots-three ph-bold ph-lg"></i>
<i class="ti ti-dots"></i>
</button>
</template>