Fixed actor boolean logic, addressing missing boob, tattoo and piercing info. Removed scroll background, fixed actor photo load event and padding.

This commit is contained in:
DebaucheryLibrarian
2020-12-29 04:20:13 +01:00
parent 0f88ae324e
commit 0f052a0631
4 changed files with 29 additions and 31 deletions

View File

@@ -19,7 +19,7 @@
:title="actor.avatar.credit && `© ${actor.avatar.credit}`"
loading="lazy"
class="avatar photo"
@load="$parent.$emit('load')"
@load="$emit('load', $event)"
>
</a>
@@ -37,7 +37,7 @@
:title="`© ${photo.credit || photo.entity.name}`"
loading="lazy"
class="photo"
@load="$parent.$emit('load')"
@load="$emit('load', $event)"
>
</a>
</div>
@@ -59,6 +59,7 @@ export default {
default: null,
},
},
emits: ['load'],
computed: {
sfw,
photos,
@@ -73,7 +74,6 @@ export default {
display: flex;
box-sizing: border-box;
padding: .5rem 1rem;
margin: 0 1rem 0 0;
font-size: 0;
&.expanded {
@@ -100,7 +100,11 @@ export default {
}
.photo-link {
margin: 0 .5rem 0 0;
padding: 0 .5rem 0 0;
&:last-child {
padding: 0 1rem 0 0;
}
}
.photo {