diff --git a/assets/components/actors/actor.vue b/assets/components/actors/actor.vue index aa08495f..f1e52819 100644 --- a/assets/components/actors/actor.vue +++ b/assets/components/actors/actor.vue @@ -318,10 +318,6 @@ async function route() { await this.fetchActor(); } -function scrollPhotos(event) { - event.currentTarget.scrollLeft += event.deltaY; // eslint-disable-line no-param-reassign -} - async function mounted() { await this.fetchActor(); @@ -355,7 +351,6 @@ export default { mounted, methods: { fetchActor, - scrollPhotos, }, }; diff --git a/assets/components/actors/actors.vue b/assets/components/actors/actors.vue index 6e58a500..47e9b63f 100644 --- a/assets/components/actors/actors.vue +++ b/assets/components/actors/actors.vue @@ -155,7 +155,7 @@ export default { .tiles { display: grid; - grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr)); + grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr)); grid-gap: 0 .5rem; padding: 1rem; flex-grow: 1; diff --git a/assets/components/actors/photos.vue b/assets/components/actors/photos.vue index c93bab85..df23291d 100644 --- a/assets/components/actors/photos.vue +++ b/assets/components/actors/photos.vue @@ -67,6 +67,7 @@ export default { display: flex; box-sizing: border-box; padding: 1rem; + border-bottom: solid 1px var(--darken-hint); font-size: 0; overflow-x: scroll; scrollbar-width: none; @@ -79,11 +80,9 @@ export default { display: none; } - /* &::-webkit-scrollbar { display: none; } - */ } .photo-link { diff --git a/assets/components/releases/banner.vue b/assets/components/releases/banner.vue index 78521101..4f01dc1a 100644 --- a/assets/components/releases/banner.vue +++ b/assets/components/releases/banner.vue @@ -1,139 +1,139 @@ diff --git a/assets/components/releases/release.vue b/assets/components/releases/release.vue index 010f0903..5785000f 100644 --- a/assets/components/releases/release.vue +++ b/assets/components/releases/release.vue @@ -3,8 +3,6 @@ v-if="release" class="content" > - -
+ +

{{ release.title }}

diff --git a/assets/components/search/search.vue b/assets/components/search/search.vue index 7d1b3438..2c060091 100644 --- a/assets/components/search/search.vue +++ b/assets/components/search/search.vue @@ -101,9 +101,15 @@ export default { .tiles { display: grid; - grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr)); + grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr)); grid-gap: 0 .5rem; flex-grow: 1; margin: 0 0 1rem 0; } + +@media(max-width: $breakpoint0) { + .tiles { + grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr)); + } +} diff --git a/public/img/logos/momsacheater/misc/moms-a-cheater_original.gif b/public/img/logos/momsacheater/misc/moms-a-cheater_original.gif new file mode 100644 index 00000000..e00df2ac Binary files /dev/null and b/public/img/logos/momsacheater/misc/moms-a-cheater_original.gif differ diff --git a/public/img/logos/momsacheater/momsacheater.png b/public/img/logos/momsacheater/momsacheater.png new file mode 100644 index 00000000..98ecac39 Binary files /dev/null and b/public/img/logos/momsacheater/momsacheater.png differ diff --git a/src/scrapers/julesjordan.js b/src/scrapers/julesjordan.js index fbb33af4..3008dbdc 100644 --- a/src/scrapers/julesjordan.js +++ b/src/scrapers/julesjordan.js @@ -49,7 +49,7 @@ function scrapePhotos(html, type) { async function getPhotosLegacy(entryId, site, type = 'highres', page = 1) { const albumUrl = `${site.url}/trial/gallery.php?id=${entryId}&type=${type}&page=${page}`; - logger.warn(`Jules Jordan is using legacy photo scraper for ${albumUrl} (page ${page})`); + // logger.warn(`Jules Jordan is using legacy photo scraper for ${albumUrl} (page ${page})`); const html = await fetchPhotos(albumUrl); const $ = cheerio.load(html, { normalizeWhitespace: true });