Simplify icon appearance.

This commit is contained in:
Chris Hallberg 2022-10-17 21:43:51 -04:00
parent ed45cba4c3
commit 1d1d9d583e

View file

@ -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>