Improved user page stash display on narrow pages.
This commit is contained in:
parent
a7cf3f689e
commit
bb949e0a3b
|
@ -130,6 +130,16 @@ export default {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stash-name {
|
||||||
|
padding: .5rem;
|
||||||
|
margin: 0;
|
||||||
|
color: var(--shadow-strong);
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stash-public {
|
.stash-public {
|
||||||
|
@ -144,12 +154,6 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.stash-name {
|
|
||||||
padding: .5rem;
|
|
||||||
margin: 0;
|
|
||||||
color: var(--shadow-strong);
|
|
||||||
}
|
|
||||||
|
|
||||||
.stash-actors,
|
.stash-actors,
|
||||||
.stash-scenes {
|
.stash-scenes {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
<li
|
<li
|
||||||
v-for="stash in user.stashes"
|
v-for="stash in user.stashes"
|
||||||
:key="stash.id"
|
:key="stash.id"
|
||||||
|
class="stashes-stash"
|
||||||
>
|
>
|
||||||
<Stash
|
<Stash
|
||||||
:stash="stash"
|
:stash="stash"
|
||||||
|
@ -27,7 +28,7 @@
|
||||||
|
|
||||||
<li
|
<li
|
||||||
v-if="isMe"
|
v-if="isMe"
|
||||||
class="stashes-add"
|
class="stashes-stash stashes-add"
|
||||||
@click="showAddStash = true"
|
@click="showAddStash = true"
|
||||||
>
|
>
|
||||||
<Icon icon="plus2" />
|
<Icon icon="plus2" />
|
||||||
|
@ -118,6 +119,10 @@ export default {
|
||||||
color: var(--primary);
|
color: var(--primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.stashes-stash {
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.stashes-add {
|
.stashes-add {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Reference in New Issue