forked from DebaucheryLibrarian/traxxx
Fixed Kink deep scrape photos. Fixed favicon ratio in compact scene tile. Hiding scroll buttons on small screens.
This commit is contained in:
parent
f39270ee91
commit
a95e409366
|
@ -170,10 +170,6 @@ export default {
|
|||
}
|
||||
*/
|
||||
|
||||
.details .favicon {
|
||||
height: 1.75rem;
|
||||
}
|
||||
|
||||
.date {
|
||||
padding: .25rem .5rem;
|
||||
}
|
||||
|
|
|
@ -131,7 +131,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import 'theme';
|
||||
@import 'breakpoints';
|
||||
|
||||
.scroll.expanded {
|
||||
padding: 0;
|
||||
|
@ -227,4 +227,11 @@ export default {
|
|||
.scroll-dark .expand-light {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media(max-width: $breakpoint-micro) {
|
||||
/* buttons block swiping motion */
|
||||
.scroll-button {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -78,6 +78,7 @@ async function mounted() {
|
|||
'titty-fucking',
|
||||
'fisting',
|
||||
'anal-fisting',
|
||||
'fisting-dp',
|
||||
],
|
||||
group: [
|
||||
'mfm',
|
||||
|
|
|
@ -457,6 +457,10 @@ const tags = [
|
|||
name: 'fisting',
|
||||
slug: 'fisting',
|
||||
},
|
||||
{
|
||||
name: 'fisting DP',
|
||||
slug: 'fisting-dp',
|
||||
},
|
||||
{
|
||||
name: 'MFF threesome',
|
||||
slug: 'mff',
|
||||
|
|
|
@ -631,6 +631,7 @@ const tagPosters = [
|
|||
['family', 0, 'Teanna Trump in "A Family Appear: Part One" for Brazzers'],
|
||||
['femdom', 0, 'Alina Li in "Asian Domination… She Holds Jules Jordan\'s Cock Hostage!" for Jules Jordan'],
|
||||
['fingering', 1, 'Marry Queen for Babespotting.tv'],
|
||||
['fisting-dp', 0, 'Janice Griffith and Veronica Avluv in "The Nymphomaniac\'s Apprentice for The Upper Floor'],
|
||||
['fisting', 0, 'Abella Danger and Karma Rx in "Neon Dreaming" for Brazzers'],
|
||||
['gangbang', 5, 'Carter Cruise\'s first gangbang in "Slut Puppies 9" for Jules Jordan'],
|
||||
['gaping', 1, 'Vina Sky in "Vina Sky Does Anal" for HardX'],
|
||||
|
|
|
@ -43,7 +43,7 @@ async function scrapeScene({ query }, url) {
|
|||
release.actors = query.all('.names a', true).map(actor => actor.replace(/,\s*/, ''));
|
||||
release.director = query.q('.director-name', true);
|
||||
|
||||
release.photos = query.imgs('.gallery .thumb img', 'data-image-file');
|
||||
release.photos = query.imgs('.gallery .thumb img, #gallerySlider .gallery-img', 'data-image-file');
|
||||
release.poster = query.poster();
|
||||
|
||||
release.tags = query.all('.tag-list a[href*="/tag"]', true).map(tag => tag.replace(/,\s*/, ''));
|
||||
|
|
Loading…
Reference in New Issue