Compare commits
2 Commits
dc76ee386c
...
acb9d700e0
Author | SHA1 | Date |
---|---|---|
|
acb9d700e0 | |
|
a7199c1019 |
|
@ -220,7 +220,7 @@
|
|||
|
||||
<div class="actor-content">
|
||||
<div
|
||||
v-if="actor.photos && actor.photos.length > 0"
|
||||
v-if="actor.avatar || (actor.photos && actor.photos.length > 0)"
|
||||
class="photos-container"
|
||||
>
|
||||
<Photos :actor="actor" />
|
||||
|
@ -517,7 +517,6 @@ export default {
|
|||
.photos-container {
|
||||
border: none;
|
||||
border-bottom: solid 1px $shadow-hint;
|
||||
padding: 1rem 1rem 1.5rem 1rem;
|
||||
margin: 0 0 .5rem 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -55,6 +55,12 @@ export default {
|
|||
.avatar-link {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&.compact {
|
||||
.photo {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.photo-link {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.49.3",
|
||||
"version": "1.49.4",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.49.3",
|
||||
"version": "1.49.4",
|
||||
"description": "All the latest porn releases in one place",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -946,6 +946,9 @@
|
|||
.photos .avatar-link[data-v-0a0430c7] {
|
||||
display: none;
|
||||
}
|
||||
.photos.compact .photo[data-v-0a0430c7] {
|
||||
width: auto;
|
||||
}
|
||||
.photo[data-v-0a0430c7] {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
@ -1199,7 +1202,6 @@
|
|||
.photos-container[data-v-ea0483c2] {
|
||||
border: none;
|
||||
border-bottom: solid 1px rgba(0, 0, 0, 0.1);
|
||||
padding: 1rem 1rem 1.5rem 1rem;
|
||||
margin: 0 0 .5rem 0;
|
||||
}
|
||||
.photos[data-v-ea0483c2] {
|
||||
|
|
Loading…
Reference in New Issue