diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-06-21 15:15:04 +0100 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-06-22 15:53:12 +0100 |
| commit | b1954d9898f008162d0e371f68065ffcefa6d6c7 (patch) | |
| tree | 107a0d60ed7e19927e4787b2ae1b31e2a8ea8938 /packages/frontend/src/components | |
| parent | replaced ti-eye (diff) | |
| download | sharkey-b1954d9898f008162d0e371f68065ffcefa6d6c7.tar.gz sharkey-b1954d9898f008162d0e371f68065ffcefa6d6c7.tar.bz2 sharkey-b1954d9898f008162d0e371f68065ffcefa6d6c7.zip | |
replaced ti-eye-off
Diffstat (limited to 'packages/frontend/src/components')
5 files changed, 8 insertions, 8 deletions
diff --git a/packages/frontend/src/components/MkMediaAudio.vue b/packages/frontend/src/components/MkMediaAudio.vue index 74123af670..e1591bcbea 100644 --- a/packages/frontend/src/components/MkMediaAudio.vue +++ b/packages/frontend/src/components/MkMediaAudio.vue @@ -166,7 +166,7 @@ function showMenu(ev: MouseEvent) { }, { text: i18n.ts.hide, - icon: 'ph-eye-closed ph-bold ph-lg', + icon: 'ti ti-eye-off', action: () => { hide.value = true; }, diff --git a/packages/frontend/src/components/MkMediaImage.vue b/packages/frontend/src/components/MkMediaImage.vue index 8b0cdae44d..6f20d7f6ed 100644 --- a/packages/frontend/src/components/MkMediaImage.vue +++ b/packages/frontend/src/components/MkMediaImage.vue @@ -46,7 +46,7 @@ SPDX-License-Identifier: AGPL-3.0-only <div v-if="!image.comment" :class="$style.indicator" title="Image lacks descriptive text"><i class="ph-pencil-simple ph-bold ph-lg-off"></i></div> </div> <button :class="$style.menu" class="_button" @click.stop="showMenu"><i class="ti ti-dots" style="vertical-align: middle;"></i></button> - <i class="ph-eye-slash ph-bold ph-lg" :class="$style.hide" @click.stop="hide = true"></i> + <i class="ti ti-eye-off" :class="$style.hide" @click.stop="hide = true"></i> </template> </div> </template> @@ -104,7 +104,7 @@ watch(() => props.image, () => { function showMenu(ev: MouseEvent) { os.popupMenu([{ text: i18n.ts.hide, - icon: 'ph-eye-slash ph-bold ph-lg', + icon: 'ti ti-eye-off', action: () => { hide.value = true; }, diff --git a/packages/frontend/src/components/MkMediaVideo.vue b/packages/frontend/src/components/MkMediaVideo.vue index 0ae3593727..608c2803c4 100644 --- a/packages/frontend/src/components/MkMediaVideo.vue +++ b/packages/frontend/src/components/MkMediaVideo.vue @@ -39,7 +39,7 @@ SPDX-License-Identifier: AGPL-3.0-only > <source :src="video.url"> </video> - <i class="ph-eye-closed ph-bold ph-lg" :class="$style.hide" @click="hide = true"></i> + <i class="ti ti-eye-off" :class="$style.hide" @click="hide = true"></i> <div :class="$style.indicators"> <div v-if="video.comment" :class="$style.indicator">ALT</div> <div v-if="video.isSensitive" :class="$style.indicator" style="color: var(--warn);" :title="i18n.ts.sensitive"><i class="ph-warning ph-bold ph-lg"></i></div> @@ -64,7 +64,7 @@ SPDX-License-Identifier: AGPL-3.0-only <div v-else-if="!isActuallyPlaying" :class="$style.videoLoading"> <MkLoading/> </div> - <i class="ph-eye-closed ph-bold ph-lg" :class="$style.hide" @click="hide = true"></i> + <i class="ti ti-eye-off" :class="$style.hide" @click="hide = true"></i> <div :class="$style.indicators"> <div v-if="video.comment" :class="$style.indicator">ALT</div> <div v-if="video.isSensitive" :class="$style.indicator" style="color: var(--warn);" :title="i18n.ts.sensitive"><i class="ph-warning ph-bold ph-lg"></i></div> @@ -205,7 +205,7 @@ function showMenu(ev: MouseEvent) { }, { text: i18n.ts.hide, - icon: 'ph-eye-closed ph-bold ph-lg', + icon: 'ti ti-eye-off', action: () => { hide.value = true; }, diff --git a/packages/frontend/src/components/MkPostForm.vue b/packages/frontend/src/components/MkPostForm.vue index 6ea5dbb3d9..be938e3536 100644 --- a/packages/frontend/src/components/MkPostForm.vue +++ b/packages/frontend/src/components/MkPostForm.vue @@ -81,7 +81,7 @@ SPDX-License-Identifier: AGPL-3.0-only <div :class="$style.footerLeft"> <button v-tooltip="i18n.ts.attachFile" class="_button" :class="$style.footerButton" @click="chooseFileFrom"><i class="ph-image-square ph-bold ph-lg-plus"></i></button> <button v-tooltip="i18n.ts.poll" class="_button" :class="[$style.footerButton, { [$style.footerButtonActive]: poll }]" @click="togglePoll"><i class="ph-chart-bar-horizontal ph-bold ph-lg"></i></button> - <button v-tooltip="i18n.ts.useCw" class="_button" :class="[$style.footerButton, { [$style.footerButtonActive]: useCw }]" @click="useCw = !useCw"><i class="ph-eye-slash ph-bold ph-lg"></i></button> + <button v-tooltip="i18n.ts.useCw" class="_button" :class="[$style.footerButton, { [$style.footerButtonActive]: useCw }]" @click="useCw = !useCw"><i class="ti ti-eye-off"></i></button> <button v-tooltip="i18n.ts.mention" class="_button" :class="$style.footerButton" @click="insertMention"><i class="ph-at ph-bold ph-lg"></i></button> <button v-tooltip="i18n.ts.hashtags" class="_button" :class="[$style.footerButton, { [$style.footerButtonActive]: withHashtags }]" @click="withHashtags = !withHashtags"><i class="ph-hash ph-bold ph-lg"></i></button> <button v-if="postFormActions.length > 0" v-tooltip="i18n.ts.plugins" class="_button" :class="$style.footerButton" @click="showActions"><i class="ph-plug ph-bold ph-lg"></i></button> diff --git a/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue b/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue index 91fe4dea3f..d2f6c15ecf 100644 --- a/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue +++ b/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue @@ -17,7 +17,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkFolder> <template #label>{{ i18n.ts.hideOnlineStatus }}</template> - <template #icon><i class="ph-eye-slash ph-bold ph-lg"></i></template> + <template #icon><i class="ti ti-eye-off"></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> |