2016-10-28 13:19:42 +00:00
|
|
|
<template>
|
2018-03-31 18:14:36 +00:00
|
|
|
<div class="status-el" v-if="compact">
|
2017-05-31 08:47:18 +00:00
|
|
|
<div @click.prevent="linkClicked" class="status-content" v-html="status.statusnet_html"></div>
|
|
|
|
<div v-if="loggedIn">
|
|
|
|
<div class='status-actions'>
|
|
|
|
<div>
|
|
|
|
<a href="#" v-on:click.prevent="toggleReplying">
|
2018-03-31 18:14:36 +00:00
|
|
|
<i class="icon-reply" :class="{'icon-reply-active': replying}"></i>
|
2017-05-31 08:47:18 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
2018-02-02 10:27:31 +00:00
|
|
|
<retweet-button :loggedIn="loggedIn" :status=status></retweet-button>
|
2018-02-03 08:18:53 +00:00
|
|
|
<favorite-button :loggedIn="loggedIn" :status=status></favorite-button>
|
2017-05-31 08:47:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<post-status-form class="reply-body" :reply-to="status.id" :attentions="status.attentions" :repliedUser="status.user" v-on:posted="toggleReplying" v-if="replying"/>
|
|
|
|
</div>
|
2018-03-31 18:14:36 +00:00
|
|
|
<div class="status-el status-fadein" v-else-if="!status.deleted" v-bind:class="[{ 'status-el_focused': isFocused }, { 'status-conversation': inConversation }]" >
|
2017-02-13 23:01:50 +00:00
|
|
|
<template v-if="muted">
|
|
|
|
<div class="media status container muted">
|
|
|
|
<small><router-link :to="{ name: 'user-profile', params: { id: status.user.id } }">{{status.user.screen_name}}</router-link></small>
|
2017-04-09 13:53:23 +00:00
|
|
|
<small class="muteWords">{{muteWordHits.join(', ')}}</small>
|
2018-03-31 18:14:36 +00:00
|
|
|
<a href="#" class="unmute" @click.prevent="toggleMute"><i class="icon-eye-off"></i></a>
|
2016-10-28 13:19:42 +00:00
|
|
|
</div>
|
2017-02-13 23:01:50 +00:00
|
|
|
</template>
|
|
|
|
<template v-if="!muted">
|
|
|
|
<div v-if="retweet" class="media container retweet-info">
|
|
|
|
<div class="media-left">
|
|
|
|
<i class='fa icon-retweet retweeted'></i>
|
|
|
|
</div>
|
|
|
|
<div class="media-body">
|
2017-06-02 10:05:03 +00:00
|
|
|
Repeated by <a :href="statusoid.user.statusnet_profile_url" style="font-weight: bold;" :title="'@'+statusoid.user.screen_name">{{retweeter}}</a>
|
2017-02-13 23:01:50 +00:00
|
|
|
</div>
|
2016-10-28 13:19:42 +00:00
|
|
|
</div>
|
2017-02-13 23:01:50 +00:00
|
|
|
<div class="media status container">
|
|
|
|
<div class="media-left">
|
|
|
|
<a :href="status.user.statusnet_profile_url">
|
2018-02-03 16:55:45 +00:00
|
|
|
<StillImage @click.native.prevent="toggleUserExpanded" :class="{retweeted: retweet}" class='avatar' :src="status.user.profile_image_url_original"/>
|
2018-03-11 23:31:33 +00:00
|
|
|
<StillImage v-if="retweet" class='avatar avatar-retweeter' :src="statusoid.user.profile_image_url_original"/>
|
2017-02-13 23:01:50 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="media-body">
|
2018-03-31 18:14:36 +00:00
|
|
|
<div class="usercard" v-if="userExpanded">
|
2017-08-21 17:25:01 +00:00
|
|
|
<user-card-content :user="status.user" :switcher="false"></user-card-content>
|
2017-02-16 14:58:49 +00:00
|
|
|
</div>
|
2017-02-13 23:01:50 +00:00
|
|
|
<div class="user-content">
|
2017-05-31 22:02:04 +00:00
|
|
|
<div class="media-heading">
|
|
|
|
<div class="name-and-links">
|
2017-06-01 14:35:00 +00:00
|
|
|
<h4 class="user-name">{{status.user.name}}</h4>
|
2017-05-31 22:02:04 +00:00
|
|
|
<div class="links">
|
|
|
|
<h4>
|
|
|
|
<small><router-link :to="{ name: 'user-profile', params: { id: status.user.id } }">{{status.user.screen_name}}</router-link></small>
|
|
|
|
<small v-if="status.in_reply_to_screen_name"> >
|
|
|
|
<router-link :to="{ name: 'user-profile', params: { id: status.in_reply_to_user_id } }">
|
|
|
|
{{status.in_reply_to_screen_name}}
|
|
|
|
</router-link>
|
|
|
|
</small>
|
2017-11-13 14:33:54 +00:00
|
|
|
<template v-if="isReply">
|
2017-05-31 22:02:04 +00:00
|
|
|
<small>
|
2017-06-07 14:58:24 +00:00
|
|
|
<a href="#" @click.prevent="gotoOriginal(status.in_reply_to_status_id)"><i class="icon-reply" @mouseenter="replyEnter(status.in_reply_to_status_id, $event)" @mouseout="replyLeave()"></i></a>
|
2017-05-31 22:02:04 +00:00
|
|
|
</small>
|
|
|
|
</template>
|
|
|
|
-
|
|
|
|
<small>
|
|
|
|
<router-link :to="{ name: 'conversation', params: { id: status.id } }">
|
2017-05-31 22:11:57 +00:00
|
|
|
<timeago :since="status.created_at" :auto-update="60"></timeago>
|
2017-05-31 22:02:04 +00:00
|
|
|
</router-link>
|
|
|
|
</small>
|
|
|
|
</h4>
|
|
|
|
</div>
|
2017-06-04 20:58:15 +00:00
|
|
|
<h4 class="replies" v-if="inConversation">
|
|
|
|
<small v-if="replies.length">Replies:</small>
|
|
|
|
<small v-for="reply in replies">
|
2017-06-07 14:58:24 +00:00
|
|
|
<a href="#" @click.prevent="gotoOriginal(reply.id)" @mouseenter="replyEnter(reply.id, $event)" @mouseout="replyLeave()">{{reply.name}} </a>
|
2017-06-04 20:58:15 +00:00
|
|
|
</small>
|
|
|
|
</h4>
|
2017-05-31 22:02:04 +00:00
|
|
|
</div>
|
|
|
|
<div class="heading-icons">
|
2018-03-31 18:14:36 +00:00
|
|
|
<a href="#" @click.prevent="toggleMute" v-if="unmuted"><i class="icon-eye-off"></i></a>
|
|
|
|
<a :href="status.external_url" target="_blank" v-if="!status.is_local" class="source_url"><i class="icon-binoculars"></i></a>
|
2017-05-31 22:02:04 +00:00
|
|
|
<template v-if="expandable">
|
2018-03-31 18:14:36 +00:00
|
|
|
<a href="#" @click.prevent="toggleExpanded" class="expand"><i class="icon-plus-squared"></i></a>
|
2017-05-31 22:02:04 +00:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-11-28 15:10:03 +00:00
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
<div class="status-preview" v-if="showPreview && preview">
|
2018-02-03 16:55:45 +00:00
|
|
|
<StillImage class="avatar" :src="preview.user.profile_image_url_original"/>
|
2017-11-13 14:33:54 +00:00
|
|
|
<div class="text">
|
|
|
|
<h4>
|
|
|
|
{{ preview.user.name }}
|
|
|
|
<small><a>{{ preview.user.screen_name}}</a></small>
|
|
|
|
</h4>
|
|
|
|
<div @click.prevent="linkClicked" class="status-content" v-html="preview.statusnet_html"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-03-31 18:14:36 +00:00
|
|
|
<div class="status-preview status-preview-loading" v-else-if="showPreview">
|
|
|
|
<i class="icon-spin4 animate-spin"></i>
|
2017-11-13 14:33:54 +00:00
|
|
|
</div>
|
|
|
|
|
2017-02-19 11:58:25 +00:00
|
|
|
<div @click.prevent="linkClicked" class="status-content" v-html="status.statusnet_html"></div>
|
2016-11-28 15:10:03 +00:00
|
|
|
|
2017-02-13 23:01:50 +00:00
|
|
|
<div v-if='status.attachments' class='attachments'>
|
2018-02-04 15:26:46 +00:00
|
|
|
<attachment v-if="!hideAttachments" :status-id="status.id" :nsfw="status.nsfw" :attachment="attachment" v-for="attachment in status.attachments" :key="attachment.id">
|
2017-02-13 23:01:50 +00:00
|
|
|
</attachment>
|
|
|
|
</div>
|
2016-11-28 15:10:03 +00:00
|
|
|
</div>
|
2016-10-28 13:19:42 +00:00
|
|
|
|
2018-02-01 22:45:29 +00:00
|
|
|
<div class='status-actions'>
|
|
|
|
<div v-if="loggedIn">
|
|
|
|
<a href="#" v-on:click.prevent="toggleReplying">
|
2018-03-31 18:14:36 +00:00
|
|
|
<i class="icon-reply" :class="{'icon-reply-active': replying}"></i>
|
2018-02-01 22:45:29 +00:00
|
|
|
</a>
|
2016-10-28 13:19:42 +00:00
|
|
|
</div>
|
2018-02-01 22:45:29 +00:00
|
|
|
<retweet-button :loggedIn="loggedIn" :status=status></retweet-button>
|
|
|
|
<favorite-button :loggedIn="loggedIn" :status=status></favorite-button>
|
|
|
|
<delete-button :status=status></delete-button>
|
2017-02-13 23:01:50 +00:00
|
|
|
</div>
|
2016-10-28 13:19:42 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-03-31 18:14:36 +00:00
|
|
|
<div class="status container" v-if="replying">
|
2017-03-09 19:32:54 +00:00
|
|
|
<div class="reply-left"/>
|
|
|
|
<post-status-form class="reply-body" :reply-to="status.id" :attentions="status.attentions" :repliedUser="status.user" v-on:posted="toggleReplying"/>
|
|
|
|
</div>
|
2017-02-13 23:01:50 +00:00
|
|
|
</template>
|
2016-10-28 13:19:42 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./status.js" ></script>
|
2016-10-28 23:38:41 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
2018-03-31 18:14:36 +00:00
|
|
|
@import '../../_variables.scss';
|
2017-05-31 22:02:04 +00:00
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
status-text-container {
|
2018-04-07 16:30:27 +00:00
|
|
|
display: block;
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2017-11-13 14:33:54 +00:00
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
.status-preview {
|
2018-04-07 16:30:27 +00:00
|
|
|
position: absolute;
|
|
|
|
max-width: 34em;
|
|
|
|
padding: 0.5em;
|
|
|
|
display: flex;
|
|
|
|
background-color: $fallback--bg;
|
|
|
|
background-color: var(--bg, $fallback--bg);
|
|
|
|
border-color: $fallback--border;
|
|
|
|
border-color: var(--border, $fallback--border);
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
border-radius: $fallback--tooltipRadius;
|
|
|
|
border-radius: var(--tooltipRadius, $fallback--tooltipRadius);
|
|
|
|
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
|
|
|
|
margin-top: 0.5em;
|
|
|
|
margin-left: 1em;
|
|
|
|
z-index: 50;
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
border-radius: $fallback--avatarAltRadius;
|
|
|
|
border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius);
|
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
|
|
|
h4 {
|
|
|
|
margin-bottom: 0.4em;
|
|
|
|
small {
|
|
|
|
font-weight: lighter;
|
|
|
|
}
|
2017-11-13 14:33:54 +00:00
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
padding: 0 0.5em 0.5em 0.5em;
|
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2017-11-13 14:33:54 +00:00
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
.status-preview-loading {
|
2018-04-07 16:30:27 +00:00
|
|
|
display: block;
|
|
|
|
font-size: 2em;
|
|
|
|
min-width: 8em;
|
|
|
|
text-align: center;
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-el {
|
2018-04-07 16:30:27 +00:00
|
|
|
hyphens: auto;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
word-break: break-word;
|
|
|
|
border-left-width: 0px;
|
|
|
|
line-height: 18px;
|
|
|
|
background-color: $fallback--bg;
|
|
|
|
background-color: var(--bg, $fallback--bg);
|
|
|
|
border-color: $fallback--border;
|
|
|
|
border-color: var(--border, $fallback--border);
|
|
|
|
|
|
|
|
&_focused {
|
|
|
|
background-color: $fallback--lightBg;
|
|
|
|
background-color: var(--lightBg, $fallback--lightBg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.usercard {
|
2018-04-01 02:28:20 +00:00
|
|
|
border-color: $fallback--border;
|
|
|
|
border-color: var(--border, $fallback--border);
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.timeline & {
|
|
|
|
border-bottom-width: 1px;
|
|
|
|
border-bottom-style: solid;
|
|
|
|
}
|
2017-05-31 22:02:04 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.notify {
|
|
|
|
.avatar {
|
|
|
|
border-width: 3px;
|
|
|
|
border-style: solid;
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2017-11-13 05:28:21 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.media-body {
|
|
|
|
flex: 1;
|
|
|
|
padding-left: 0.5em;
|
|
|
|
}
|
2017-05-31 22:02:04 +00:00
|
|
|
|
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.user-content {
|
|
|
|
min-height: 52px;
|
|
|
|
padding-top: 1px;
|
|
|
|
}
|
2017-05-31 22:02:04 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.media-heading {
|
|
|
|
display: flex;
|
|
|
|
min-height: 1.4em;
|
|
|
|
margin-bottom: 0.3em;
|
2016-10-28 23:38:41 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.links a i {
|
|
|
|
color: $fallback--link;
|
|
|
|
color: var(--link, $fallback--link);
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2016-11-28 15:10:03 +00:00
|
|
|
|
2017-05-31 22:02:04 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
small {
|
|
|
|
font-weight: lighter;
|
|
|
|
}
|
2018-04-07 13:29:50 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
h4 {
|
|
|
|
margin-right: 0.4em;
|
|
|
|
}
|
2018-04-07 13:29:50 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.name-and-links {
|
|
|
|
flex: 1 0;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2018-04-01 02:28:20 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.replies {
|
|
|
|
flex-basis: 100%;
|
|
|
|
}
|
|
|
|
}
|
2018-04-01 02:28:20 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.source_url {
|
2018-04-01 02:28:20 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2017-05-31 22:11:57 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.expand {
|
|
|
|
margin-right: -0.3em;
|
|
|
|
}
|
2017-05-31 22:02:04 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
2016-11-25 16:34:41 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.status-content {
|
|
|
|
margin: 3px 15px 4px 0;
|
|
|
|
max-height: 400px;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
2016-11-12 20:31:41 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
img, video {
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 400px;
|
|
|
|
vertical-align: middle;
|
|
|
|
object-fit: contain;
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2016-11-25 12:42:33 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
blockquote {
|
|
|
|
margin: 0.2em 0 0.2em 2em;
|
|
|
|
font-style: italic;
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 0.2em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
2017-05-31 22:02:04 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.media-left {
|
|
|
|
margin: 0.2em 0.3em 0 0;
|
|
|
|
.avatar {
|
|
|
|
float: right;
|
|
|
|
border-radius: $fallback--avatarRadius;
|
|
|
|
border-radius: var(--avatarRadius, $fallback--avatarRadius);
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2017-05-31 22:02:04 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.retweet-info {
|
|
|
|
padding: 0.7em 0 0 0.6em;
|
2017-05-31 22:02:04 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.media-left {
|
|
|
|
display: flex;
|
2017-05-31 22:02:04 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
i {
|
|
|
|
align-self: center;
|
|
|
|
text-align: right;
|
|
|
|
flex: 1;
|
|
|
|
padding-right: 0.3em;
|
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2016-11-02 17:38:30 +00:00
|
|
|
|
2017-11-12 23:06:48 +00:00
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2017-11-12 23:06:48 +00:00
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
.status-fadein {
|
2018-04-07 16:30:27 +00:00
|
|
|
animation-duration: 0.5s;
|
|
|
|
animation-name: fadein;
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2017-06-07 14:58:24 +00:00
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
@keyframes fadein {
|
2018-04-07 16:30:27 +00:00
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2018-04-01 02:28:20 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.greentext {
|
2018-04-07 16:30:27 +00:00
|
|
|
color: green;
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2017-02-22 23:26:37 +00:00
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
.status-conversation {
|
2018-04-07 16:30:27 +00:00
|
|
|
border-left-style: solid;
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-actions {
|
2018-04-07 16:30:27 +00:00
|
|
|
padding-top: 0.15em;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
2017-05-31 22:02:04 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
div, favorite-button {
|
|
|
|
max-width: 6em;
|
|
|
|
flex: 1;
|
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2016-11-13 16:52:20 +00:00
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
.icon-reply:hover {
|
2018-04-07 16:30:27 +00:00
|
|
|
color: $fallback--cBlue;
|
|
|
|
color: var(--cBlue, $fallback--cBlue);
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2016-11-25 12:42:33 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
.icon-reply.icon-reply-active {
|
2018-04-07 16:30:27 +00:00
|
|
|
color: $fallback--cBlue;
|
|
|
|
color: var(--cBlue, $fallback--cBlue);
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2017-03-09 19:32:54 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.status .avatar {
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
border-radius: 5px;
|
|
|
|
overflow: hidden;
|
2018-02-03 16:55:45 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.animated::before {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.retweeted {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
margin-right: 8px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2017-05-22 11:50:10 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.status:hover .animated.avatar {
|
|
|
|
canvas {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
2018-02-03 16:55:45 +00:00
|
|
|
|
2018-04-07 13:55:51 +00:00
|
|
|
.status .avatar-retweeter {
|
2018-04-07 16:30:27 +00:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
position: absolute;
|
|
|
|
margin-left: 24px;
|
|
|
|
margin-top: 24px;
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2016-11-25 12:42:33 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
.status.compact .avatar {
|
2018-04-07 16:30:27 +00:00
|
|
|
width: 32px;
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2016-11-25 12:42:33 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
.status {
|
2018-04-07 16:30:27 +00:00
|
|
|
padding: 0.4em 0.7em 0.45em 0.7em;
|
|
|
|
border-left: 4px $fallback--cRed;
|
|
|
|
border-left: 4px var(--cRed, $fallback--cRed);
|
|
|
|
border-left-style: inherit;
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2017-05-31 22:02:04 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
.status-conversation:last-child {
|
2018-04-07 16:30:27 +00:00
|
|
|
border-bottom: none;
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2017-11-12 22:26:43 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
.timeline .panel.timeline {
|
2018-04-07 16:30:27 +00:00
|
|
|
overflow: hidden;
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2017-11-12 22:26:43 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
.muted {
|
2018-04-07 16:30:27 +00:00
|
|
|
padding: 0.1em 0.4em 0.1em 0.8em;
|
|
|
|
button {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2017-04-09 13:53:23 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.muteWords {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2017-02-14 20:47:37 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
a.unmute {
|
2018-04-07 16:30:27 +00:00
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2017-02-16 14:58:49 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
.reply-left {
|
2018-04-07 16:30:27 +00:00
|
|
|
flex: 0;
|
|
|
|
min-width: 48px;
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2017-03-09 19:32:54 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
.reply-body {
|
2018-04-07 16:30:27 +00:00
|
|
|
flex: 1;
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2017-03-09 19:32:54 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
@media all and (max-width: 960px) {
|
2018-04-07 16:30:27 +00:00
|
|
|
.status-el {
|
|
|
|
.name-and-links {
|
|
|
|
margin-left: -0.25em;
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2017-06-01 14:35:00 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.status {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2017-06-01 14:35:00 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.status .avatar {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
2018-04-01 02:28:20 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
&.retweeted {
|
|
|
|
width: 34px;
|
|
|
|
height: 34px;
|
|
|
|
margin-right: 8px;
|
|
|
|
margin-bottom: 8px;
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2017-06-01 14:35:00 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.status .avatar-retweeter {
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
position: absolute;
|
|
|
|
margin-left: 18px;
|
|
|
|
margin-top: 18px;
|
|
|
|
}
|
|
|
|
}
|
2017-06-01 14:35:00 +00:00
|
|
|
|
2016-10-28 23:38:41 +00:00
|
|
|
</style>
|