Compare commits
No commits in common. "1238f902681ae49f489c229483cbe32a65e6b808" and "8bc1fbf530febc1bcb661e80e5e1ed2a6fdfb6fa" have entirely different histories.
1238f90268
...
8bc1fbf530
|
@ -408,7 +408,7 @@ export default {
|
||||||
actor: null,
|
actor: null,
|
||||||
releases: null,
|
releases: null,
|
||||||
totalCount: 0,
|
totalCount: 0,
|
||||||
limit: 20,
|
limit: 15,
|
||||||
pageTitle: null,
|
pageTitle: null,
|
||||||
bioExpanded: false,
|
bioExpanded: false,
|
||||||
photosExpanded: false,
|
photosExpanded: false,
|
||||||
|
|
|
@ -59,7 +59,6 @@
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<Pagination
|
<Pagination
|
||||||
ref="pagination"
|
|
||||||
:items-total="totalCount"
|
:items-total="totalCount"
|
||||||
:items-per-page="limit"
|
:items-per-page="limit"
|
||||||
/>
|
/>
|
||||||
|
@ -100,8 +99,6 @@ async function fetchActors() {
|
||||||
|
|
||||||
this.actors = actors;
|
this.actors = actors;
|
||||||
this.totalCount = totalCount;
|
this.totalCount = totalCount;
|
||||||
|
|
||||||
this.$refs.pagination.$el.scrollIntoView();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function letter() {
|
function letter() {
|
||||||
|
@ -133,7 +130,7 @@ export default {
|
||||||
actors: [],
|
actors: [],
|
||||||
pageTitle: null,
|
pageTitle: null,
|
||||||
totalCount: 0,
|
totalCount: 0,
|
||||||
limit: 50,
|
limit: 30,
|
||||||
letters: ['all'].concat(Array.from({ length: 26 }, (value, index) => String.fromCharCode(index + 97).toUpperCase())),
|
letters: ['all'].concat(Array.from({ length: 26 }, (value, index) => String.fromCharCode(index + 97).toUpperCase())),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
|
@ -20,11 +20,8 @@
|
||||||
@show-filters="(state) => toggleFilters(state)"
|
@show-filters="(state) => toggleFilters(state)"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div
|
<div class="content">
|
||||||
ref="content"
|
<router-view />
|
||||||
class="content"
|
|
||||||
>
|
|
||||||
<router-view @scroll="scrollToTop" />
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Filters
|
<Filters
|
||||||
|
@ -71,10 +68,6 @@ function resize(event) {
|
||||||
this.events.emit('resize', event);
|
this.events.emit('resize', event);
|
||||||
}
|
}
|
||||||
|
|
||||||
function scrollToTop() {
|
|
||||||
this.$refs.content.scrollTop = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
function mounted() {
|
function mounted() {
|
||||||
document.addEventListener('click', this.blur);
|
document.addEventListener('click', this.blur);
|
||||||
window.addEventListener('resize', this.resize);
|
window.addEventListener('resize', this.resize);
|
||||||
|
@ -107,7 +100,6 @@ export default {
|
||||||
setConsent,
|
setConsent,
|
||||||
blur,
|
blur,
|
||||||
resize,
|
resize,
|
||||||
scrollToTop,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -75,7 +75,10 @@
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="content-inner">
|
<div
|
||||||
|
ref="content"
|
||||||
|
class="content-inner"
|
||||||
|
>
|
||||||
<Scroll
|
<Scroll
|
||||||
v-if="entity.children.length > 0"
|
v-if="entity.children.length > 0"
|
||||||
v-slot="scroll"
|
v-slot="scroll"
|
||||||
|
@ -91,7 +94,6 @@
|
||||||
</Scroll>
|
</Scroll>
|
||||||
|
|
||||||
<FilterBar
|
<FilterBar
|
||||||
ref="filter"
|
|
||||||
:fetch-releases="fetchEntity"
|
:fetch-releases="fetchEntity"
|
||||||
:items-total="totalCount"
|
:items-total="totalCount"
|
||||||
:items-per-page="limit"
|
:items-per-page="limit"
|
||||||
|
@ -113,6 +115,8 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { nextTick } from 'vue';
|
||||||
|
|
||||||
import FilterBar from '../filters/filter-bar.vue';
|
import FilterBar from '../filters/filter-bar.vue';
|
||||||
import Pagination from '../pagination/pagination.vue';
|
import Pagination from '../pagination/pagination.vue';
|
||||||
import Releases from '../releases/releases.vue';
|
import Releases from '../releases/releases.vue';
|
||||||
|
@ -133,7 +137,9 @@ async function fetchEntity() {
|
||||||
|
|
||||||
this.pageTitle = entity.name;
|
this.pageTitle = entity.name;
|
||||||
|
|
||||||
this.$refs.filter.$el.scrollIntoView();
|
nextTick(() => {
|
||||||
|
this.$refs.content.scrollTop = 0;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function mounted() {
|
async function mounted() {
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="home">
|
<div class="home">
|
||||||
<div class="content-inner">
|
<div
|
||||||
|
ref="content"
|
||||||
|
class="content-inner"
|
||||||
|
>
|
||||||
<FilterBar
|
<FilterBar
|
||||||
ref="filter"
|
|
||||||
:fetch-releases="fetchReleases"
|
:fetch-releases="fetchReleases"
|
||||||
:is-home="true"
|
:is-home="true"
|
||||||
:items-total="totalCount"
|
:items-total="totalCount"
|
||||||
|
@ -39,7 +41,7 @@ async function fetchReleases() {
|
||||||
this.totalCount = totalCount;
|
this.totalCount = totalCount;
|
||||||
this.releases = releases;
|
this.releases = releases;
|
||||||
|
|
||||||
this.$refs.filter.$el.scrollIntoView();
|
this.$refs.content.scrollTop = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
async function mounted() {
|
async function mounted() {
|
||||||
|
@ -59,7 +61,7 @@ export default {
|
||||||
releases: [],
|
releases: [],
|
||||||
networks: [],
|
networks: [],
|
||||||
pageTitle: null,
|
pageTitle: null,
|
||||||
limit: 30,
|
limit: 20,
|
||||||
totalCount: 0,
|
totalCount: 0,
|
||||||
from: null,
|
from: null,
|
||||||
};
|
};
|
||||||
|
|
|
@ -170,7 +170,6 @@ export default {
|
||||||
grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
|
||||||
grid-gap: 1rem;
|
grid-gap: 1rem;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 1rem;
|
|
||||||
margin: 0 0 1rem 0;
|
margin: 0 0 1rem 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -251,7 +250,7 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.trailer-container {
|
.trailer-container {
|
||||||
height: 18rem;
|
max-height: 18rem;
|
||||||
width: 32rem;
|
width: 32rem;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
|
@ -71,7 +71,7 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import 'breakpoints';
|
@import 'theme';
|
||||||
|
|
||||||
.heading {
|
.heading {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -111,9 +111,15 @@ export default {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media(max-width: $breakpoint-kilo) {
|
@media(max-width: $breakpoint3) {
|
||||||
.tiles {
|
.tiles {
|
||||||
grid-gap: .5rem;
|
grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media(max-width: $breakpoint2) {
|
||||||
|
.tiles {
|
||||||
|
grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
:class="{ new: release.isNew }"
|
:class="{ new: release.isNew }"
|
||||||
class="tile"
|
class="tile"
|
||||||
>
|
>
|
||||||
<div class="tile-body">
|
|
||||||
<span class="poster">
|
<span class="poster">
|
||||||
<a
|
<a
|
||||||
:href="`/scene/${release.id}/${release.slug || ''}`"
|
:href="`/scene/${release.id}/${release.slug || ''}`"
|
||||||
|
@ -42,14 +41,11 @@
|
||||||
class="thumbnail"
|
class="thumbnail"
|
||||||
>No thumbnail available</div>
|
>No thumbnail available</div>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
<Details :release="release" />
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<div class="info">
|
<div class="info">
|
||||||
<Details
|
|
||||||
:release="release"
|
|
||||||
class="details-wide"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<a
|
<a
|
||||||
:href="`/scene/${release.id}/${release.slug || ''}`"
|
:href="`/scene/${release.id}/${release.slug || ''}`"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
@ -125,12 +121,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Details
|
|
||||||
:release="release"
|
|
||||||
class="details-compact"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -157,7 +147,7 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import 'breakpoints';
|
@import 'theme';
|
||||||
|
|
||||||
.tile {
|
.tile {
|
||||||
background: var(--background);
|
background: var(--background);
|
||||||
|
@ -182,13 +172,9 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.tile-body {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.poster {
|
.poster {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
margin: 0 0 .6rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.covers {
|
.covers {
|
||||||
|
@ -227,7 +213,6 @@ export default {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
overflow: hidden;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.link {
|
.link {
|
||||||
|
@ -313,53 +298,4 @@ export default {
|
||||||
color: var(--primary);
|
color: var(--primary);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.details-wide {
|
|
||||||
margin: 0 0 .5rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.details-compact {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media(max-width: $breakpoint-kilo) {
|
|
||||||
.tile-body {
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
|
|
||||||
.poster {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.thumbnail {
|
|
||||||
width: 9rem;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info {
|
|
||||||
padding: .5rem .25rem 0 .25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.row {
|
|
||||||
margin: 0 0 .15rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title,
|
|
||||||
.actor-link {
|
|
||||||
font-size: .9rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.details-wide {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.details-compact {
|
|
||||||
display: flex;
|
|
||||||
border-top: solid 1px var(--shadow-hint);
|
|
||||||
}
|
|
||||||
|
|
||||||
.shoot {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -12,17 +12,10 @@
|
||||||
:title="`Part of ${release.entity.parent.name}`"
|
:title="`Part of ${release.entity.parent.name}`"
|
||||||
:to="`/${release.entity.parent.type}/${release.entity.parent.slug}`"
|
:to="`/${release.entity.parent.type}/${release.entity.parent.slug}`"
|
||||||
class="site-link"
|
class="site-link"
|
||||||
>
|
><img
|
||||||
<img
|
:src="`/img/logos/${release.entity.parent.slug}/favicon.png`"
|
||||||
:src="`/img/logos/${release.entity.parent.slug}/favicon_light.png`"
|
class="favicon"
|
||||||
class="favicon favicon-light"
|
></router-link>
|
||||||
>
|
|
||||||
|
|
||||||
<img
|
|
||||||
:src="`/img/logos/${release.entity.parent.slug}/favicon_dark.png`"
|
|
||||||
class="favicon favicon-dark"
|
|
||||||
>
|
|
||||||
</router-link>
|
|
||||||
|
|
||||||
<router-link
|
<router-link
|
||||||
v-tooltip.bottom="`More from ${release.entity.name}`"
|
v-tooltip.bottom="`More from ${release.entity.name}`"
|
||||||
|
@ -36,17 +29,10 @@
|
||||||
v-else
|
v-else
|
||||||
:to="`/${release.entity.type}/${release.entity.slug}`"
|
:to="`/${release.entity.type}/${release.entity.slug}`"
|
||||||
class="site site-link"
|
class="site site-link"
|
||||||
>
|
><img
|
||||||
<img
|
:src="`/img/logos/${release.entity.slug}/favicon.png`"
|
||||||
:src="`/img/logos/${release.entity.slug}/favicon_light.png`"
|
class="favicon"
|
||||||
class="favicon favicon-light"
|
>{{ release.entity.name }}</router-link>
|
||||||
>
|
|
||||||
|
|
||||||
<img
|
|
||||||
:src="`/img/logos/${release.entity.slug}/favicon_dark.png`"
|
|
||||||
class="favicon favicon-dark"
|
|
||||||
>{{ release.entity.name }}
|
|
||||||
</router-link>
|
|
||||||
|
|
||||||
<a
|
<a
|
||||||
v-if="release.date"
|
v-if="release.date"
|
||||||
|
@ -82,8 +68,6 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import 'breakpoints';
|
|
||||||
|
|
||||||
.details {
|
.details {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -95,9 +79,8 @@ export default {
|
||||||
box-shadow: 0 0 3px var(--darken);
|
box-shadow: 0 0 3px var(--darken);
|
||||||
|
|
||||||
.favicon {
|
.favicon {
|
||||||
height: 2rem;
|
width: 1rem;
|
||||||
box-sizing: border-box;
|
margin: 0 .25rem 0 0;
|
||||||
padding: .5rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -132,43 +115,9 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.site {
|
|
||||||
padding: 0 .5rem 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.site-link {
|
.site-link {
|
||||||
display: flex;
|
display: flex;
|
||||||
color: var(--text-light);
|
color: var(--text-light);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.favicon-dark {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media(max-width: $breakpoint-kilo) {
|
|
||||||
/* light details bar
|
|
||||||
.details {
|
|
||||||
background: var(--background);
|
|
||||||
box-shadow: none;
|
|
||||||
|
|
||||||
.favicon-dark {
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.favicon-light {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.site-link,
|
|
||||||
.date {
|
|
||||||
color: var(--text);
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
.site {
|
|
||||||
padding: 0 .5rem 0 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -210,21 +210,17 @@ export default {
|
||||||
padding: 1rem .5rem 1rem 2rem;
|
padding: 1rem .5rem 1rem 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scroll .expand-light {
|
.scroll-light .expand-dark {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scroll-light {
|
|
||||||
.expand-light {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.expand-dark {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.scroll-dark .expand-light {
|
.scroll-dark .expand-light {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media(max-width: $breakpoint) {
|
||||||
|
.scroll-button {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -31,11 +31,7 @@
|
||||||
/>
|
/>
|
||||||
</Scroll>
|
</Scroll>
|
||||||
|
|
||||||
<FilterBar
|
<FilterBar :fetch-releases="fetchReleases" />
|
||||||
ref="filter"
|
|
||||||
:fetch-releases="fetchReleases"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<Releases :releases="releases" />
|
<Releases :releases="releases" />
|
||||||
|
|
||||||
<Pagination
|
<Pagination
|
||||||
|
@ -77,8 +73,6 @@ async function fetchReleases() {
|
||||||
|
|
||||||
this.hasMedia = this.tag.poster || this.tag.photos.length > 0;
|
this.hasMedia = this.tag.poster || this.tag.photos.length > 0;
|
||||||
this.description = this.tag.description && converter.makeHtml(escapeHtml(this.tag.description));
|
this.description = this.tag.description && converter.makeHtml(escapeHtml(this.tag.description));
|
||||||
|
|
||||||
this.$refs.filter.$el.scrollIntoView();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function mounted() {
|
async function mounted() {
|
||||||
|
@ -100,7 +94,7 @@ export default {
|
||||||
description: null,
|
description: null,
|
||||||
releases: null,
|
releases: null,
|
||||||
totalCount: 0,
|
totalCount: 0,
|
||||||
limit: 20,
|
limit: 15,
|
||||||
pageTitle: null,
|
pageTitle: null,
|
||||||
hasMedia: false,
|
hasMedia: false,
|
||||||
expanded: false,
|
expanded: false,
|
||||||
|
|
|
@ -191,9 +191,6 @@ const routes = [
|
||||||
const router = createRouter({
|
const router = createRouter({
|
||||||
history: createWebHistory(),
|
history: createWebHistory(),
|
||||||
routes,
|
routes,
|
||||||
scrollBehavior(to, from, savedPosition) {
|
|
||||||
console.log(to, from, savedPosition);
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default router;
|
export default router;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.158.0",
|
"version": "1.157.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.158.0",
|
"version": "1.157.0",
|
||||||
"description": "All the latest porn releases in one place",
|
"description": "All the latest porn releases in one place",
|
||||||
"main": "src/app.js",
|
"main": "src/app.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 832 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 1018 B |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 9.1 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 923 B |
Before Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 1006 B |
Before Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 1012 B |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 988 B |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 7.3 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 931 B |
Before Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 2.4 KiB |