Fixed Gamma scraper breaking when scene has no movie. Improved missing thumbnail presentation on mobile scene tiles.

This commit is contained in:
DebaucheryLibrarian
2021-01-25 23:24:51 +01:00
parent dba99a4170
commit b80eca35d8
3 changed files with 21 additions and 5 deletions

View File

@@ -44,8 +44,8 @@
<div
v-else
:title="release.title"
class="thumbnail"
>No thumbnail available</div>
class="thumbnail unavailable"
><Icon icon="blocked" />No thumbnail available</div>
</a>
</span>
@@ -213,6 +213,13 @@ export default {
background-color: var(--shadow-hint);
color: var(--shadow);
text-shadow: 1px 1px 0 var(--highlight);
.icon {
display: none;
width: 2rem;
height: 2rem;
fill: var(--shadow-hint);
}
}
.row {
@@ -339,7 +346,12 @@ export default {
.thumbnail {
width: 9rem;
height: 100%;
font-size: 0;
box-shadow: 0 0 3px var(--shadow-weak);
.icon {
display: block;
}
}
.info {