From f391a682dbd725c1d8aba9c571472bd390bb6a8d Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Sat, 4 Apr 2020 03:33:25 +0200 Subject: viewer: items with long titles overflow fixed line-height issue on filenames and icon heights GitHub: Resolves #137 --- viewer/src/components/LdThumbnail.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'viewer/src/components') diff --git a/viewer/src/components/LdThumbnail.vue b/viewer/src/components/LdThumbnail.vue index 9805873..f8343eb 100644 --- a/viewer/src/components/LdThumbnail.vue +++ b/viewer/src/components/LdThumbnail.vue @@ -28,7 +28,9 @@ @load="loading=false" />
- +
+ +
{{item.title}}
@@ -65,10 +67,13 @@ export default class LdThumbnail extends Vue { .thumbnail-other { width: $thumbnail-other-size; height: $thumbnail-other-size; - padding-top: 1em; + padding-top: $body-line-height * 2em; text-align: center; word-break: break-word; overflow: hidden; + > div { + min-height: $body-line-height * 3em; + } } .preload { -- cgit v1.2.3