2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
|
|
|
<div
|
2020-07-27 04:34:20 +00:00
|
|
|
v-if="!muted"
|
2020-07-26 23:46:21 +00:00
|
|
|
v-show="!isDeleted"
|
2022-01-14 01:25:51 +00:00
|
|
|
ref="el"
|
2020-01-29 19:37:25 +00:00
|
|
|
v-hotkey="keymap"
|
2020-08-09 06:51:02 +00:00
|
|
|
v-size="{ max: [500, 450, 350, 300] }"
|
2021-11-19 10:36:12 +00:00
|
|
|
class="tkcbzcuz"
|
|
|
|
:tabindex="!isDeleted ? '-1' : null"
|
|
|
|
:class="{ renote: isRenote }"
|
2020-01-29 19:37:25 +00:00
|
|
|
>
|
2022-01-14 01:25:51 +00:00
|
|
|
<MkNoteSub v-if="appearNote.reply" :note="appearNote.reply" class="reply-to"/>
|
|
|
|
<div v-if="pinned" class="info"><i class="fas fa-thumbtack"></i> {{ i18n.locale.pinnedNote }}</div>
|
|
|
|
<div v-if="appearNote._prId_" class="info"><i class="fas fa-bullhorn"></i> {{ i18n.locale.promotion }}<button class="_textButton hide" @click="readPromo()">{{ i18n.locale.hideThisNote }} <i class="fas fa-times"></i></button></div>
|
|
|
|
<div v-if="appearNote._featuredId_" class="info"><i class="fas fa-bolt"></i> {{ i18n.locale.featured }}</div>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-if="isRenote" class="renote">
|
2020-10-17 11:12:00 +00:00
|
|
|
<MkAvatar class="avatar" :user="note.user"/>
|
2021-04-20 14:22:59 +00:00
|
|
|
<i class="fas fa-retweet"></i>
|
2022-01-14 01:25:51 +00:00
|
|
|
<I18n :src="i18n.locale.renotedBy" tag="span">
|
2020-10-17 11:12:00 +00:00
|
|
|
<template #user>
|
2021-11-19 10:36:12 +00:00
|
|
|
<MkA v-user-preview="note.userId" class="name" :to="userPage(note.user)">
|
2020-10-17 11:12:00 +00:00
|
|
|
<MkUserName :user="note.user"/>
|
2020-10-24 16:21:41 +00:00
|
|
|
</MkA>
|
2020-10-17 11:12:00 +00:00
|
|
|
</template>
|
2020-12-26 01:01:32 +00:00
|
|
|
</I18n>
|
2020-01-29 19:37:25 +00:00
|
|
|
<div class="info">
|
2021-11-19 10:36:12 +00:00
|
|
|
<button ref="renoteTime" class="_button time" @click="showRenoteMenu()">
|
2021-04-20 14:22:59 +00:00
|
|
|
<i v-if="isMyRenote" class="fas fa-ellipsis-h dropdownIcon"></i>
|
2020-10-17 11:12:00 +00:00
|
|
|
<MkTime :time="note.createdAt"/>
|
2020-05-15 11:39:11 +00:00
|
|
|
</button>
|
2021-11-19 10:36:12 +00:00
|
|
|
<span v-if="note.visibility !== 'public'" class="visibility">
|
2021-04-20 14:22:59 +00:00
|
|
|
<i v-if="note.visibility === 'home'" class="fas fa-home"></i>
|
|
|
|
<i v-else-if="note.visibility === 'followers'" class="fas fa-unlock"></i>
|
|
|
|
<i v-else-if="note.visibility === 'specified'" class="fas fa-envelope"></i>
|
2020-01-29 19:37:25 +00:00
|
|
|
</span>
|
2021-11-19 10:36:12 +00:00
|
|
|
<span v-if="note.localOnly" class="localOnly"><i class="fas fa-biohazard"></i></span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-29 12:08:08 +00:00
|
|
|
<article class="article" @contextmenu.stop="onContextmenu">
|
2020-10-17 11:12:00 +00:00
|
|
|
<MkAvatar class="avatar" :user="appearNote.user"/>
|
2020-01-29 19:37:25 +00:00
|
|
|
<div class="main">
|
2020-10-17 11:12:00 +00:00
|
|
|
<XNoteHeader class="header" :note="appearNote" :mini="true"/>
|
2020-10-27 07:16:59 +00:00
|
|
|
<MkInstanceTicker v-if="showTicker" class="ticker" :instance="appearNote.user.instance"/>
|
2020-11-01 06:04:46 +00:00
|
|
|
<div class="body">
|
2020-01-29 19:37:25 +00:00
|
|
|
<p v-if="appearNote.cw != null" class="cw">
|
2020-12-19 01:55:52 +00:00
|
|
|
<Mfm v-if="appearNote.cw != ''" class="text" :text="appearNote.cw" :author="appearNote.user" :i="$i" :custom-emojis="appearNote.emojis"/>
|
2021-09-29 15:50:45 +00:00
|
|
|
<XCwButton v-model="showContent" :note="appearNote"/>
|
2020-01-29 19:37:25 +00:00
|
|
|
</p>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-show="appearNote.cw == null || showContent" class="content" :class="{ collapsed }">
|
2020-01-29 19:37:25 +00:00
|
|
|
<div class="text">
|
2022-01-14 01:25:51 +00:00
|
|
|
<span v-if="appearNote.isHidden" style="opacity: 0.5">({{ i18n.locale.private }})</span>
|
2021-11-19 10:36:12 +00:00
|
|
|
<MkA v-if="appearNote.replyId" class="reply" :to="`/notes/${appearNote.replyId}`"><i class="fas fa-reply"></i></MkA>
|
2020-12-19 01:55:52 +00:00
|
|
|
<Mfm v-if="appearNote.text" :text="appearNote.text" :author="appearNote.user" :i="$i" :custom-emojis="appearNote.emojis"/>
|
2021-11-19 10:36:12 +00:00
|
|
|
<a v-if="appearNote.renote != null" class="rp">RN:</a>
|
|
|
|
<div v-if="translating || translation" class="translation">
|
2021-08-15 11:26:44 +00:00
|
|
|
<MkLoading v-if="translating" mini/>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-else class="translated">
|
2021-11-19 10:03:25 +00:00
|
|
|
<b>{{ $t('translatedFrom', { x: translation.sourceLang }) }}: </b>
|
|
|
|
<Mfm :text="translation.text" :author="appearNote.user" :i="$i" :custom-emojis="appearNote.emojis"/>
|
2021-08-15 11:26:44 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-if="appearNote.files.length > 0" class="files">
|
2020-11-01 06:04:46 +00:00
|
|
|
<XMediaList :media-list="appearNote.files"/>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2021-11-19 10:36:12 +00:00
|
|
|
<XPoll v-if="appearNote.poll" ref="pollViewer" :note="appearNote" class="poll"/>
|
|
|
|
<MkUrlPreview v-for="url in urls" :key="url" :url="url" :compact="true" :detail="false" class="url-preview"/>
|
|
|
|
<div v-if="appearNote.renote" class="renote"><XNoteSimple :note="appearNote.renote"/></div>
|
2020-12-30 00:58:57 +00:00
|
|
|
<button v-if="collapsed" class="fade _button" @click="collapsed = false">
|
2022-01-14 01:25:51 +00:00
|
|
|
<span>{{ i18n.locale.showMore }}</span>
|
2020-12-30 00:58:57 +00:00
|
|
|
</button>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2021-04-20 14:22:59 +00:00
|
|
|
<MkA v-if="appearNote.channel && !inChannel" class="channel" :to="`/channels/${appearNote.channel.id}`"><i class="fas fa-satellite-dish"></i> {{ appearNote.channel.name }}</MkA>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2020-07-26 23:46:21 +00:00
|
|
|
<footer class="footer">
|
2021-11-19 10:36:12 +00:00
|
|
|
<XReactionsViewer ref="reactionsViewer" :note="appearNote"/>
|
|
|
|
<button class="button _button" @click="reply()">
|
2021-04-20 14:22:59 +00:00
|
|
|
<template v-if="appearNote.reply"><i class="fas fa-reply-all"></i></template>
|
|
|
|
<template v-else><i class="fas fa-reply"></i></template>
|
2021-11-19 10:36:12 +00:00
|
|
|
<p v-if="appearNote.repliesCount > 0" class="count">{{ appearNote.repliesCount }}</p>
|
2020-01-29 19:37:25 +00:00
|
|
|
</button>
|
2021-11-19 10:36:12 +00:00
|
|
|
<XRenoteButton ref="renoteButton" class="button" :note="appearNote" :count="appearNote.renoteCount"/>
|
|
|
|
<button v-if="appearNote.myReaction == null" ref="reactButton" class="button _button" @click="react()">
|
2021-04-20 14:22:59 +00:00
|
|
|
<i class="fas fa-plus"></i>
|
2020-01-29 19:37:25 +00:00
|
|
|
</button>
|
2021-11-19 10:36:12 +00:00
|
|
|
<button v-if="appearNote.myReaction != null" ref="reactButton" class="button _button reacted" @click="undoReact(appearNote)">
|
2021-04-20 14:22:59 +00:00
|
|
|
<i class="fas fa-minus"></i>
|
2020-01-29 19:37:25 +00:00
|
|
|
</button>
|
2021-11-19 10:36:12 +00:00
|
|
|
<button ref="menuButton" class="button _button" @click="menu()">
|
2021-04-20 14:22:59 +00:00
|
|
|
<i class="fas fa-ellipsis-h"></i>
|
2020-01-29 19:37:25 +00:00
|
|
|
</button>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</div>
|
2021-04-10 03:40:50 +00:00
|
|
|
<div v-else class="muted" @click="muted = false">
|
2022-01-14 01:25:51 +00:00
|
|
|
<I18n :src="i18n.locale.userSaysSomething" tag="small">
|
2020-10-17 11:12:00 +00:00
|
|
|
<template #name>
|
2021-11-19 10:36:12 +00:00
|
|
|
<MkA v-user-preview="appearNote.userId" class="name" :to="userPage(appearNote.user)">
|
2020-10-17 11:12:00 +00:00
|
|
|
<MkUserName :user="appearNote.user"/>
|
2020-10-24 16:21:41 +00:00
|
|
|
</MkA>
|
2020-10-17 11:12:00 +00:00
|
|
|
</template>
|
2020-12-26 01:01:32 +00:00
|
|
|
</I18n>
|
2020-07-27 04:34:20 +00:00
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed, inject, onMounted, onUnmounted, reactive, ref } from 'vue';
|
2021-04-02 01:36:11 +00:00
|
|
|
import * as mfm from 'mfm-js';
|
2022-01-14 01:25:51 +00:00
|
|
|
import * as misskey from 'misskey-js';
|
|
|
|
import MkNoteSub from './MkNoteSub.vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
import XNoteHeader from './note-header.vue';
|
2021-10-15 16:28:34 +00:00
|
|
|
import XNoteSimple from './note-simple.vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
import XReactionsViewer from './reactions-viewer.vue';
|
|
|
|
import XMediaList from './media-list.vue';
|
|
|
|
import XCwButton from './cw-button.vue';
|
|
|
|
import XPoll from './poll.vue';
|
2021-11-12 14:15:14 +00:00
|
|
|
import XRenoteButton from './renote-button.vue';
|
2022-01-14 01:25:51 +00:00
|
|
|
import MkUrlPreview from '@/components/url-preview.vue';
|
|
|
|
import MkInstanceTicker from '@/components/instance-ticker.vue';
|
2021-11-12 14:53:10 +00:00
|
|
|
import { pleaseLogin } from '@/scripts/please-login';
|
|
|
|
import { focusPrev, focusNext } from '@/scripts/focus';
|
|
|
|
import { checkWordMute } from '@/scripts/check-word-mute';
|
|
|
|
import { userPage } from '@/filters/user';
|
|
|
|
import * as os from '@/os';
|
2022-01-14 01:25:51 +00:00
|
|
|
import { defaultStore, noteViewInterruptors } from '@/store';
|
2021-11-12 14:53:10 +00:00
|
|
|
import { reactionPicker } from '@/scripts/reaction-picker';
|
|
|
|
import { extractUrlFromMfm } from '@/scripts/extract-url-from-mfm';
|
2022-01-14 01:25:51 +00:00
|
|
|
import { $i } from '@/account';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { getNoteMenu } from '@/scripts/get-note-menu';
|
|
|
|
import { useNoteCapture } from '@/scripts/use-note-capture';
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
note: misskey.entities.Note;
|
|
|
|
pinned?: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const inChannel = inject('inChannel', null);
|
|
|
|
|
|
|
|
const isRenote = (
|
|
|
|
props.note.renote != null &&
|
|
|
|
props.note.text == null &&
|
|
|
|
props.note.fileIds.length === 0 &&
|
|
|
|
props.note.poll == null
|
|
|
|
);
|
|
|
|
|
|
|
|
const el = ref<HTMLElement>();
|
|
|
|
const menuButton = ref<HTMLElement>();
|
|
|
|
const renoteButton = ref<InstanceType<typeof XRenoteButton>>();
|
|
|
|
const renoteTime = ref<HTMLElement>();
|
|
|
|
const reactButton = ref<HTMLElement>();
|
|
|
|
let appearNote = $ref(isRenote ? props.note.renote as misskey.entities.Note : props.note);
|
|
|
|
const isMyRenote = $i && ($i.id === props.note.userId);
|
|
|
|
const showContent = ref(false);
|
|
|
|
const collapsed = ref(appearNote.cw == null && appearNote.text != null && (
|
|
|
|
(appearNote.text.split('\n').length > 9) ||
|
|
|
|
(appearNote.text.length > 500)
|
|
|
|
));
|
|
|
|
const isDeleted = ref(false);
|
|
|
|
const muted = ref(checkWordMute(appearNote, $i, defaultStore.state.mutedWords));
|
|
|
|
const translation = ref(null);
|
|
|
|
const translating = ref(false);
|
|
|
|
const urls = appearNote.text ? extractUrlFromMfm(mfm.parse(appearNote.text)) : null;
|
|
|
|
const showTicker = (defaultStore.state.instanceTicker === 'always') || (defaultStore.state.instanceTicker === 'remote' && appearNote.user.instance);
|
|
|
|
|
|
|
|
const keymap = {
|
|
|
|
'r': () => reply(true),
|
|
|
|
'e|a|plus': () => react(true),
|
|
|
|
'q': () => renoteButton.value.renote(true),
|
|
|
|
'up|k|shift+tab': focusBefore,
|
|
|
|
'down|j|tab': focusAfter,
|
|
|
|
'esc': blur,
|
|
|
|
'm|o': () => menu(true),
|
|
|
|
's': () => showContent.value != showContent.value,
|
|
|
|
};
|
|
|
|
|
|
|
|
useNoteCapture({
|
|
|
|
appearNote: $$(appearNote),
|
|
|
|
rootEl: el,
|
|
|
|
});
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
function reply(viaKeyboard = false): void {
|
|
|
|
pleaseLogin();
|
|
|
|
os.post({
|
|
|
|
reply: appearNote,
|
|
|
|
animation: !viaKeyboard,
|
|
|
|
}, () => {
|
|
|
|
focus();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function react(viaKeyboard = false): void {
|
|
|
|
pleaseLogin();
|
|
|
|
blur();
|
|
|
|
reactionPicker.show(reactButton.value, reaction => {
|
|
|
|
os.api('notes/reactions/create', {
|
|
|
|
noteId: appearNote.id,
|
|
|
|
reaction: reaction
|
|
|
|
});
|
|
|
|
}, () => {
|
|
|
|
focus();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function undoReact(note): void {
|
|
|
|
const oldReaction = note.myReaction;
|
|
|
|
if (!oldReaction) return;
|
|
|
|
os.api('notes/reactions/delete', {
|
|
|
|
noteId: note.id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-01-18 12:35:57 +00:00
|
|
|
function onContextmenu(ev: MouseEvent): void {
|
2022-01-14 01:25:51 +00:00
|
|
|
const isLink = (el: HTMLElement) => {
|
|
|
|
if (el.tagName === 'A') return true;
|
|
|
|
if (el.parentElement) {
|
|
|
|
return isLink(el.parentElement);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2022-01-14 01:25:51 +00:00
|
|
|
};
|
2022-01-18 12:35:57 +00:00
|
|
|
if (isLink(ev.target)) return;
|
2022-01-14 01:25:51 +00:00
|
|
|
if (window.getSelection().toString() !== '') return;
|
|
|
|
|
|
|
|
if (defaultStore.state.useReactionPickerForContextMenu) {
|
2022-01-18 12:35:57 +00:00
|
|
|
ev.preventDefault();
|
2022-01-14 01:25:51 +00:00
|
|
|
react();
|
|
|
|
} else {
|
2022-01-18 12:35:57 +00:00
|
|
|
os.contextMenu(getNoteMenu({ note: props.note, translating, translation, menuButton }), ev).then(focus);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2022-01-14 01:25:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function menu(viaKeyboard = false): void {
|
|
|
|
os.popupMenu(getNoteMenu({ note: props.note, translating, translation, menuButton }), menuButton.value, {
|
|
|
|
viaKeyboard
|
|
|
|
}).then(focus);
|
|
|
|
}
|
|
|
|
|
|
|
|
function showRenoteMenu(viaKeyboard = false): void {
|
|
|
|
if (!isMyRenote) return;
|
|
|
|
os.popupMenu([{
|
|
|
|
text: i18n.locale.unrenote,
|
|
|
|
icon: 'fas fa-trash-alt',
|
|
|
|
danger: true,
|
|
|
|
action: () => {
|
|
|
|
os.api('notes/delete', {
|
|
|
|
noteId: props.note.id
|
|
|
|
});
|
|
|
|
isDeleted.value = true;
|
|
|
|
}
|
|
|
|
}], renoteTime.value, {
|
|
|
|
viaKeyboard: viaKeyboard
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function focus() {
|
|
|
|
el.value.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
function blur() {
|
|
|
|
el.value.blur();
|
|
|
|
}
|
|
|
|
|
|
|
|
function focusBefore() {
|
|
|
|
focusPrev(el.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
function focusAfter() {
|
|
|
|
focusNext(el.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
function readPromo() {
|
|
|
|
os.api('promo/read', {
|
|
|
|
noteId: appearNote.id
|
|
|
|
});
|
|
|
|
isDeleted.value = true;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-02-15 08:17:19 +00:00
|
|
|
.tkcbzcuz {
|
2020-01-29 19:37:25 +00:00
|
|
|
position: relative;
|
|
|
|
transition: box-shadow 0.1s ease;
|
2021-11-28 11:07:37 +00:00
|
|
|
font-size: 1.05em;
|
2021-04-10 03:40:50 +00:00
|
|
|
overflow: clip;
|
2020-10-17 11:12:00 +00:00
|
|
|
contain: content;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-12-26 13:56:01 +00:00
|
|
|
// これらの指定はパフォーマンス向上には有効だが、ノートの高さは一定でないため、
|
|
|
|
// 下の方までスクロールすると上のノートの高さがここで決め打ちされたものに変化し、表示しているノートの位置が変わってしまう
|
|
|
|
// ノートがマウントされたときに自身の高さを取得し contain-intrinsic-size を設定しなおせばほぼ解決できそうだが、
|
|
|
|
// 今度はその処理自体がパフォーマンス低下の原因にならないか懸念される。また、被リアクションでも高さは変化するため、やはり多少のズレは生じる
|
|
|
|
// 一度レンダリングされた要素はブラウザがよしなにサイズを覚えておいてくれるような実装になるまで待った方が良さそう(なるのか?)
|
|
|
|
//content-visibility: auto;
|
|
|
|
//contain-intrinsic-size: 0 128px;
|
|
|
|
|
2021-10-02 17:46:58 +00:00
|
|
|
&:focus-visible {
|
2020-01-29 19:37:25 +00:00
|
|
|
outline: none;
|
2020-10-17 11:12:00 +00:00
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
pointer-events: none;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: auto;
|
|
|
|
width: calc(100% - 8px);
|
|
|
|
height: calc(100% - 8px);
|
|
|
|
border: dashed 1px var(--focus);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover > .article > .main > .footer > .button {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2020-02-18 09:14:38 +00:00
|
|
|
> .info {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-01-29 19:37:25 +00:00
|
|
|
padding: 16px 32px 8px 32px;
|
|
|
|
line-height: 24px;
|
|
|
|
font-size: 90%;
|
|
|
|
white-space: pre;
|
|
|
|
color: #d28a3f;
|
|
|
|
|
2021-04-20 14:22:59 +00:00
|
|
|
> i {
|
2020-01-29 19:37:25 +00:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2020-02-18 09:14:38 +00:00
|
|
|
|
|
|
|
> .hide {
|
|
|
|
margin-left: auto;
|
|
|
|
color: inherit;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
2020-02-18 09:14:38 +00:00
|
|
|
> .info + .article {
|
2020-01-29 19:37:25 +00:00
|
|
|
padding-top: 8px;
|
|
|
|
}
|
|
|
|
|
2020-03-20 10:19:28 +00:00
|
|
|
> .reply-to {
|
|
|
|
opacity: 0.7;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> .renote {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 16px 32px 8px 32px;
|
|
|
|
line-height: 28px;
|
|
|
|
white-space: pre;
|
|
|
|
color: var(--renote);
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
margin: 0 8px 0 0;
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
|
2021-04-20 14:22:59 +00:00
|
|
|
> i {
|
2020-01-29 19:37:25 +00:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> span {
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-01-29 19:37:25 +00:00
|
|
|
flex-shrink: 1;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .info {
|
|
|
|
margin-left: auto;
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
2020-02-06 00:09:24 +00:00
|
|
|
> .time {
|
2020-01-29 19:37:25 +00:00
|
|
|
flex-shrink: 0;
|
2020-02-06 00:09:24 +00:00
|
|
|
color: inherit;
|
2020-05-15 11:39:11 +00:00
|
|
|
|
|
|
|
> .dropdownIcon {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .visibility {
|
|
|
|
margin-left: 8px;
|
2020-05-16 13:06:39 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-05-16 13:06:39 +00:00
|
|
|
> .localOnly {
|
|
|
|
margin-left: 8px;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .renote + .article {
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .article {
|
|
|
|
display: flex;
|
|
|
|
padding: 28px 32px 18px;
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: block;
|
|
|
|
margin: 0 14px 8px 0;
|
|
|
|
width: 58px;
|
|
|
|
height: 58px;
|
2021-04-10 03:40:50 +00:00
|
|
|
position: sticky;
|
|
|
|
top: calc(22px + var(--stickyTop, 0px));
|
|
|
|
left: 0;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .main {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
> .cw {
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
2020-12-30 00:58:57 +00:00
|
|
|
&.collapsed {
|
|
|
|
position: relative;
|
|
|
|
max-height: 9em;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-12-30 00:58:57 +00:00
|
|
|
|
|
|
|
> .fade {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
|
|
|
background: linear-gradient(0deg, var(--panel), var(--X15));
|
|
|
|
|
|
|
|
> span {
|
|
|
|
display: inline-block;
|
|
|
|
background: var(--panel);
|
|
|
|
padding: 6px 10px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
border-radius: 999px;
|
|
|
|
box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> span {
|
|
|
|
background: var(--panelHighlight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> .text {
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
|
|
|
> .reply {
|
|
|
|
color: var(--accent);
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .rp {
|
|
|
|
margin-left: 4px;
|
|
|
|
font-style: oblique;
|
|
|
|
color: var(--renote);
|
|
|
|
}
|
2021-08-15 11:26:44 +00:00
|
|
|
|
|
|
|
> .translation {
|
|
|
|
border: solid 0.5px var(--divider);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
padding: 12px;
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .url-preview {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
2020-05-10 08:06:20 +00:00
|
|
|
> .poll {
|
2020-01-29 19:37:25 +00:00
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .renote {
|
|
|
|
padding: 8px 0;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
padding: 16px;
|
|
|
|
border: dashed 1px var(--renote);
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-18 13:44:21 +00:00
|
|
|
|
|
|
|
> .channel {
|
|
|
|
opacity: 0.7;
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .footer {
|
|
|
|
> .button {
|
|
|
|
margin: 0;
|
|
|
|
padding: 8px;
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2020-02-14 16:18:48 +00:00
|
|
|
color: var(--fgHighlighted);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .count {
|
|
|
|
display: inline;
|
|
|
|
margin: 0 0 0 8px;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.reacted {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-21 03:32:40 +00:00
|
|
|
|
|
|
|
> .reply {
|
2021-04-10 03:40:50 +00:00
|
|
|
border-top: solid 0.5px var(--divider);
|
2020-03-21 03:32:40 +00:00
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
|
|
|
&.max-width_500px {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.max-width_450px {
|
|
|
|
> .renote {
|
|
|
|
padding: 8px 16px 0 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .info {
|
|
|
|
padding: 8px 16px 0 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .article {
|
|
|
|
padding: 14px 16px 9px;
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
margin: 0 10px 8px 0;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
2021-04-10 03:40:50 +00:00
|
|
|
top: calc(14px + var(--stickyTop, 0px));
|
2020-07-11 01:13:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.max-width_350px {
|
|
|
|
> .article {
|
|
|
|
> .main {
|
|
|
|
> .footer {
|
|
|
|
> .button {
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.max-width_300px {
|
|
|
|
font-size: 0.825em;
|
|
|
|
|
|
|
|
> .article {
|
|
|
|
> .avatar {
|
|
|
|
width: 44px;
|
|
|
|
height: 44px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .main {
|
|
|
|
> .footer {
|
|
|
|
> .button {
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2020-07-27 04:34:20 +00:00
|
|
|
|
|
|
|
.muted {
|
|
|
|
padding: 8px;
|
|
|
|
text-align: center;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|