Fixed wrong backward / forward icons in player

This commit is contained in:
Eliot Berriot 2018-12-19 20:15:52 +01:00
parent 4747c6379c
commit cbfb260288
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
1 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@
class="two wide column control" class="two wide column control"
@click.prevent.stop="previous" @click.prevent.stop="previous"
:disabled="emptyQueue"> :disabled="emptyQueue">
<i :class="['ui', 'backward', {'disabled': emptyQueue}, 'secondary', 'icon']"></i> <i :class="['ui', 'backward step', {'disabled': emptyQueue}, 'secondary', 'icon']"></i>
</a> </a>
<a <a
href href
@ -107,7 +107,7 @@
class="two wide column control" class="two wide column control"
@click.prevent.stop="next" @click.prevent.stop="next"
:disabled="!hasNext"> :disabled="!hasNext">
<i :class="['ui', {'disabled': !hasNext}, 'forward', 'secondary', 'icon']" ></i> <i :class="['ui', {'disabled': !hasNext}, 'forward step', 'secondary', 'icon']" ></i>
</a> </a>
<div <div
class="wide column control volume-control" class="wide column control volume-control"