replaced more ti-*

This commit is contained in:
dakkar 2024-06-22 14:36:39 +01:00
parent 138127a5b6
commit f2c56f395e
37 changed files with 70 additions and 55 deletions

View file

@ -111,7 +111,7 @@ const menu: MenuItem[] = [{
text: i18n.ts.fileAttachedOnly,
ref: onlyFiles,
}, {
icon: 'ph-bell-ringing ph-bold ph-lg',
icon: 'ti ti-bell',
text: i18n.ts._deck.newNoteNotificationSettings,
action: () => soundSettingsButton(soundSetting),
}];

View file

@ -101,7 +101,7 @@ const menu: MenuItem[] = [
ref: onlyFiles,
},
{
icon: 'ph-bell-ringing ph-bold ph-lg',
icon: 'ti ti-bell',
text: i18n.ts._deck.newNoteNotificationSettings,
action: () => soundSettingsButton(soundSetting),
},

View file

@ -68,7 +68,7 @@ const menu: MenuItem[] = [{
text: i18n.ts.role,
action: setRole,
}, {
icon: 'ph-bell-ringing ph-bold ph-lg',
icon: 'ti ti-bell',
text: i18n.ts._deck.newNoteNotificationSettings,
action: () => soundSettingsButton(soundSetting),
}];

View file

@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #header>
<i v-if="column.tl === 'home'" class="ti ti-home"></i>
<i v-else-if="column.tl === 'local'" class="ti ti-planet"></i>
<i v-else-if="column.tl === 'social'" class="ph-rocket-launch ph-bold ph-lg"></i>
<i v-else-if="column.tl === 'social'" class="ti ti-universe"></i>
<i v-else-if="column.tl === 'bubble'" class="ph-thumb-up ph-bold ph-lg"></i>
<i v-else-if="column.tl === 'global'" class="ti ti-whirl"></i>
<span style="margin-left: 8px;">{{ column.name }}</span>
@ -16,7 +16,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<div v-if="(((column.tl === 'local' || column.tl === 'social') && !isLocalTimelineAvailable) || (column.tl === 'bubble' && !isBubbleTimelineAvailable) || (column.tl === 'global' && !isGlobalTimelineAvailable))" :class="$style.disabled">
<p :class="$style.disabledTitle">
<i class="ph-minus-circle ph-bold ph-lg"></i>
<i class="ti ti-circle-minus"></i>
{{ i18n.ts._disabledTimeline.title }}
</p>
<p :class="$style.disabledDescription">{{ i18n.ts._disabledTimeline.description }}</p>
@ -132,7 +132,7 @@ const menu: MenuItem[] = [{
text: i18n.ts.timeline,
action: setType,
}, {
icon: 'ph-bell-ringing ph-bold ph-lg',
icon: 'ti ti-bell',
text: i18n.ts._deck.newNoteNotificationSettings,
action: () => soundSettingsButton(soundSetting),
}, {