aboutsummaryrefslogtreecommitdiff
path: root/viewer
diff options
context:
space:
mode:
authorZéro~Informatique2022-09-05 07:25:10 +0200
committerZéro~Informatique2022-09-05 07:25:10 +0200
commit40a0897be0e8834633f18b98f56ae117447236d2 (patch)
tree0ae2cf3d86224dcbeaca052642fa794bd0a2d692 /viewer
parent8349be992b46b77dee921f484cfbff8b758ff756 (diff)
downloadldgallery-40a0897be0e8834633f18b98f56ae117447236d2.tar.gz
viewer: wrong colour for icon and title for audio items
github: closes #323
Diffstat (limited to 'viewer')
-rw-r--r--viewer/src/views/ItemThumbnail.vue3
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;