diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-06-22 12:36:09 +0100 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-06-22 15:53:13 +0100 |
| commit | 4910c1f03036aa11cbb24f8fcb136deae34cc2cb (patch) | |
| tree | 2010af49c84e8179c053c3df77f1a2f1221acb44 /packages/frontend/src/components | |
| parent | replaced ti-movie (diff) | |
| download | sharkey-4910c1f03036aa11cbb24f8fcb136deae34cc2cb.tar.gz sharkey-4910c1f03036aa11cbb24f8fcb136deae34cc2cb.tar.bz2 sharkey-4910c1f03036aa11cbb24f8fcb136deae34cc2cb.zip | |
replaced most ti-arrow*
Diffstat (limited to 'packages/frontend/src/components')
| -rw-r--r-- | packages/frontend/src/components/MkMediaVideo.vue | 4 | ||||
| -rw-r--r-- | packages/frontend/src/components/MkPullToRefresh.vue | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/components/MkMediaVideo.vue b/packages/frontend/src/components/MkMediaVideo.vue index eb7c1f49fd..d22bec511c 100644 --- a/packages/frontend/src/components/MkMediaVideo.vue +++ b/packages/frontend/src/components/MkMediaVideo.vue @@ -84,8 +84,8 @@ SPDX-License-Identifier: AGPL-3.0-only <i class="ti ti-settings"></i> </button> <button class="_button" :class="$style.controlButton" @click="toggleFullscreen"> - <i v-if="isFullscreen" class="ph-arrows-in ph-bold ph-lg"></i> - <i v-else class="ph-arrows-out ph-bold ph-lg"></i> + <i v-if="isFullscreen" class="ti ti-arrows-minimize"></i> + <i v-else class="ti ti-arrows-maximize"></i> </button> </div> <div :class="[$style.controlsChild, $style.controlsTime]">{{ hms(elapsedTimeMs) }}</div> diff --git a/packages/frontend/src/components/MkPullToRefresh.vue b/packages/frontend/src/components/MkPullToRefresh.vue index b1ec440e42..e0d0b561be 100644 --- a/packages/frontend/src/components/MkPullToRefresh.vue +++ b/packages/frontend/src/components/MkPullToRefresh.vue @@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only <div v-if="isPullStart" :class="$style.frame" :style="`--frame-min-height: ${pullDistance / (PULL_BRAKE_BASE + (pullDistance / PULL_BRAKE_FACTOR))}px;`"> <div :class="$style.frameContent"> <MkLoading v-if="isRefreshing" :class="$style.loader" :em="true"/> - <i v-else class="ph-arrow-line-down ph-bold ph-lg" :class="[$style.icon, { [$style.refresh]: isPullEnd }]"></i> + <i v-else class="ti ti-arrow-bar-to-down" :class="[$style.icon, { [$style.refresh]: isPullEnd }]"></i> <div :class="$style.text"> <template v-if="isPullEnd">{{ i18n.ts.releaseToRefresh }}</template> <template v-else-if="isRefreshing">{{ i18n.ts.refreshing }}</template> |