mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-28 11:11:41 +08:00
Frontend: #4556 fix v-data-table component, change most of icons to mdi, rename classes in css
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
<v-spacer></v-spacer>
|
||||
|
||||
<v-btn icon :title="$gettext('Reload')" class="action-reload" @click.stop="refresh">
|
||||
<v-icon>refresh</v-icon>
|
||||
<v-icon>mdi-refresh</v-icon>
|
||||
</v-btn>
|
||||
</v-toolbar>
|
||||
</v-form>
|
||||
@@ -30,7 +30,7 @@
|
||||
<p-scroll-top></p-scroll-top>
|
||||
|
||||
<v-container grid-list-xs fluid class="pa-2 p-files p-files-cards">
|
||||
<v-alert :value="results.length === 0" color="secondary-dark" icon="lightbulb_outline" class="no-results ma-2 opacity-70" outlined>
|
||||
<v-alert :value="results.length === 0" color="secondary-dark" icon="mdi-lightbulb-outline" class="no-results ma-2 opacity-70" outlined>
|
||||
<h3 class="body-2 ma-0 pa-0">
|
||||
<translate>No pictures found</translate>
|
||||
</h3>
|
||||
@@ -56,8 +56,8 @@
|
||||
@click.stop.prevent="onClick($event, index)"
|
||||
>
|
||||
<v-btn :ripple="false" icon text absolute class="input-select" @touchstart.stop.prevent="input.touchStart($event, index)" @touchend.stop.prevent="onSelect($event, index)" @touchmove.stop.prevent @click.stop.prevent="onSelect($event, index)">
|
||||
<v-icon color="white" class="select-on">check_circle</v-icon>
|
||||
<v-icon color="white" class="select-off">radio_button_off</v-icon>
|
||||
<v-icon color="white" class="select-on">mdi-check-circle</v-icon>
|
||||
<v-icon color="white" class="select-off">mdi-radiobox-blank</v-icon>
|
||||
</v-btn>
|
||||
</v-img>
|
||||
|
||||
@@ -120,7 +120,7 @@ export default {
|
||||
|
||||
return {
|
||||
config: this.$config.values,
|
||||
navIcon: this.$rtl ? "navigate_before" : "navigate_next",
|
||||
navIcon: this.$rtl ? "mdi-chevron-left" : "mdi-chevron-right",
|
||||
subscriptions: [],
|
||||
listen: false,
|
||||
dirty: false,
|
||||
|
||||
Reference in New Issue
Block a user