Compare commits
No commits in common. "18a1d74a9a0c41c10d63b819ebbc13f2ef2381a2" and "0a7378feb463f4b16914a14555535e9ca360e21a" have entirely different histories.
18a1d74a9a
...
0a7378feb4
|
|
@ -11,7 +11,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="album-items">
|
<div class="album">
|
||||||
<div
|
<div
|
||||||
v-for="item in items"
|
v-for="item in items"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
|
|
@ -63,12 +63,14 @@ export default {
|
||||||
left: 0;
|
left: 0;
|
||||||
background: var(--shadow-extreme);
|
background: var(--shadow-extreme);
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.album-header {
|
.album-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.album-title {
|
.album-title {
|
||||||
|
|
@ -76,7 +78,7 @@ export default {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: .5rem 1rem;
|
padding: 1rem;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: var(--text-light);
|
color: var(--text-light);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
@ -85,8 +87,8 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.close {
|
.close {
|
||||||
width: 1.5rem;
|
width: 2rem;
|
||||||
height: 1.5rem;
|
height: 2rem;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
fill: var(--lighten);
|
fill: var(--lighten);
|
||||||
|
|
||||||
|
|
@ -96,15 +98,14 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.album-items {
|
.album {
|
||||||
display: grid;
|
display: grid;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
|
||||||
grid-gap: 0 1rem;
|
grid-gap: 1rem;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
overflow-y: auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-container {
|
.item-container {
|
||||||
|
|
@ -113,24 +114,13 @@ export default {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-link {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.item {
|
.item {
|
||||||
width: 100%;
|
height: 15rem;
|
||||||
margin: 0 0 1rem 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media(max-width: $breakpoint) {
|
@media(max-width: $breakpoint) {
|
||||||
.album-items {
|
.album {
|
||||||
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media(max-width: $breakpoint-nano) {
|
|
||||||
.album-items {
|
|
||||||
grid-template-columns: repeat(auto-fill, 1fr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div class="media">
|
||||||
class="media"
|
|
||||||
:class="{ center: release.photos.length < 2 }"
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
v-if="release.trailer || release.teaser"
|
v-if="release.trailer || release.teaser"
|
||||||
class="trailer-container"
|
class="trailer-container"
|
||||||
|
|
@ -164,16 +161,12 @@ export default {
|
||||||
@import 'breakpoints';
|
@import 'breakpoints';
|
||||||
|
|
||||||
.media {
|
.media {
|
||||||
|
height: 18rem;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
font-size: 0;
|
font-size: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.media.center {
|
|
||||||
width: 1200px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.poster-link {
|
.poster-link {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: .5rem;
|
top: .5rem;
|
||||||
|
|
@ -245,7 +238,6 @@ export default {
|
||||||
|
|
||||||
.item {
|
.item {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
height: 18rem;
|
|
||||||
box-shadow: 0 0 3px var(--shadow-weak);
|
box-shadow: 0 0 3px var(--shadow-weak);
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
}
|
}
|
||||||
|
|
@ -277,7 +269,23 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media(max-width: $breakpoint-kilo) {
|
||||||
|
.media.expanded {
|
||||||
|
grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media(max-width: $breakpoint) {
|
||||||
|
.media.expanded {
|
||||||
|
grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media(max-width: $breakpoint-micro) {
|
@media(max-width: $breakpoint-micro) {
|
||||||
|
.media.expanded {
|
||||||
|
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
|
||||||
|
}
|
||||||
|
|
||||||
.media:not(.expanded) .item,
|
.media:not(.expanded) .item,
|
||||||
.trailer-container {
|
.trailer-container {
|
||||||
height: 56vw; /* 16:9 ratio for full-width video */
|
height: 56vw; /* 16:9 ratio for full-width video */
|
||||||
|
|
@ -8,9 +8,8 @@
|
||||||
class="scroll-light"
|
class="scroll-light"
|
||||||
:expandable="false"
|
:expandable="false"
|
||||||
>
|
>
|
||||||
<Banner
|
<Media
|
||||||
:release="release"
|
:release="release"
|
||||||
class="media"
|
|
||||||
@load="slotProps.loaded"
|
@load="slotProps.loaded"
|
||||||
/>
|
/>
|
||||||
</Scroll>
|
</Scroll>
|
||||||
|
|
@ -18,7 +17,6 @@
|
||||||
<Details :release="release" />
|
<Details :release="release" />
|
||||||
|
|
||||||
<button
|
<button
|
||||||
v-if="release.photos.length > 0"
|
|
||||||
class="album-toggle"
|
class="album-toggle"
|
||||||
@click="showAlbum = true"
|
@click="showAlbum = true"
|
||||||
><Icon icon="grid3" />View album</button>
|
><Icon icon="grid3" />View album</button>
|
||||||
|
|
@ -199,7 +197,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Details from './details.vue';
|
import Details from './details.vue';
|
||||||
import Banner from './banner.vue';
|
import Media from './media.vue';
|
||||||
import Album from '../album/album.vue';
|
import Album from '../album/album.vue';
|
||||||
import Tags from './tags.vue';
|
import Tags from './tags.vue';
|
||||||
import Clips from './clips.vue';
|
import Clips from './clips.vue';
|
||||||
|
|
@ -228,7 +226,7 @@ export default {
|
||||||
Actor,
|
Actor,
|
||||||
Album,
|
Album,
|
||||||
Details,
|
Details,
|
||||||
Banner,
|
Media,
|
||||||
Scroll,
|
Scroll,
|
||||||
Releases,
|
Releases,
|
||||||
Clips,
|
Clips,
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.159.1",
|
"version": "1.159.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.159.1",
|
"version": "1.159.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": {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue