@christianriedl/media 1.0.17 → 1.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
</script>
|
|
26
26
|
|
|
27
27
|
<template>
|
|
28
|
-
<v-row>
|
|
28
|
+
<v-row align="center">
|
|
29
29
|
<v-col cols="2">
|
|
30
30
|
<v-text-field name="directory" label="Name (Directory)" type="text" v-model="name" density="compact" hide-details></v-text-field>
|
|
31
31
|
</v-col>
|
|
@@ -35,14 +35,6 @@
|
|
|
35
35
|
<v-col cols="6">{{feedBack}}
|
|
36
36
|
</v-col>
|
|
37
37
|
</v-row>
|
|
38
|
-
<!--
|
|
39
|
-
<v-col cols="2">
|
|
40
|
-
<v-btn @click="onUpload">
|
|
41
|
-
<v-icon large>{{$vuetify.icons.values.upload}}</v-icon>Upload
|
|
42
|
-
</v-btn>
|
|
43
|
-
</v-col>
|
|
44
|
-
-->
|
|
45
|
-
<p>{{loadResult}}</p>
|
|
46
38
|
</template>
|
|
47
39
|
|
|
48
40
|
<style scoped>
|
package/src/views/MusicPage.vue
CHANGED
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
<audio ref="audio" preload="none" @ended="onEnded" @timeupdate="onTimeUpdate">
|
|
297
297
|
</audio>
|
|
298
298
|
<v-list-item three-line>
|
|
299
|
-
<v-row>
|
|
299
|
+
<v-row align="center">
|
|
300
300
|
<v-col cols="1">
|
|
301
301
|
<v-list-item-avatar tile rounded="0" size="x-large" v-if="selected.ThumbnailUrl">
|
|
302
302
|
<img width="60" :src="selected.ThumbnailUrl">
|
|
@@ -317,8 +317,8 @@
|
|
|
317
317
|
dense solo hide-details single-line>
|
|
318
318
|
</v-select>
|
|
319
319
|
</v-col>
|
|
320
|
-
<v-col v-else cols="4"
|
|
321
|
-
<v-btn v-if="!isMobile" @click="uploadVisible = !uploadVisible">
|
|
320
|
+
<v-col v-else cols="4" align-self="end">
|
|
321
|
+
<v-btn v-if="!isMobile" class="bg-media" @click="uploadVisible = !uploadVisible">
|
|
322
322
|
UPLOAD
|
|
323
323
|
<v-icon>{{$vuetify.icons.values.upload}}</v-icon>
|
|
324
324
|
</v-btn>
|