Add the single-line prop to StatusContent and use it for chat list items
This commit is contained in:
parent
fc865d3a12
commit
3b2dfcaf5c
6 changed files with 26 additions and 6 deletions
|
@ -43,6 +43,7 @@
|
|||
</a>
|
||||
<div
|
||||
v-if="!hideSubjectStatus"
|
||||
:class="{ 'single-line': singleLine }"
|
||||
class="status-content media-body"
|
||||
@click.prevent="linkClicked"
|
||||
v-html="postBodyHtml"
|
||||
|
@ -269,6 +270,12 @@ $status-margin: 0.75em;
|
|||
h4 {
|
||||
margin: 1.1em 0;
|
||||
}
|
||||
|
||||
&.single-line {
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue