forked from AkkomaGang/akkoma-fe
mobile-newline (#226)
Allows the handle of users to drop down onto the next line if there isn't enough room in order to improve useability on mobile Reviewed-on: AkkomaGang/pleroma-fe#226 Co-authored-by: Beefox <bee@beefox.xyz> Co-committed-by: Beefox <bee@beefox.xyz>
This commit is contained in:
parent
f8a796b234
commit
684894aee3
3 changed files with 25 additions and 13 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -9,3 +9,4 @@ selenium-debug.log
|
||||||
config/local.json
|
config/local.json
|
||||||
config/local.*.json
|
config/local.*.json
|
||||||
docs/site/
|
docs/site/
|
||||||
|
.vscode/
|
|
@ -130,6 +130,13 @@
|
||||||
.heading-left {
|
.heading-left {
|
||||||
display: flex;
|
display: flex;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
img {
|
||||||
|
aspect-ratio: 1 / 1;
|
||||||
|
}
|
||||||
|
.nowrap{
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.heading-right {
|
.heading-right {
|
||||||
|
@ -140,6 +147,8 @@
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin: -5px;
|
margin: -5px;
|
||||||
|
|
||||||
|
height: min-content;
|
||||||
|
|
||||||
&:hover svg {
|
&:hover svg {
|
||||||
color: $fallback--lightText;
|
color: $fallback--lightText;
|
||||||
color: var(--lightText, $fallback--lightText);
|
color: var(--lightText, $fallback--lightText);
|
||||||
|
|
|
@ -166,19 +166,21 @@
|
||||||
>
|
>
|
||||||
{{ status.user.name }}
|
{{ status.user.name }}
|
||||||
</h4>
|
</h4>
|
||||||
<router-link
|
<span class="nowrap">
|
||||||
class="account-name"
|
<router-link
|
||||||
:title="status.user.screen_name_ui"
|
class="account-name"
|
||||||
:to="userProfileLink"
|
:title="status.user.screen_name_ui"
|
||||||
>
|
:to="userProfileLink"
|
||||||
{{ status.user.screen_name_ui }}
|
>
|
||||||
</router-link>
|
@{{ status.user.screen_name_ui }}
|
||||||
<img
|
</router-link>
|
||||||
v-if="!!(status.user && status.user.favicon)"
|
<img
|
||||||
class="status-favicon"
|
v-if="!!(status.user && status.user.favicon)"
|
||||||
:src="status.user.favicon"
|
class="status-favicon"
|
||||||
:title="faviconAlt(status)"
|
:src="status.user.favicon"
|
||||||
>
|
:title="faviconAlt(status)"
|
||||||
|
>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<span class="heading-right">
|
<span class="heading-right">
|
||||||
|
|
Loading…
Reference in a new issue