Fixed S3 missing from actor avatar queries. Improved stash button alignment.
This commit is contained in:
parent
74afc55dc6
commit
757d554e7b
|
@ -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) {
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue