Updated mindgeek scraper for entities. Various fixes.

This commit is contained in:
2020-06-28 22:29:18 +02:00
parent 41d7d2fa34
commit 98c19b560f
32 changed files with 24 additions and 12 deletions

View File

@@ -4,8 +4,6 @@
:title="tag.name"
class="tile"
>
<span class="title">{{ tag.name }}</span>
<template v-if="tag.poster">
<img
v-if="!lazy && !sfw"
@@ -41,6 +39,8 @@
class="poster"
>
</template>
<span class="title">{{ tag.name }}</span>
</router-link>
</template>
@@ -71,12 +71,12 @@ export default {
.tile {
color: var(--text-light);
background: var(--profile);
display: flex;
flex-direction: column;
justify-content: flex-end;
box-sizing: border-box;
position: relative;
text-decoration: none;
box-shadow: 0 0 3px var(--darken-weak);
overflow: hidden;
}
@@ -104,4 +104,17 @@ export default {
text-shadow: 0 0 3px var(--darken-strong);
text-overflow: ellipsis;
}
@media(max-width: $breakpoint) {
.tile {
position: initial;
}
.title {
position: initial;
color: var(--text);
background: var(--background);
text-shadow: none;
}
}
</style>