Compare commits
4 Commits
cfa1ed7a61
...
a208c922f7
Author | SHA1 | Date |
---|---|---|
|
a208c922f7 | |
|
757d554e7b | |
|
74afc55dc6 | |
|
29b0451608 |
|
@ -827,6 +827,10 @@ export default {
|
||||||
.expand {
|
.expand {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.actor-stash {
|
||||||
|
margin: 0 .5rem 0 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media(max-width: $breakpoint0) {
|
@media(max-width: $breakpoint0) {
|
||||||
|
|
|
@ -232,9 +232,9 @@ export default {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
object-position: 50% 0;
|
object-position: center 0;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: center;
|
background-position: center 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar-fallback {
|
.avatar-fallback {
|
||||||
|
|
|
@ -73,8 +73,14 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.stash-container.light .icon {
|
@import 'breakpoints';
|
||||||
fill: var(--lighten);
|
|
||||||
|
.stash-container {
|
||||||
|
flex-shrink: 0;
|
||||||
|
|
||||||
|
&.light .icon {
|
||||||
|
fill: var(--lighten);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.stash.icon {
|
.stash.icon {
|
||||||
|
@ -96,4 +102,11 @@ export default {
|
||||||
.stash-trigger {
|
.stash-trigger {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media(max-width: $breakpoint) {
|
||||||
|
.stash.icon {
|
||||||
|
width: 1.25rem;
|
||||||
|
height: 1.25rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -173,7 +173,7 @@ export default {
|
||||||
|
|
||||||
.stash-name {
|
.stash-name {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 0 .5rem;
|
padding: .5rem;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: var(--shadow-strong);
|
color: var(--shadow-strong);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
@ -238,6 +238,10 @@ export default {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
font-size: 0;
|
font-size: 0;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
padding: 0 .5rem 0 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -48,6 +48,9 @@ function initStashesActions(store, _router) {
|
||||||
path
|
path
|
||||||
thumbnail
|
thumbnail
|
||||||
lazy
|
lazy
|
||||||
|
isS3
|
||||||
|
width
|
||||||
|
height
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -130,6 +130,9 @@ function initUiActions(_store, _router) {
|
||||||
path
|
path
|
||||||
thumbnail
|
thumbnail
|
||||||
lazy
|
lazy
|
||||||
|
isS3
|
||||||
|
width
|
||||||
|
height
|
||||||
comment
|
comment
|
||||||
credit
|
credit
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.190.2",
|
"version": "1.190.3",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"version": "1.190.2",
|
"version": "1.190.3",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@casl/ability": "^5.2.2",
|
"@casl/ability": "^5.2.2",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.190.2",
|
"version": "1.190.3",
|
||||||
"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