@christianriedl/media 1.0.73 → 1.0.75
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
|
@@ -123,19 +123,19 @@
|
|
|
123
123
|
|
|
124
124
|
<v-row dense class="font-weight-bold">
|
|
125
125
|
<v-col cols="2">
|
|
126
|
-
<v-btn @click="onCreate">CREATE</v-btn>
|
|
126
|
+
<v-btn color="primary" @click="onCreate">CREATE</v-btn>
|
|
127
127
|
</v-col>
|
|
128
128
|
<v-col cols="2">
|
|
129
|
-
<v-btn @click="onCancel">CANCEL</v-btn>
|
|
129
|
+
<v-btn color="primary" @click="onCancel">CANCEL</v-btn>
|
|
130
130
|
</v-col>
|
|
131
131
|
<v-col cols="2">
|
|
132
|
-
<v-btn @click="onClear">CLEAR</v-btn>
|
|
132
|
+
<v-btn color="primary" @click="onClear">CLEAR</v-btn>
|
|
133
133
|
</v-col>
|
|
134
134
|
<v-col cols="2">
|
|
135
|
-
<v-btn @click="onWritePretty">WRITE PRETTY</v-btn>
|
|
135
|
+
<v-btn color="primary" @click="onWritePretty">WRITE PRETTY</v-btn>
|
|
136
136
|
</v-col>
|
|
137
137
|
<v-col cols="4">
|
|
138
|
-
<v-btn @click="onMakeCurrent">MAKE CURRENT</v-btn>
|
|
138
|
+
<v-btn color="primary" @click="onMakeCurrent">MAKE CURRENT</v-btn>
|
|
139
139
|
</v-col>
|
|
140
140
|
</v-row>
|
|
141
141
|
<v-row dense class="font-weight-bold">
|
package/src/views/PhotosPage.vue
CHANGED
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
:items="roots"
|
|
208
208
|
persistent-hint
|
|
209
209
|
@update:modelValue="onRootChange"
|
|
210
|
-
|
|
210
|
+
hide-details single-line>
|
|
211
211
|
</v-select>
|
|
212
212
|
<v-btn v-if="!isMobile" @click="uploadVisible = !uploadVisible">
|
|
213
213
|
UPLOAD
|
|
@@ -221,9 +221,9 @@
|
|
|
221
221
|
<v-list-item-group v-model="itemIndex" color="primary">
|
|
222
222
|
<v-list-item v-for="item in items" :key="item.DLNAID" :title="itemText(item)" :value="itemText(item)" density="compact" @click.stop="listItem(item)">
|
|
223
223
|
<template v-slot:append>
|
|
224
|
-
<v-btn color="grey" icon="$share" @click.stop.prevent="onShare(item)"></v-btn>
|
|
225
|
-
<v-btn color="grey" icon="$download" @click.stop.prevent="onDownload(item)"></v-btn>
|
|
226
|
-
<v-btn color="grey" icon="$grid" @click.stop.prevent="onLightbox(item)"></v-btn>
|
|
224
|
+
<v-btn color="grey" variant="tonal" icon="$share" @click.stop.prevent="onShare(item)"></v-btn>
|
|
225
|
+
<v-btn color="grey" variant="tonal" icon="$download" @click.stop.prevent="onDownload(item)"></v-btn>
|
|
226
|
+
<v-btn color="grey" variant="tonal" icon="$grid" @click.stop.prevent="onLightbox(item)"></v-btn>
|
|
227
227
|
</template>
|
|
228
228
|
</v-list-item>
|
|
229
229
|
</v-list-item-group>
|
|
@@ -235,9 +235,9 @@
|
|
|
235
235
|
</template>
|
|
236
236
|
<v-list-item v-for="subItem in item.Folders" :key="subItem.DLNAID" :title="itemText(subItem)" :value="itemText(subItem)" density="compact" @click.stop="listSubItem(subItem)">
|
|
237
237
|
<template v-slot:append>
|
|
238
|
-
<v-btn color="grey" icon="$share" @click.stop.prevent="onShare(subItem)"></v-btn>
|
|
239
|
-
<v-btn color="grey" icon="$download" @click.stop.prevent="onDownload(subItem)"></v-btn>
|
|
240
|
-
<v-btn color="grey" icon="$grid" @click.stop.prevent="onLightbox(subItem)"></v-btn>
|
|
238
|
+
<v-btn color="grey" variant="tonal" icon="$share" @click.stop.prevent="onShare(subItem)"></v-btn>
|
|
239
|
+
<v-btn color="grey" variant="tonal" icon="$download" @click.stop.prevent="onDownload(subItem)"></v-btn>
|
|
240
|
+
<v-btn color="grey" variant="tonal" icon="$grid" @click.stop.prevent="onLightbox(subItem)"></v-btn>
|
|
241
241
|
</template>
|
|
242
242
|
</v-list-item>
|
|
243
243
|
</v-list-group>
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
<v-checkbox v-model="selectMode" hide-details label="Select Fotos"></v-checkbox>
|
|
86
86
|
</v-col>
|
|
87
87
|
<v-col cols="1">
|
|
88
|
-
<v-btn icon="$share" @click="onShare"
|
|
88
|
+
<v-btn icon="$share" @click="onShare" ></v-btn>
|
|
89
89
|
</v-col>
|
|
90
90
|
</v-row>
|
|
91
91
|
<v-row dense align="center">
|