diff options
author | Zéro~Informatique | 2022-09-05 07:25:10 +0200 |
---|---|---|
committer | Zéro~Informatique | 2022-09-05 07:25:10 +0200 |
commit | 40a0897be0e8834633f18b98f56ae117447236d2 (patch) | |
tree | 0ae2cf3d86224dcbeaca052642fa794bd0a2d692 /viewer/src | |
parent | 8349be992b46b77dee921f484cfbff8b758ff756 (diff) | |
download | ldgallery-40a0897be0e8834633f18b98f56ae117447236d2.tar.gz |
viewer: wrong colour for icon and title for audio items
github: closes #323
Diffstat (limited to 'viewer/src')
-rw-r--r-- | viewer/src/views/ItemThumbnail.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/viewer/src/views/ItemThumbnail.vue b/viewer/src/views/ItemThumbnail.vue index 1c9e206..c512004 100644 --- a/viewer/src/views/ItemThumbnail.vue +++ b/viewer/src/views/ItemThumbnail.vue | |||
@@ -40,7 +40,7 @@ | |||
40 | size="4x" | 40 | size="4x" |
41 | /> | 41 | /> |
42 | </div> | 42 | </div> |
43 | {{ item.title }} | 43 | <div v-text="item.title" /> |
44 | </div> | 44 | </div> |
45 | </div> | 45 | </div> |
46 | </template> | 46 | </template> |
@@ -74,6 +74,7 @@ const icon = computed(() => navigation.getIcon(props.item)); | |||
74 | @import "~@/assets/scss/theme"; | 74 | @import "~@/assets/scss/theme"; |
75 | 75 | ||
76 | .thumbnailOther { | 76 | .thumbnailOther { |
77 | color: $text-light; | ||
77 | width: $thumbnail-other-size; | 78 | width: $thumbnail-other-size; |
78 | height: $thumbnail-other-size; | 79 | height: $thumbnail-other-size; |
79 | padding-top: $body-line-height * 1em; | 80 | padding-top: $body-line-height * 1em; |