Added thumb and lazy image scripts. Added FreeOnes and Boobpedia as sites.

This commit is contained in:
2020-05-13 23:17:39 +02:00
parent dac451bb86
commit f1eb29c713
1856 changed files with 128 additions and 29 deletions

View File

@@ -67,7 +67,7 @@ async function fetchActors() {
this.actors = await this.$store.dispatch('fetchActors', {
limit: 1000,
letter: this.letter.replace('all', ''),
genders: [curatedGender === 'other' ? null : curatedGender],
gender: curatedGender === 'other' ? null : curatedGender,
});
}
@@ -124,8 +124,18 @@ export default {
filter: none;
}
&:hover:not(.selected) .gender .icon {
fill: var(--text-light);
&:hover:not(.selected) {
.gender .icon {
fill: var(--text-light);
}
.male .icon {
filter: drop-shadow(0 0 1px var(--male));
}
.female .icon {
filter: drop-shadow(0 0 1px var(--female));
}
}
&:hover:not(.selected) .transsexual .icon {
@@ -202,7 +212,7 @@ export default {
cursor: pointer;
.icon {
fill: var(--text-light);
fill: var(--text);
}
}