Commit d0d5a353 authored by thatanimeweirdo's avatar thatanimeweirdo

Merge branch 'add-refresh-button' into 'vue-rewrite'

added refresh button to installed songs for redownloading

See merge request !35
parents 0603099c e6638dba
...@@ -23,12 +23,17 @@ ...@@ -23,12 +23,17 @@
<i class="mdi mdi-gamepad-variant"></i> <i class="mdi mdi-gamepad-variant"></i>
</div> </div>
</div> </div>
<div v-on:click="AddToQueue()" class="action" v-if="isInstalled">
<div class="icon">
<i class="mdi mdi-refresh"></i>
</div>
</div>
<div class="action-player"> <div class="action-player">
<div class="icon" v-on:click="TogglePreview()"> <div class="icon" v-on:click="TogglePreview()">
<i class="mdi mdi-play" v-if="!previewIsPlaying"></i> <i class="mdi mdi-play" v-if="!previewIsPlaying"></i>
<i class="mdi mdi-stop" v-if="previewIsPlaying"></i> <i class="mdi mdi-stop" v-if="previewIsPlaying"></i>
</div> </div>
<div class="volume"> <div class="volume" v-bind:class="{'volume-installed': isInstalled}">
<input type="range" min="0" max="100" value="50" v-model="previewVolume" class="playerVolume" v-on:change="UpdateVolume()" /> <input type="range" min="0" max="100" value="50" v-model="previewVolume" class="playerVolume" v-on:change="UpdateVolume()" />
</div> </div>
</div> </div>
...@@ -382,10 +387,16 @@ ...@@ -382,10 +387,16 @@
& .action-player { & .action-player {
width: 250px; width: 250px;
& .volume { & .volume{
width: 170px; width: 170px;
padding-left: 20px; padding-left: 20px;
} }
& .volume-installed{
width: 150px;
padding-left: 10px;
padding-right: 10px;
}
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment