mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 15:29:22 +02:00
Added list corner icon to trash icon in player controls to make it's function more obvious
This commit is contained in:
parent
bfe28cc12e
commit
948a2b0f1f
1 changed files with 9 additions and 1 deletions
|
@ -198,7 +198,11 @@
|
||||||
v-if="!showVolume"
|
v-if="!showVolume"
|
||||||
@click.prevent.stop="clean()"
|
@click.prevent.stop="clean()"
|
||||||
class="two wide column control">
|
class="two wide column control">
|
||||||
<i :class="['ui', 'trash', 'secondary', {'disabled': queue.tracks.length === 0}, 'icon']" ></i>
|
<i class="icons">
|
||||||
|
|
||||||
|
<i :class="['ui', 'trash', 'secondary', {'disabled': queue.tracks.length === 0}, 'icon']" ></i>
|
||||||
|
<i :class="['ui corner large inverted', 'list', {'disabled': queue.tracks.length === 0}, 'icon']" ></i>
|
||||||
|
</i>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<GlobalEvents
|
<GlobalEvents
|
||||||
|
@ -921,4 +925,8 @@ export default {
|
||||||
animation-timing-function: linear;
|
animation-timing-function: linear;
|
||||||
animation-iteration-count: infinite;
|
animation-iteration-count: infinite;
|
||||||
}
|
}
|
||||||
|
i.icons .corner.icon {
|
||||||
|
font-size: 1em;
|
||||||
|
right: -0.3em;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue