Always show action buttons below user content.

This commit is contained in:
Roger Braun 2016-11-28 16:10:03 +01:00
parent e0a108fcab
commit 2f7e5c8770
1 changed files with 24 additions and 18 deletions

View File

@ -15,6 +15,7 @@
</a>
</div>
<div class="media-body">
<div class="user-content">
<h4 class="media-heading">
{{status.user.name}}
<small><a :href="status.user.statusnet_profile_url">{{status.user.screen_name}}</a></small>
@ -36,6 +37,7 @@
<attachment :status-id="status.id" :nsfw="status.nsfw" :attachment="attachment" v-for="attachment in status.attachments">
</attachment>
</div>
</div>
<div v-if="loggedIn">
<div class='status-actions'>
@ -65,6 +67,10 @@
word-wrap: break-word;
word-break: break-word;
.user-content {
min-height: 52px;
}
.source_url {
float: right;
}