diff options
Diffstat (limited to 'viewer')
-rw-r--r-- | viewer/src/assets/scss/theme.scss | 2 | ||||
-rw-r--r-- | viewer/src/components/LdThumbnail.vue | 4 | ||||
-rw-r--r-- | viewer/src/main.ts | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/viewer/src/assets/scss/theme.scss b/viewer/src/assets/scss/theme.scss index 26cb355..bbf4843 100644 --- a/viewer/src/assets/scss/theme.scss +++ b/viewer/src/assets/scss/theme.scss | |||
@@ -65,7 +65,7 @@ $loader-color: $palette-800; | |||
65 | $input-tag-delete-background-color: $palette-700; | 65 | $input-tag-delete-background-color: $palette-700; |
66 | $breadcrumb-margins: 12px; | 66 | $breadcrumb-margins: 12px; |
67 | $breadcrumb-overflow-mask-size: $breadcrumb-margins + 60px; | 67 | $breadcrumb-overflow-mask-size: $breadcrumb-margins + 60px; |
68 | $thumbnail-other-size: 120px; | 68 | $thumbnail-other-size: 10em; |
69 | 69 | ||
70 | // Layout | 70 | // Layout |
71 | 71 | ||
diff --git a/viewer/src/components/LdThumbnail.vue b/viewer/src/components/LdThumbnail.vue index 3ef7fa8..5166834 100644 --- a/viewer/src/components/LdThumbnail.vue +++ b/viewer/src/components/LdThumbnail.vue | |||
@@ -29,7 +29,7 @@ | |||
29 | /> | 29 | /> |
30 | <div v-else class="thumbnail-other flex-column flex-center"> | 30 | <div v-else class="thumbnail-other flex-column flex-center"> |
31 | <fa-icon :icon="getIcon()" size="4x" /> | 31 | <fa-icon :icon="getIcon()" size="4x" /> |
32 | {{item.title}} | 32 | {{item.title | underscore-to-space}} |
33 | </div> | 33 | </div> |
34 | </div> | 34 | </div> |
35 | </template> | 35 | </template> |
@@ -66,6 +66,8 @@ export default class LdThumbnail extends Vue { | |||
66 | width: $thumbnail-other-size; | 66 | width: $thumbnail-other-size; |
67 | height: $thumbnail-other-size; | 67 | height: $thumbnail-other-size; |
68 | text-align: center; | 68 | text-align: center; |
69 | word-break: break-all; | ||
70 | overflow: hidden; | ||
69 | } | 71 | } |
70 | 72 | ||
71 | .preload { | 73 | .preload { |
diff --git a/viewer/src/main.ts b/viewer/src/main.ts index bc005c5..f849525 100644 --- a/viewer/src/main.ts +++ b/viewer/src/main.ts | |||
@@ -31,11 +31,11 @@ import(/* webpackChunkName: "ui" */ "@/plugins/dragscroll"); | |||
31 | import(/* webpackChunkName: "ui" */ "@/plugins/fontawesome"); | 31 | import(/* webpackChunkName: "ui" */ "@/plugins/fontawesome"); |
32 | const MainLayout = () => import(/* webpackChunkName: "ui" */ "@/views/MainLayout.vue"); | 32 | const MainLayout = () => import(/* webpackChunkName: "ui" */ "@/views/MainLayout.vue"); |
33 | 33 | ||
34 | Vue.filter("underscore-to-space", (input: string) => input.replace(/_/g, ' ')); | ||
35 | |||
34 | new Vue({ | 36 | new Vue({ |
35 | router, | 37 | router, |
36 | i18n, | 38 | i18n, |
37 | store, | 39 | store, |
38 | render: h => h(MainLayout) | 40 | render: h => h(MainLayout) |
39 | }).$mount("#ldgallery") | 41 | }).$mount("#ldgallery") |
40 | |||
41 | |||