aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/status/status.vue')
-rw-r--r--src/components/status/status.vue22
1 files changed, 15 insertions, 7 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue
index c1800d64..c6e73e4e 100644
--- a/src/components/status/status.vue
+++ b/src/components/status/status.vue
@@ -24,9 +24,9 @@
<div :class="[userClass, { highlighted: userStyle, 'is-retweet': retweet }]" :style="[ userStyle ]" class="media status">
<div v-if="!noHeading" class="media-left">
- <a :href="status.user.statusnet_profile_url" @click.stop.prevent.capture="toggleUserExpanded">
+ <router-link :to="userProfileLink" @click.stop.prevent.capture.native="toggleUserExpanded">
<StillImage class='avatar' :class="{'avatar-compact': compact, 'better-shadow': betterShadow}" :src="status.user.profile_image_url_original"/>
- </a>
+ </router-link>
</div>
<div class="status-body">
<div class="usercard media-body" v-if="userExpanded">
@@ -112,6 +112,10 @@
/>
</div>
+ <div v-if="status.card && !hideSubjectStatus && !noHeading" class="link-preview media-body">
+ <link-preview :card="status.card" :size="attachmentSize" :nsfw="nsfwClickthrough" />
+ </div>
+
<div v-if="!noHeading && !noReplyLinks" class='status-actions media-body'>
<div v-if="loggedIn">
<a href="#" v-on:click.prevent="toggleReplying" :title="$t('tool_tip.reply')">
@@ -235,6 +239,11 @@
vertical-align: bottom;
flex-basis: 100%;
+ a {
+ display: inline-block;
+ word-break: break-all;
+ }
+
small {
font-weight: lighter;
}
@@ -310,11 +319,6 @@
}
}
- a {
- display: inline-block;
- word-break: break-all;
- }
-
.tall-status {
position: relative;
height: 220px;
@@ -323,6 +327,8 @@
}
.tall-status-hider {
+ display: inline-block;
+ word-break: break-all;
position: absolute;
height: 70px;
margin-top: 150px;
@@ -340,6 +346,8 @@
.status-unhider, .cw-status-hider {
width: 100%;
text-align: center;
+ display: inline-block;
+ word-break: break-all;
}
.status-content {