mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Simplify icon appearance.
This commit is contained in:
parent
ed45cba4c3
commit
1d1d9d583e
1 changed files with 2 additions and 11 deletions
|
@ -74,20 +74,11 @@
|
|||
<font-awesome-icon icon="circle-minus" />
|
||||
</button>
|
||||
<button
|
||||
v-if="
|
||||
isFeed &&
|
||||
(this.getPreferenceBoolean('watchHistory', false) ||
|
||||
this.getPreferenceBoolean('hideWatched', false))
|
||||
"
|
||||
v-if="isFeed && this.getPreferenceBoolean('hideWatched', false)"
|
||||
@click="toggleWatched(video.url.substr(-11))"
|
||||
ref="watchButton"
|
||||
>
|
||||
<font-awesome-icon
|
||||
v-if="video.watched"
|
||||
:title="$t('actions.mark_as_unwatched')"
|
||||
icon="fa-regular fa-eye-slash"
|
||||
/>
|
||||
<font-awesome-icon v-else :title="$t('actions.mark_as_watched')" icon="eye" />
|
||||
<font-awesome-icon icon="eye" :title="$t('actions.mark_as_watched')" />
|
||||
</button>
|
||||
<PlaylistAddModal v-if="showModal" :video-id="video.url.substr(-11)" @close="showModal = !showModal" />
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue