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" />
|
<font-awesome-icon icon="circle-minus" />
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
v-if="
|
v-if="isFeed && this.getPreferenceBoolean('hideWatched', false)"
|
||||||
isFeed &&
|
|
||||||
(this.getPreferenceBoolean('watchHistory', false) ||
|
|
||||||
this.getPreferenceBoolean('hideWatched', false))
|
|
||||||
"
|
|
||||||
@click="toggleWatched(video.url.substr(-11))"
|
@click="toggleWatched(video.url.substr(-11))"
|
||||||
ref="watchButton"
|
ref="watchButton"
|
||||||
>
|
>
|
||||||
<font-awesome-icon
|
<font-awesome-icon icon="eye" :title="$t('actions.mark_as_watched')" />
|
||||||
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" />
|
|
||||||
</button>
|
</button>
|
||||||
<PlaylistAddModal v-if="showModal" :video-id="video.url.substr(-11)" @close="showModal = !showModal" />
|
<PlaylistAddModal v-if="showModal" :video-id="video.url.substr(-11)" @close="showModal = !showModal" />
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue