diff options
author | Zero~Informatique | 2020-01-31 06:55:37 +0100 |
---|---|---|
committer | Zero~Informatique | 2020-01-31 06:55:37 +0100 |
commit | 914aa63cb65f869be9b1707c160847be16f79a68 (patch) | |
tree | 9a180ff39dccaec17c6c111931aee1bbf04eaf0a /viewer/src/views/TopCommand.vue | |
parent | 252dd6fc6f53ecd8b28e05a0514429472d53d08e (diff) | |
download | ldgallery-914aa63cb65f869be9b1707c160847be16f79a68.tar.gz |
viewer: unified CSS classes to kebab case
Diffstat (limited to 'viewer/src/views/TopCommand.vue')
-rw-r--r-- | viewer/src/views/TopCommand.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/viewer/src/views/TopCommand.vue b/viewer/src/views/TopCommand.vue index b5d16e8..dc79fa7 100644 --- a/viewer/src/views/TopCommand.vue +++ b/viewer/src/views/TopCommand.vue | |||
@@ -22,13 +22,13 @@ | |||
22 | <div class="link" title="$t('title.tags')" @click="$uiStore.toggleFullWidth()"> | 22 | <div class="link" title="$t('title.tags')" @click="$uiStore.toggleFullWidth()"> |
23 | <fa-icon :icon="commandTagsIcon()" size="lg" /> | 23 | <fa-icon :icon="commandTagsIcon()" size="lg" /> |
24 | </div> | 24 | </div> |
25 | <router-link to="/" :class="{disabled: isRoot()}" title="$t('title.home')"> | 25 | <router-link to="/" :class="{'disabled': isRoot()}" title="$t('title.home')"> |
26 | <fa-icon icon="home" size="lg" /> | 26 | <fa-icon icon="home" size="lg" /> |
27 | </router-link> | 27 | </router-link> |
28 | <div class="link" title="$t('title.back')" @click="$router.go(-1)"> | 28 | <div class="link" title="$t('title.back')" @click="$router.go(-1)"> |
29 | <fa-icon icon="arrow-left" size="lg" /> | 29 | <fa-icon icon="arrow-left" size="lg" /> |
30 | </div> | 30 | </div> |
31 | <router-link :class="{disabled: isRoot()}" title="$t('title.parent')" :to="parent()"> | 31 | <router-link :class="{'disabled': isRoot()}" title="$t('title.parent')" :to="parent()"> |
32 | <fa-icon icon="folder" size="xs" /> | 32 | <fa-icon icon="folder" size="xs" /> |
33 | <fa-icon icon="level-up-alt" size="lg" /> | 33 | <fa-icon icon="level-up-alt" size="lg" /> |
34 | </router-link> | 34 | </router-link> |