2018-04-09 16:43:31 +00:00
|
|
|
<template>
|
2019-02-08 13:17:20 +00:00
|
|
|
<div class="status-el" v-if="!hideStatus" :class="[{ 'status-el_focused': isFocused }, { 'status-conversation': inlineExpanded }]">
|
2019-03-02 16:35:38 +00:00
|
|
|
<template v-if="muted && !isPreview">
|
2018-04-09 16:43:31 +00:00
|
|
|
<div class="media status container muted">
|
2018-12-13 16:57:11 +00:00
|
|
|
<small>
|
2019-01-22 20:57:51 +00:00
|
|
|
<router-link :to="userProfileLink">
|
2018-12-13 16:57:11 +00:00
|
|
|
{{status.user.screen_name}}
|
|
|
|
</router-link>
|
|
|
|
</small>
|
2018-04-09 16:43:31 +00:00
|
|
|
<small class="muteWords">{{muteWordHits.join(', ')}}</small>
|
2018-12-18 18:26:14 +00:00
|
|
|
<a href="#" class="unmute" @click.prevent="toggleMute"><i class="button-icon icon-eye-off"></i></a>
|
2018-04-09 16:43:31 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
2019-03-27 20:00:54 +00:00
|
|
|
<div v-if="retweet && !noHeading && !inConversation" :class="[repeaterClass, { highlighted: repeaterStyle }]" :style="[repeaterStyle]" class="media container retweet-info">
|
2019-05-01 14:33:56 +00:00
|
|
|
<UserAvatar class="media-left" v-if="retweet" :betterShadow="betterShadow" :user="statusoid.user"/>
|
2018-04-10 16:25:24 +00:00
|
|
|
<div class="media-body faint">
|
2019-02-03 19:08:04 +00:00
|
|
|
<span class="user-name">
|
2019-02-06 20:17:06 +00:00
|
|
|
<router-link v-if="retweeterHtml" :to="retweeterProfileLink" v-html="retweeterHtml"/>
|
|
|
|
<router-link v-else :to="retweeterProfileLink">{{retweeter}}</router-link>
|
2019-02-03 19:08:04 +00:00
|
|
|
</span>
|
2018-12-03 17:12:43 +00:00
|
|
|
<i class='fa icon-retweet retweeted' :title="$t('tool_tip.repeat')"></i>
|
2018-04-09 16:43:31 +00:00
|
|
|
{{$t('timeline.repeated')}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2019-03-27 20:00:54 +00:00
|
|
|
<div :class="[userClass, { highlighted: userStyle, 'is-retweet': retweet && !inConversation }]" :style="[ userStyle ]" class="media status">
|
2018-04-09 16:43:31 +00:00
|
|
|
<div v-if="!noHeading" class="media-left">
|
2019-01-30 17:15:35 +00:00
|
|
|
<router-link :to="userProfileLink" @click.stop.prevent.capture.native="toggleUserExpanded">
|
2019-05-01 14:33:56 +00:00
|
|
|
<UserAvatar :compact="compact" :betterShadow="betterShadow" :user="status.user"/>
|
2019-01-30 17:15:35 +00:00
|
|
|
</router-link>
|
2018-04-09 16:43:31 +00:00
|
|
|
</div>
|
|
|
|
<div class="status-body">
|
2019-03-06 02:48:07 +00:00
|
|
|
<UserCard :user="status.user" :rounded="true" :bordered="true" class="status-usercard" v-if="userExpanded"/>
|
2019-03-02 16:35:38 +00:00
|
|
|
<div v-if="!noHeading" class="media-heading">
|
|
|
|
<div class="heading-name-row">
|
|
|
|
<div class="name-and-account-name">
|
2018-08-09 09:52:34 +00:00
|
|
|
<h4 class="user-name" v-if="status.user.name_html" v-html="status.user.name_html"></h4>
|
|
|
|
<h4 class="user-name" v-else>{{status.user.name}}</h4>
|
2019-03-02 16:35:38 +00:00
|
|
|
<router-link class="account-name" :to="userProfileLink">
|
|
|
|
{{status.user.screen_name}}
|
|
|
|
</router-link>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<span class="heading-right">
|
|
|
|
<router-link class="timeago faint-link" :to="{ name: 'conversation', params: { id: status.id } }">
|
|
|
|
<timeago :since="status.created_at" :auto-update="60"></timeago>
|
|
|
|
</router-link>
|
|
|
|
<div class="button-icon visibility-icon" v-if="status.visibility">
|
|
|
|
<i :class="visibilityIcon(status.visibility)" :title="status.visibility | capitalize"></i>
|
|
|
|
</div>
|
|
|
|
<a :href="status.external_url" target="_blank" v-if="!status.is_local && !isPreview" class="source_url" title="Source">
|
|
|
|
<i class="button-icon icon-link-ext-alt"></i>
|
|
|
|
</a>
|
|
|
|
<template v-if="expandable && !isPreview">
|
|
|
|
<a href="#" @click.prevent="toggleExpanded" title="Expand">
|
|
|
|
<i class="button-icon icon-plus-squared"></i>
|
2018-04-09 16:43:31 +00:00
|
|
|
</a>
|
2019-03-02 16:35:38 +00:00
|
|
|
</template>
|
|
|
|
<a href="#" @click.prevent="toggleMute" v-if="unmuted"><i class="button-icon icon-eye-off"></i></a>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="heading-reply-row">
|
|
|
|
<div v-if="isReply" class="reply-to-and-accountname">
|
|
|
|
<a class="reply-to"
|
|
|
|
href="#" @click.prevent="gotoOriginal(status.in_reply_to_status_id)"
|
|
|
|
:aria-label="$t('tool_tip.reply')"
|
|
|
|
@mouseenter.prevent.stop="replyEnter(status.in_reply_to_status_id, $event)"
|
|
|
|
@mouseleave.prevent.stop="replyLeave()"
|
|
|
|
>
|
|
|
|
<i class="button-icon icon-reply" v-if="!isPreview"></i>
|
|
|
|
<span class="faint-link reply-to-text">{{$t('status.reply_to')}}</span>
|
|
|
|
</a>
|
|
|
|
<router-link :to="replyProfileLink">
|
|
|
|
{{replyToName}}
|
|
|
|
</router-link>
|
2019-03-02 18:39:04 +00:00
|
|
|
<span class="faint replies-separator" v-if="replies && replies.length">
|
2019-03-02 16:35:38 +00:00
|
|
|
-
|
2018-04-09 16:43:31 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
2019-03-02 16:35:38 +00:00
|
|
|
<div class="replies" v-if="inConversation && !isPreview">
|
2019-03-02 18:39:04 +00:00
|
|
|
<span class="faint" v-if="replies && replies.length">{{$t('status.replies_list')}}</span>
|
|
|
|
<span class="reply-link faint" v-if="replies" v-for="reply in replies">
|
2019-03-02 16:35:38 +00:00
|
|
|
<a href="#" @click.prevent="gotoOriginal(reply.id)" @mouseenter="replyEnter(reply.id, $event)" @mouseout="replyLeave()">{{reply.name}}</a>
|
|
|
|
</span>
|
2018-08-13 11:46:28 +00:00
|
|
|
</div>
|
2018-04-09 16:43:31 +00:00
|
|
|
</div>
|
2019-03-02 16:35:38 +00:00
|
|
|
|
|
|
|
|
2018-04-09 16:43:31 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-if="showPreview" class="status-preview-container">
|
2019-05-01 14:33:56 +00:00
|
|
|
<status class="status-preview"
|
|
|
|
v-if="preview"
|
|
|
|
:isPreview="true"
|
|
|
|
:statusoid="preview"
|
|
|
|
:compact=true
|
|
|
|
/>
|
|
|
|
<div v-else class="status-preview status-preview-loading">
|
2018-03-31 18:14:36 +00:00
|
|
|
<i class="icon-spin4 animate-spin"></i>
|
2018-04-09 16:43:31 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2019-02-04 14:28:14 +00:00
|
|
|
<div class="status-content-wrapper" :class="{ 'tall-status': !showingLongSubject }" v-if="longSubject">
|
2019-04-01 16:58:23 +00:00
|
|
|
<a class="tall-status-hider" :class="{ 'tall-status-hider_focused': isFocused }" v-if="!showingLongSubject" href="#" @click.prevent="showingLongSubject=true">{{$t("general.show_more")}}</a>
|
2019-04-01 16:54:34 +00:00
|
|
|
<div @click.prevent="linkClicked" class="status-content media-body" v-html="contentHtml"></div>
|
2019-04-01 16:58:23 +00:00
|
|
|
<a v-if="showingLongSubject" href="#" class="status-unhider" @click.prevent="showingLongSubject=false">{{$t("general.show_less")}}</a>
|
2019-02-04 04:47:26 +00:00
|
|
|
</div>
|
|
|
|
<div :class="{'tall-status': hideTallStatus}" class="status-content-wrapper" v-else>
|
2019-04-01 16:58:23 +00:00
|
|
|
<a class="tall-status-hider" :class="{ 'tall-status-hider_focused': isFocused }" v-if="hideTallStatus" href="#" @click.prevent="toggleShowMore">{{$t("general.show_more")}}</a>
|
2019-04-01 16:54:34 +00:00
|
|
|
<div @click.prevent="linkClicked" class="status-content media-body" v-html="contentHtml" v-if="!hideSubjectStatus"></div>
|
2019-01-13 13:38:00 +00:00
|
|
|
<div @click.prevent="linkClicked" class="status-content media-body" v-html="status.summary_html" v-else></div>
|
2019-04-01 16:58:23 +00:00
|
|
|
<a v-if="hideSubjectStatus" href="#" class="cw-status-hider" @click.prevent="toggleShowMore">{{$t("general.show_more")}}</a>
|
|
|
|
<a v-if="showingMore" href="#" class="status-unhider" @click.prevent="toggleShowMore">{{$t("general.show_less")}}</a>
|
2018-04-09 16:43:31 +00:00
|
|
|
</div>
|
|
|
|
|
2019-02-04 14:28:14 +00:00
|
|
|
<div v-if="status.attachments && (!hideSubjectStatus || showingLongSubject)" class="attachments media-body">
|
2019-01-14 17:23:13 +00:00
|
|
|
<attachment
|
2019-01-26 15:45:03 +00:00
|
|
|
class="non-gallery"
|
|
|
|
v-for="attachment in nonGalleryAttachments"
|
2019-01-14 17:23:13 +00:00
|
|
|
:size="attachmentSize"
|
|
|
|
:nsfw="nsfwClickthrough"
|
|
|
|
:attachment="attachment"
|
2019-01-26 15:45:03 +00:00
|
|
|
:allowPlay="true"
|
|
|
|
:setMedia="setMedia()"
|
|
|
|
:key="attachment.id"
|
|
|
|
/>
|
|
|
|
<gallery
|
|
|
|
v-if="galleryAttachments.length > 0"
|
|
|
|
:nsfw="nsfwClickthrough"
|
|
|
|
:attachments="galleryAttachments"
|
|
|
|
:setMedia="setMedia()"
|
|
|
|
/>
|
2018-04-09 16:43:31 +00:00
|
|
|
</div>
|
|
|
|
|
2019-01-27 20:33:36 +00:00
|
|
|
<div v-if="status.card && !hideSubjectStatus && !noHeading" class="link-preview media-body">
|
|
|
|
<link-preview :card="status.card" :size="attachmentSize" :nsfw="nsfwClickthrough" />
|
2019-01-27 13:47:30 +00:00
|
|
|
</div>
|
|
|
|
|
2019-04-06 18:54:23 +00:00
|
|
|
<transition name="fade">
|
2019-05-07 19:54:49 +00:00
|
|
|
<div class="favs-repeated-users" v-if="isFocused && combinedFavsAndRepeatsUsers.length > 0">
|
2019-04-17 15:28:44 +00:00
|
|
|
<div class="stats">
|
|
|
|
<div class="stat-count" v-if="statusFromGlobalRepository.rebloggedBy && statusFromGlobalRepository.rebloggedBy.length > 0">
|
2019-04-22 18:37:27 +00:00
|
|
|
<a class="stat-title">{{ $t('status.repeats') }}</a>
|
2019-04-09 15:45:33 +00:00
|
|
|
<div class="stat-number">{{ statusFromGlobalRepository.rebloggedBy.length }}</div>
|
2019-04-17 15:28:44 +00:00
|
|
|
</div>
|
|
|
|
<div class="stat-count" v-if="statusFromGlobalRepository.favoritedBy && statusFromGlobalRepository.favoritedBy.length > 0">
|
2019-04-22 18:37:27 +00:00
|
|
|
<a class="stat-title">{{ $t('status.favorites') }}</a>
|
2019-04-09 15:45:33 +00:00
|
|
|
<div class="stat-number">{{ statusFromGlobalRepository.favoritedBy.length }}</div>
|
2019-04-17 15:28:44 +00:00
|
|
|
</div>
|
|
|
|
<div class="avatar-row">
|
2019-05-01 14:33:56 +00:00
|
|
|
<AvatarList :users="combinedFavsAndRepeatsUsers"></AvatarList>
|
2019-04-17 15:28:44 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-04-06 18:54:23 +00:00
|
|
|
</div>
|
|
|
|
</transition>
|
2019-04-02 16:02:40 +00:00
|
|
|
|
2019-03-02 16:35:38 +00:00
|
|
|
<div v-if="!noHeading && !isPreview" class='status-actions media-body'>
|
2018-04-09 16:43:31 +00:00
|
|
|
<div v-if="loggedIn">
|
2019-03-28 07:47:00 +00:00
|
|
|
<i class="button-icon icon-reply" v-on:click.prevent="toggleReplying" :title="$t('tool_tip.reply')" :class="{'icon-reply-active': replying}"></i>
|
|
|
|
<span v-if="status.replies_count > 0">{{status.replies_count}}</span>
|
2018-04-09 16:43:31 +00:00
|
|
|
</div>
|
2018-08-09 16:47:08 +00:00
|
|
|
<retweet-button :visibility='status.visibility' :loggedIn='loggedIn' :status='status'></retweet-button>
|
2018-04-09 16:43:31 +00:00
|
|
|
<favorite-button :loggedIn='loggedIn' :status='status'></favorite-button>
|
|
|
|
<delete-button :status='status'></delete-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="container" v-if="replying">
|
|
|
|
<div class="reply-left"/>
|
2018-09-25 12:16:26 +00:00
|
|
|
<post-status-form class="reply-body" :reply-to="status.id" :attentions="status.attentions" :repliedUser="status.user" :copy-message-scope="status.visibility" :subject="replySubject" v-on:posted="toggleReplying"/>
|
2018-04-09 16:43:31 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</template>
|
2016-10-28 13:19:42 +00:00
|
|
|
|
|
|
|
<script src="./status.js" ></script>
|
2016-10-28 23:38:41 +00:00
|
|
|
<style lang="scss">
|
2018-04-09 16:43:31 +00:00
|
|
|
@import '../../_variables.scss';
|
|
|
|
|
2019-03-02 16:35:38 +00:00
|
|
|
$status-margin: 0.75em;
|
|
|
|
|
2018-04-09 16:43:31 +00:00
|
|
|
.status-body {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-preview.status-el {
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
2018-04-09 21:28:24 +00:00
|
|
|
border-color: $fallback--border;
|
|
|
|
border-color: var(--border, $fallback--border);
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-preview-container {
|
|
|
|
position: relative;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-preview {
|
|
|
|
position: absolute;
|
|
|
|
max-width: 95%;
|
|
|
|
display: flex;
|
2018-04-07 16:30:27 +00:00
|
|
|
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);
|
2018-04-09 16:43:31 +00:00
|
|
|
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
|
2018-11-21 18:23:07 +00:00
|
|
|
box-shadow: var(--popupShadow);
|
2018-04-10 16:25:24 +00:00
|
|
|
margin-top: 0.25em;
|
|
|
|
margin-left: 0.5em;
|
2018-04-09 16:43:31 +00:00
|
|
|
z-index: 50;
|
2018-08-13 11:46:28 +00:00
|
|
|
|
2018-04-09 16:43:31 +00:00
|
|
|
.status {
|
|
|
|
flex: 1;
|
|
|
|
border: 0;
|
2018-04-10 16:25:24 +00:00
|
|
|
min-width: 15em;
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-preview-loading {
|
|
|
|
display: block;
|
2018-04-12 17:03:03 +00:00
|
|
|
min-width: 15em;
|
|
|
|
padding: 1em;
|
2018-04-09 16:43:31 +00:00
|
|
|
text-align: center;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
2018-08-13 11:46:28 +00:00
|
|
|
|
2018-04-12 17:03:03 +00:00
|
|
|
i {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
|
|
|
|
2019-03-02 16:35:38 +00:00
|
|
|
.media-left {
|
|
|
|
margin-right: $status-margin;
|
|
|
|
}
|
|
|
|
|
2018-04-09 16:43:31 +00:00
|
|
|
.status-el {
|
|
|
|
hyphens: auto;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
word-break: break-word;
|
|
|
|
border-left-width: 0px;
|
|
|
|
min-width: 0;
|
2018-04-07 16:30:27 +00:00
|
|
|
border-color: $fallback--border;
|
|
|
|
border-color: var(--border, $fallback--border);
|
|
|
|
|
2018-04-11 16:34:40 +00:00
|
|
|
border-left: 4px $fallback--cRed;
|
|
|
|
border-left: 4px var(--cRed, $fallback--cRed);
|
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
&_focused {
|
|
|
|
background-color: $fallback--lightBg;
|
|
|
|
background-color: var(--lightBg, $fallback--lightBg);
|
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
|
|
|
|
.timeline & {
|
|
|
|
border-bottom-width: 1px;
|
|
|
|
border-bottom-style: solid;
|
|
|
|
}
|
2017-05-31 22:02:04 +00:00
|
|
|
|
2018-04-09 16:43:31 +00:00
|
|
|
.media-body {
|
|
|
|
flex: 1;
|
|
|
|
padding: 0;
|
2018-04-10 19:12:59 +00:00
|
|
|
}
|
|
|
|
|
2019-03-06 02:48:07 +00:00
|
|
|
.status-usercard {
|
2019-03-02 16:35:38 +00:00
|
|
|
margin-bottom: $status-margin;
|
2018-04-15 04:46:06 +00:00
|
|
|
}
|
|
|
|
|
2019-03-02 16:35:38 +00:00
|
|
|
.user-name {
|
|
|
|
white-space: nowrap;
|
|
|
|
font-size: 14px;
|
|
|
|
overflow: hidden;
|
|
|
|
flex-shrink: 0;
|
|
|
|
max-width: 85%;
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
vertical-align: middle;
|
|
|
|
object-fit: contain
|
|
|
|
}
|
2017-11-13 14:33:54 +00:00
|
|
|
}
|
|
|
|
|
2019-03-02 16:35:38 +00:00
|
|
|
.media-heading {
|
2018-04-09 16:43:31 +00:00
|
|
|
padding: 0;
|
|
|
|
vertical-align: bottom;
|
|
|
|
flex-basis: 100%;
|
2019-03-02 16:35:38 +00:00
|
|
|
margin-bottom: 0.5em;
|
2018-04-09 16:43:31 +00:00
|
|
|
|
2019-01-27 20:33:36 +00:00
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
|
2018-04-09 16:43:31 +00:00
|
|
|
small {
|
|
|
|
font-weight: lighter;
|
|
|
|
}
|
2019-03-02 16:35:38 +00:00
|
|
|
|
|
|
|
.heading-name-row {
|
2018-04-09 16:43:31 +00:00
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
2019-03-02 16:35:38 +00:00
|
|
|
justify-content: space-between;
|
|
|
|
line-height: 18px;
|
|
|
|
|
|
|
|
.name-and-account-name {
|
|
|
|
display: flex;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
2018-08-13 11:46:28 +00:00
|
|
|
|
|
|
|
.user-name {
|
2019-03-02 16:35:38 +00:00
|
|
|
flex-shrink: 1;
|
|
|
|
margin-right: 0.4em;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2018-08-13 12:36:10 +00:00
|
|
|
|
2019-03-02 16:35:38 +00:00
|
|
|
.account-name {
|
|
|
|
min-width: 1.6em;
|
|
|
|
margin-right: 0.4em;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
flex: 1 1 0;
|
2018-08-13 11:46:28 +00:00
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2018-08-13 11:46:28 +00:00
|
|
|
|
2019-03-02 16:35:38 +00:00
|
|
|
.heading-right {
|
2018-04-14 11:24:05 +00:00
|
|
|
display: flex;
|
2019-03-02 16:35:38 +00:00
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeago {
|
|
|
|
margin-right: 0.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.heading-reply-row {
|
|
|
|
align-content: baseline;
|
2018-04-09 16:43:31 +00:00
|
|
|
font-size: 12px;
|
2019-03-02 16:35:38 +00:00
|
|
|
line-height: 18px;
|
2018-04-14 04:44:59 +00:00
|
|
|
max-width: 100%;
|
2019-03-02 16:35:38 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: stretch;
|
|
|
|
|
2018-04-14 04:44:59 +00:00
|
|
|
a {
|
|
|
|
max-width: 100%;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2019-03-02 16:35:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.reply-to-and-accountname {
|
|
|
|
display: flex;
|
|
|
|
height: 18px;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
overflow: hidden;
|
|
|
|
max-width: 100%;
|
|
|
|
.icon-reply {
|
|
|
|
transform: scaleX(-1);
|
2019-02-03 14:59:32 +00:00
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2019-03-02 16:35:38 +00:00
|
|
|
|
2018-04-14 11:24:05 +00:00
|
|
|
.reply-info {
|
|
|
|
display: flex;
|
|
|
|
}
|
2019-03-02 16:35:38 +00:00
|
|
|
|
|
|
|
.reply-to {
|
|
|
|
display: flex;
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2019-03-02 16:35:38 +00:00
|
|
|
|
|
|
|
.reply-to-text {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
margin: 0 0.4em 0 0.2em;
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
|
|
|
|
2019-03-02 16:35:38 +00:00
|
|
|
.replies-separator {
|
|
|
|
margin-left: 0.4em;
|
|
|
|
}
|
2018-08-13 11:46:28 +00:00
|
|
|
|
2019-03-02 16:35:38 +00:00
|
|
|
.replies {
|
|
|
|
line-height: 18px;
|
2018-04-09 16:43:31 +00:00
|
|
|
font-size: 12px;
|
2019-03-02 16:35:38 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
& > * {
|
|
|
|
margin-right: 0.4em;
|
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2018-08-13 11:46:28 +00:00
|
|
|
|
2019-03-02 16:35:38 +00:00
|
|
|
.reply-link {
|
|
|
|
height: 17px;
|
2018-08-15 10:02:39 +00:00
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tall-status {
|
|
|
|
position: relative;
|
|
|
|
height: 220px;
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tall-status-hider {
|
2019-01-27 20:33:36 +00:00
|
|
|
display: inline-block;
|
|
|
|
word-break: break-all;
|
2018-04-09 16:43:31 +00:00
|
|
|
position: absolute;
|
|
|
|
height: 70px;
|
|
|
|
margin-top: 150px;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 110px;
|
2018-04-09 21:28:24 +00:00
|
|
|
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), $fallback--bg 80%);
|
|
|
|
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--bg, $fallback--bg) 80%);
|
|
|
|
&_focused {
|
|
|
|
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), $fallback--lightBg 80%);
|
|
|
|
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--lightBg, $fallback--lightBg) 80%);
|
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
|
|
|
|
2018-08-20 01:59:06 +00:00
|
|
|
.status-unhider, .cw-status-hider {
|
2018-04-09 16:43:31 +00:00
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2019-01-27 20:33:36 +00:00
|
|
|
display: inline-block;
|
|
|
|
word-break: break-all;
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-content {
|
2018-11-25 19:06:49 +00:00
|
|
|
font-family: var(--postFont, sans-serif);
|
2019-03-02 16:35:38 +00:00
|
|
|
line-height: 1.4em;
|
2018-11-25 19:06:49 +00:00
|
|
|
|
2018-04-09 16:43:31 +00:00
|
|
|
img, video {
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 400px;
|
|
|
|
vertical-align: middle;
|
|
|
|
object-fit: contain;
|
2019-03-05 18:15:18 +00:00
|
|
|
|
|
|
|
&.emoji {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
margin: 0.2em 0 0.2em 2em;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2018-08-31 13:04:52 +00:00
|
|
|
pre {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2018-11-25 21:23:07 +00:00
|
|
|
code, samp, kbd, var, pre {
|
|
|
|
font-family: var(--postCodeFont, monospace);
|
2018-08-31 13:04:52 +00:00
|
|
|
}
|
|
|
|
|
2018-04-09 16:43:31 +00:00
|
|
|
p {
|
2019-03-02 16:35:38 +00:00
|
|
|
margin: 0 0 1em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p:last-child {
|
|
|
|
margin: 0 0 0 0;
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2018-08-31 12:11:27 +00:00
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 1.1em;
|
2018-08-31 13:04:52 +00:00
|
|
|
line-height: 1.2em;
|
2018-08-31 13:13:43 +00:00
|
|
|
margin: 1.4em 0;
|
2018-08-31 12:11:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2018-08-31 13:13:43 +00:00
|
|
|
font-size: 1.1em;
|
|
|
|
margin: 1.0em 0;
|
2018-08-31 12:11:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 1em;
|
2018-08-31 13:13:43 +00:00
|
|
|
margin: 1.2em 0;
|
2018-08-31 12:11:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
2018-08-31 13:13:43 +00:00
|
|
|
margin: 1.1em 0;
|
2018-08-31 12:11:27 +00:00
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2017-11-13 14:33:54 +00:00
|
|
|
|
2018-04-09 16:43:31 +00:00
|
|
|
.retweet-info {
|
2019-03-02 16:35:38 +00:00
|
|
|
padding: 0.4em $status-margin;
|
2018-06-18 08:36:58 +00:00
|
|
|
margin: 0;
|
2018-08-13 11:46:28 +00:00
|
|
|
|
2019-02-02 20:50:25 +00:00
|
|
|
.avatar.still-image {
|
2018-04-09 21:28:24 +00:00
|
|
|
border-radius: $fallback--avatarAltRadius;
|
|
|
|
border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius);
|
2018-04-09 16:43:31 +00:00
|
|
|
margin-left: 28px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2017-11-13 14:33:54 +00:00
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
|
|
|
|
.media-body {
|
|
|
|
font-size: 1em;
|
|
|
|
line-height: 22px;
|
2018-04-14 11:24:05 +00:00
|
|
|
|
|
|
|
display: flex;
|
|
|
|
align-content: center;
|
|
|
|
flex-wrap: wrap;
|
2018-08-13 11:46:28 +00:00
|
|
|
|
|
|
|
.user-name {
|
|
|
|
font-weight: bold;
|
2019-02-12 04:03:51 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2018-08-13 12:36:10 +00:00
|
|
|
|
2018-08-13 11:46:28 +00:00
|
|
|
img {
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
vertical-align: middle;
|
2018-08-13 12:36:10 +00:00
|
|
|
object-fit: contain
|
2018-08-13 11:46:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-14 11:24:05 +00:00
|
|
|
i {
|
|
|
|
padding: 0 0.2em;
|
|
|
|
}
|
2018-08-13 11:46:28 +00:00
|
|
|
|
2018-04-14 04:44:59 +00:00
|
|
|
a {
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2017-11-13 14:33:54 +00:00
|
|
|
}
|
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2017-11-13 14:33:54 +00:00
|
|
|
|
2019-04-08 18:06:18 +00:00
|
|
|
.status-fadein {
|
|
|
|
animation-duration: 0.4s;
|
|
|
|
animation-name: fadein;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadein {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-09 16:43:31 +00:00
|
|
|
.greentext {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-conversation {
|
|
|
|
border-left-style: solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-actions {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
2019-03-02 16:35:38 +00:00
|
|
|
margin-top: $status-margin;
|
2018-04-09 16:43:31 +00:00
|
|
|
|
|
|
|
div, favorite-button {
|
2019-03-02 16:35:38 +00:00
|
|
|
max-width: 4em;
|
2018-04-09 16:43:31 +00:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-reply:hover {
|
2018-04-07 16:30:27 +00:00
|
|
|
color: $fallback--cBlue;
|
|
|
|
color: var(--cBlue, $fallback--cBlue);
|
2019-03-28 07:47:00 +00:00
|
|
|
cursor: pointer;
|
2018-04-09 16:43:31 +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-09 16:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.status:hover .animated.avatar {
|
|
|
|
canvas {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status {
|
|
|
|
display: flex;
|
2019-03-02 16:35:38 +00:00
|
|
|
padding: $status-margin;
|
2018-06-18 08:36:58 +00:00
|
|
|
&.is-retweet {
|
2019-03-02 16:35:38 +00:00
|
|
|
padding-top: 0;
|
2018-06-18 08:36:58 +00:00
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-conversation:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.muted {
|
|
|
|
padding: 0.25em 0.5em;
|
|
|
|
button {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.muteWords {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a.unmute {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-left {
|
|
|
|
flex: 0;
|
|
|
|
min-width: 48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-body {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2018-04-11 16:34:40 +00:00
|
|
|
.timeline > {
|
|
|
|
.status-el:last-child {
|
2019-02-12 16:00:09 +00:00
|
|
|
border-radius: 0 0 $fallback--panelRadius $fallback--panelRadius;
|
2018-04-11 16:34:40 +00:00
|
|
|
border-radius: 0 0 var(--panelRadius, $fallback--panelRadius) var(--panelRadius, $fallback--panelRadius);
|
2018-11-25 14:42:41 +00:00
|
|
|
border-bottom: none;
|
2018-04-11 16:34:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-05 07:08:40 +00:00
|
|
|
.favs-repeated-users {
|
2019-04-17 15:28:44 +00:00
|
|
|
margin-top: $status-margin;
|
2019-04-05 07:08:40 +00:00
|
|
|
|
2019-04-05 17:35:05 +00:00
|
|
|
.stats {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
2019-04-05 18:20:50 +00:00
|
|
|
line-height: 1em;
|
2019-04-05 17:35:05 +00:00
|
|
|
|
|
|
|
.stat-count {
|
2019-04-22 18:07:29 +00:00
|
|
|
margin-right: $status-margin;
|
2019-04-05 17:35:05 +00:00
|
|
|
|
2019-04-05 18:20:50 +00:00
|
|
|
.stat-title {
|
2019-04-05 18:55:19 +00:00
|
|
|
color: var(--faint, $fallback--faint);
|
2019-04-05 18:20:50 +00:00
|
|
|
font-size: 12px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stat-number {
|
|
|
|
font-weight: bolder;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1em;
|
|
|
|
}
|
2019-04-05 17:35:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.avatar-row {
|
|
|
|
flex: 1;
|
|
|
|
overflow: hidden;
|
2019-04-05 18:20:50 +00:00
|
|
|
position: relative;
|
2019-04-22 18:07:29 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2019-04-05 18:20:50 +00:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 1px;
|
|
|
|
left: 0;
|
|
|
|
background-color: var(--faint, $fallback--faint);
|
|
|
|
}
|
2019-04-05 17:35:05 +00:00
|
|
|
}
|
2019-04-05 07:08:40 +00:00
|
|
|
}
|
2019-04-02 02:30:06 +00:00
|
|
|
}
|
|
|
|
|
2019-01-26 15:45:03 +00:00
|
|
|
@media all and (max-width: 800px) {
|
2018-04-09 16:43:31 +00:00
|
|
|
.status-el {
|
|
|
|
.retweet-info {
|
2019-02-02 20:50:25 +00:00
|
|
|
.avatar.still-image {
|
2018-04-09 16:43:31 +00:00
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.status {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2019-02-02 20:50:25 +00:00
|
|
|
.status .avatar.still-image {
|
2018-04-09 16:43:31 +00:00
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
2018-04-10 16:25:24 +00:00
|
|
|
|
2019-02-02 20:33:02 +00:00
|
|
|
&.avatar-compact {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
2018-04-10 16:25:24 +00:00
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2017-06-01 14:35:00 +00:00
|
|
|
|
2016-10-28 23:38:41 +00:00
|
|
|
</style>
|