style: use pointer class everywhere
All checks were successful
repod / xml (push) Successful in 17s
repod / php (push) Successful in 52s
repod / nodejs (push) Successful in 1m57s
repod / release (push) Has been skipped

This commit is contained in:
Michel Roux 2024-01-17 23:16:59 +01:00
parent 2047470555
commit 606a769246
2 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,8 @@
<template> <template>
<div class="root"> <div class="root">
<strong class="name" @click="modal = true">{{ player.episode.name }}</strong> <strong class="pointer" @click="modal = true">
{{ player.episode.name }}
</strong>
<router-link :to="hash"> <router-link :to="hash">
<i>{{ player.episode.title }}</i> <i>{{ player.episode.title }}</i>
</router-link> </router-link>
@ -44,7 +46,7 @@ export default {
</script> </script>
<style scoped> <style scoped>
.name { .pointer {
cursor: pointer; cursor: pointer;
} }

View File

@ -1,5 +1,5 @@
<template> <template>
<div @click="(event) => $store.dispatch('player/seek', event.x * player.duration / event.target.offsetWidth)"> <div class="pointer" @click="(event) => $store.dispatch('player/seek', event.x * player.duration / event.target.offsetWidth)">
<NcProgressBar size="medium" :value="player.currentTime * 100 / player.duration" /> <NcProgressBar size="medium" :value="player.currentTime * 100 / player.duration" />
</div> </div>
</template> </template>
@ -21,7 +21,7 @@ export default {
</script> </script>
<style scoped> <style scoped>
div { .pointer {
cursor: pointer; cursor: pointer;
} }
</style> </style>