mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-07-27 11:44:35 +02:00
* refactor(frontend): MkNote/MkNoteDetailedのロジックを統合 * refactor * fix * fix: 差分を解消 * fix lint * fix types --------- Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
748 lines
20 KiB
Vue
748 lines
20 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div
|
|
v-if="!muted && !hideByPlugin && !isDeleted"
|
|
ref="rootEl"
|
|
v-hotkey="keymap"
|
|
:class="$style.root"
|
|
tabindex="0"
|
|
>
|
|
<div v-if="appearNote.reply && appearNote.reply.replyId">
|
|
<div v-if="!conversationLoaded" style="padding: 16px">
|
|
<MkButton style="margin: 0 auto;" primary rounded @click="loadConversation">{{ i18n.ts.loadConversation }}</MkButton>
|
|
</div>
|
|
<MkNoteSub v-for="note in conversation" :key="note.id" :class="$style.replyToMore" :note="note"/>
|
|
</div>
|
|
<MkNoteSub v-if="appearNote.replyId" :note="appearNote?.reply ?? null" :class="$style.replyTo"/>
|
|
<div v-if="isRenote" :class="$style.renote">
|
|
<MkAvatar :class="$style.renoteAvatar" :user="note.user" link preview/>
|
|
<i class="ti ti-repeat" style="margin-right: 4px;"></i>
|
|
<span :class="$style.renoteText">
|
|
<I18n :src="i18n.ts.renotedBy" tag="span">
|
|
<template #user>
|
|
<MkA v-user-preview="note.userId" :class="$style.renoteName" :to="userPage(note.user)">
|
|
<MkUserName :user="note.user"/>
|
|
</MkA>
|
|
</template>
|
|
</I18n>
|
|
</span>
|
|
<div :class="$style.renoteInfo">
|
|
<button ref="renoteTime" class="_button" :class="$style.renoteTime" @mousedown.prevent="showRenoteMenu()">
|
|
<i v-if="isMyRenote" class="ti ti-dots" style="margin-right: 4px;"></i>
|
|
<MkTime :time="note.createdAt"/>
|
|
</button>
|
|
<span v-if="note.visibility !== 'public'" style="margin-left: 0.5em;" :title="i18n.ts._visibility[note.visibility]">
|
|
<i v-if="note.visibility === 'home'" class="ti ti-home"></i>
|
|
<i v-else-if="note.visibility === 'followers'" class="ti ti-lock"></i>
|
|
<i v-else-if="note.visibility === 'specified'" ref="specified" class="ti ti-mail"></i>
|
|
</span>
|
|
<span v-if="note.localOnly" style="margin-left: 0.5em;" :title="i18n.ts._visibility['disableFederation']"><i class="ti ti-rocket-off"></i></span>
|
|
</div>
|
|
</div>
|
|
<div v-if="isRenote && note.renote == null" :class="$style.deleted">
|
|
{{ i18n.ts.deletedNote }}
|
|
</div>
|
|
<template v-else>
|
|
<article :class="$style.note" @contextmenu.stop="onContextmenu">
|
|
<header :class="$style.noteHeader">
|
|
<MkAvatar :class="$style.noteHeaderAvatar" :user="appearNote.user" indicator link preview/>
|
|
<div :class="$style.noteHeaderBody">
|
|
<div>
|
|
<MkA v-user-preview="appearNote.user.id" :class="$style.noteHeaderName" :to="userPage(appearNote.user)">
|
|
<MkUserName :nowrap="false" :user="appearNote.user"/>
|
|
</MkA>
|
|
<span v-if="appearNote.user.isBot" :class="$style.isBot">bot</span>
|
|
<div :class="$style.noteHeaderInfo">
|
|
<span v-if="appearNote.visibility !== 'public'" style="margin-left: 0.5em;" :title="i18n.ts._visibility[appearNote.visibility]">
|
|
<i v-if="appearNote.visibility === 'home'" class="ti ti-home"></i>
|
|
<i v-else-if="appearNote.visibility === 'followers'" class="ti ti-lock"></i>
|
|
<i v-else-if="appearNote.visibility === 'specified'" ref="specified" class="ti ti-mail"></i>
|
|
</span>
|
|
<span v-if="appearNote.localOnly" style="margin-left: 0.5em;" :title="i18n.ts._visibility['disableFederation']"><i class="ti ti-rocket-off"></i></span>
|
|
</div>
|
|
</div>
|
|
<div :class="$style.noteHeaderUsernameAndBadgeRoles">
|
|
<div :class="$style.noteHeaderUsername">
|
|
<MkAcct :user="appearNote.user"/>
|
|
</div>
|
|
<div v-if="appearNote.user.badgeRoles" :class="$style.noteHeaderBadgeRoles">
|
|
<img v-for="(role, i) in appearNote.user.badgeRoles" :key="i" v-tooltip="role.name" :class="$style.noteHeaderBadgeRole" :src="role.iconUrl!"/>
|
|
</div>
|
|
</div>
|
|
<MkInstanceTicker v-if="showTicker" :host="appearNote.user.host" :instance="appearNote.user.instance"/>
|
|
</div>
|
|
</header>
|
|
<div :class="$style.noteContent">
|
|
<p v-if="appearNote.cw != null" :class="$style.cw">
|
|
<Mfm
|
|
v-if="appearNote.cw != ''"
|
|
:text="appearNote.cw"
|
|
:author="appearNote.user"
|
|
:nyaize="'respect'"
|
|
:enableEmojiMenu="true"
|
|
:enableEmojiMenuReaction="true"
|
|
/>
|
|
<MkCwButton v-model="showContent" :text="appearNote.text" :renote="appearNote.renote" :files="appearNote.files" :poll="appearNote.poll"/>
|
|
</p>
|
|
<div v-show="appearNote.cw == null || showContent">
|
|
<span v-if="appearNote.isHidden" style="opacity: 0.5">({{ i18n.ts.private }})</span>
|
|
<MkA v-if="appearNote.replyId" :class="$style.noteReplyTarget" :to="`/notes/${appearNote.replyId}`"><i class="ti ti-arrow-back-up"></i></MkA>
|
|
<Mfm
|
|
v-if="appearNote.text"
|
|
:parsedNodes="parsed"
|
|
:text="appearNote.text"
|
|
:author="appearNote.user"
|
|
:nyaize="'respect'"
|
|
:emojiUrls="appearNote.emojis"
|
|
:enableEmojiMenu="true"
|
|
:enableEmojiMenuReaction="true"
|
|
class="_selectable"
|
|
/>
|
|
<a v-if="appearNote.renote != null" :class="$style.rn">RN:</a>
|
|
<div v-if="translating || translation" :class="$style.translation">
|
|
<MkLoading v-if="translating" mini/>
|
|
<div v-else-if="translation">
|
|
<b>{{ i18n.tsx.translatedFrom({ x: translation.sourceLang }) }}: </b>
|
|
<Mfm :text="translation.text" :author="appearNote.user" :nyaize="'respect'" :emojiUrls="appearNote.emojis" class="_selectable"/>
|
|
</div>
|
|
</div>
|
|
<div v-if="appearNote.files && appearNote.files.length > 0">
|
|
<MkMediaList ref="galleryEl" :mediaList="appearNote.files"/>
|
|
</div>
|
|
<MkPoll
|
|
v-if="appearNote.poll"
|
|
:noteId="appearNote.id"
|
|
:multiple="appearNote.poll.multiple"
|
|
:expiresAt="appearNote.poll.expiresAt"
|
|
:choices="$appearNote.pollChoices"
|
|
:author="appearNote.user"
|
|
:emojiUrls="appearNote.emojis"
|
|
:class="$style.poll"
|
|
/>
|
|
<div v-if="isEnabledUrlPreview">
|
|
<MkUrlPreview v-for="url in urls" :key="url" :url="url" :compact="true" :detail="true" style="margin-top: 6px;"/>
|
|
</div>
|
|
<div v-if="appearNote.renote" :class="$style.quote"><MkNoteSimple :note="appearNote.renote" :class="$style.quoteNote"/></div>
|
|
</div>
|
|
<MkA v-if="appearNote.channel && !inChannel" :class="$style.channel" :to="`/channels/${appearNote.channel.id}`"><i class="ti ti-device-tv"></i> {{ appearNote.channel.name }}</MkA>
|
|
</div>
|
|
<footer>
|
|
<div :class="$style.noteFooterInfo">
|
|
<MkA :to="notePage(appearNote)">
|
|
<MkTime :time="appearNote.createdAt" mode="detail" colored/>
|
|
</MkA>
|
|
<span style="margin-left: 0.5em;">
|
|
<span style="border: 1px solid var(--MI_THEME-divider); margin-right: 0.5em;"></span>
|
|
<i v-if="appearNote.visibility === 'public'" class="ti ti-world"></i>
|
|
<i v-else-if="appearNote.visibility === 'home'" class="ti ti-home"></i>
|
|
<i v-else-if="appearNote.visibility === 'followers'" class="ti ti-lock"></i>
|
|
<i v-else-if="appearNote.visibility === 'specified'" ref="specified" class="ti ti-mail"></i>
|
|
<span style="margin-left: 0.3em;">{{ i18n.ts._visibility[appearNote.visibility] }}</span>
|
|
</span>
|
|
</div>
|
|
<MkReactionsViewer
|
|
v-if="appearNote.reactionAcceptance !== 'likeOnly'"
|
|
style="margin-top: 6px;"
|
|
:reactions="$appearNote.reactions"
|
|
:reactionEmojis="$appearNote.reactionEmojis"
|
|
:myReaction="$appearNote.myReaction"
|
|
:noteId="appearNote.id"
|
|
/>
|
|
<button class="_button" :class="$style.noteFooterButton" @click="reply()">
|
|
<i class="ti ti-arrow-back-up"></i>
|
|
<p v-if="appearNote.repliesCount > 0" :class="$style.noteFooterButtonCount">{{ number(appearNote.repliesCount) }}</p>
|
|
</button>
|
|
<button
|
|
v-if="canRenote"
|
|
ref="renoteButton"
|
|
class="_button"
|
|
:class="$style.noteFooterButton"
|
|
@mousedown.prevent="renote()"
|
|
>
|
|
<i class="ti ti-repeat"></i>
|
|
<p v-if="appearNote.renoteCount > 0" :class="$style.noteFooterButtonCount">{{ number(appearNote.renoteCount) }}</p>
|
|
</button>
|
|
<button v-else class="_button" :class="$style.noteFooterButton" disabled>
|
|
<i class="ti ti-ban"></i>
|
|
</button>
|
|
<button ref="reactButton" :class="$style.noteFooterButton" class="_button" @click="toggleReact()">
|
|
<i v-if="appearNote.reactionAcceptance === 'likeOnly' && $appearNote.myReaction != null" class="ti ti-heart-filled" style="color: var(--MI_THEME-love);"></i>
|
|
<i v-else-if="$appearNote.myReaction != null" class="ti ti-minus" style="color: var(--MI_THEME-accent);"></i>
|
|
<i v-else-if="appearNote.reactionAcceptance === 'likeOnly'" class="ti ti-heart"></i>
|
|
<i v-else class="ti ti-plus"></i>
|
|
<p v-if="(appearNote.reactionAcceptance === 'likeOnly' || prefer.s.showReactionsCount) && $appearNote.reactionCount > 0" :class="$style.noteFooterButtonCount">{{ number($appearNote.reactionCount) }}</p>
|
|
</button>
|
|
<button v-if="prefer.s.showClipButtonInNoteFooter" ref="clipButton" class="_button" :class="$style.noteFooterButton" @mousedown.prevent="clip()">
|
|
<i class="ti ti-paperclip"></i>
|
|
</button>
|
|
<button ref="menuButton" class="_button" :class="$style.noteFooterButton" @mousedown.prevent="showMenu()">
|
|
<i class="ti ti-dots"></i>
|
|
</button>
|
|
</footer>
|
|
</article>
|
|
<div :class="$style.tabs">
|
|
<button class="_button" :class="[$style.tab, { [$style.tabActive]: tab === 'replies' }]" @click="tab = 'replies'"><i class="ti ti-arrow-back-up"></i> {{ i18n.ts.replies }}</button>
|
|
<button class="_button" :class="[$style.tab, { [$style.tabActive]: tab === 'renotes' }]" @click="tab = 'renotes'"><i class="ti ti-repeat"></i> {{ i18n.ts.renotes }}</button>
|
|
<button class="_button" :class="[$style.tab, { [$style.tabActive]: tab === 'reactions' }]" @click="tab = 'reactions'"><i class="ti ti-icons"></i> {{ i18n.ts.reactions }}</button>
|
|
</div>
|
|
<div>
|
|
<div v-if="tab === 'replies'">
|
|
<div v-if="!repliesLoaded" style="padding: 16px">
|
|
<MkButton style="margin: 0 auto;" primary rounded @click="loadReplies">{{ i18n.ts.loadReplies }}</MkButton>
|
|
</div>
|
|
<MkNoteSub v-for="note in replies" :key="note.id" :note="note" :class="$style.reply" :detail="true"/>
|
|
</div>
|
|
<div v-else-if="tab === 'renotes'" :class="$style.tab_renotes">
|
|
<MkPagination :paginator="renotesPaginator" :forceDisableInfiniteScroll="true">
|
|
<template #default="{ items }">
|
|
<div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); grid-gap: 12px;">
|
|
<MkA v-for="item in items" :key="item.id" :to="userPage(item.user)">
|
|
<MkUserCardMini :user="item.user" :withChart="false"/>
|
|
</MkA>
|
|
</div>
|
|
</template>
|
|
</MkPagination>
|
|
</div>
|
|
<div v-else-if="tab === 'reactions'" :class="$style.tab_reactions">
|
|
<div :class="$style.reactionTabs">
|
|
<button v-for="reaction in Object.keys($appearNote.reactions)" :key="reaction" :class="[$style.reactionTab, { [$style.reactionTabActive]: reactionTabType === reaction }]" class="_button" @click="reactionTabType = reaction">
|
|
<MkReactionIcon :reaction="reaction"/>
|
|
<span style="margin-left: 4px;">{{ $appearNote.reactions[reaction] }}</span>
|
|
</button>
|
|
</div>
|
|
<MkPagination v-if="reactionTabType" :key="reactionTabType" :paginator="reactionsPaginator" :forceDisableInfiniteScroll="true">
|
|
<template #default="{ items }">
|
|
<div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); grid-gap: 12px;">
|
|
<MkA v-for="item in items" :key="item.id" :to="userPage(item.user)">
|
|
<MkUserCardMini :user="item.user" :withChart="false"/>
|
|
</MkA>
|
|
</div>
|
|
</template>
|
|
</MkPagination>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
<div v-else-if="muted" class="_panel" :class="$style.muted" @click="muted = false">
|
|
<I18n :src="i18n.ts.userSaysSomething" tag="small">
|
|
<template #name>
|
|
<MkA v-user-preview="appearNote.userId" :to="userPage(appearNote.user)">
|
|
<MkUserName :user="appearNote.user"/>
|
|
</MkA>
|
|
</template>
|
|
</I18n>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { inject, provide, ref, useTemplateRef, markRaw, computed } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import { useNote } from '@/composables/use-note.js';
|
|
import { prefer } from '@/preferences.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { userPage } from '@/filters/user.js';
|
|
import { notePage } from '@/filters/note.js';
|
|
import { isEnabledUrlPreview } from '@/utility/url-preview.js';
|
|
import { Paginator } from '@/utility/paginator.js';
|
|
import { misskeyApi } from '@/utility/misskey-api.js';
|
|
import number from '@/filters/number.js';
|
|
import { DI } from '@/di.js';
|
|
import type { Keymap } from '@/utility/hotkey.js';
|
|
|
|
// コンポーネント外部の依存関係
|
|
import MkNoteSub from '@/components/MkNoteSub.vue';
|
|
import MkNoteSimple from '@/components/MkNoteSimple.vue';
|
|
import MkReactionsViewer from '@/components/MkReactionsViewer.vue';
|
|
import MkMediaList from '@/components/MkMediaList.vue';
|
|
import MkCwButton from '@/components/MkCwButton.vue';
|
|
import MkPoll from '@/components/MkPoll.vue';
|
|
import MkUrlPreview from '@/components/MkUrlPreview.vue';
|
|
import MkInstanceTicker from '@/components/MkInstanceTicker.vue';
|
|
import MkUserCardMini from '@/components/MkUserCardMini.vue';
|
|
import MkPagination from '@/components/MkPagination.vue';
|
|
import MkReactionIcon from '@/components/MkReactionIcon.vue';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
const props = withDefaults(defineProps<{
|
|
note: Misskey.entities.Note;
|
|
initialTab?: 'replies' | 'renotes' | 'reactions';
|
|
}>(), {
|
|
initialTab: 'replies',
|
|
});
|
|
|
|
// 周辺コンテキストのインジェクト
|
|
const inChannel = inject(DI.inChannel, null);
|
|
|
|
// Template Refsの定義
|
|
const rootEl = useTemplateRef('rootEl');
|
|
const menuButton = useTemplateRef('menuButton');
|
|
const renoteButton = useTemplateRef('renoteButton');
|
|
const renoteTime = useTemplateRef('renoteTime');
|
|
const reactButton = useTemplateRef('reactButton');
|
|
const clipButton = useTemplateRef('clipButton');
|
|
const galleryEl = useTemplateRef('galleryEl');
|
|
|
|
// コンポーサブルの呼び出し
|
|
const {
|
|
note,
|
|
appearNote,
|
|
$appearNote,
|
|
hideByPlugin,
|
|
isRenote,
|
|
showContent,
|
|
isDeleted,
|
|
translating,
|
|
translation,
|
|
muted,
|
|
canRenote,
|
|
isMyRenote,
|
|
parsed,
|
|
urls,
|
|
showTicker,
|
|
|
|
// 関数群
|
|
renote,
|
|
reply,
|
|
react,
|
|
reactViaMfmEmoji,
|
|
toggleReact,
|
|
onContextmenu,
|
|
showMenu,
|
|
clip,
|
|
showRenoteMenu,
|
|
blur,
|
|
} = useNote(props, {
|
|
rootEl,
|
|
menuButton,
|
|
renoteButton,
|
|
renoteTime,
|
|
reactButton,
|
|
clipButton,
|
|
}, {
|
|
inChannel,
|
|
});
|
|
|
|
// provide
|
|
provide(DI.mfmEmojiReactCallback, reactViaMfmEmoji);
|
|
|
|
// MkNoteDetailed固有
|
|
const tab = ref(props.initialTab);
|
|
const reactionTabType = ref<string | null>(null);
|
|
|
|
const renotesPaginator = markRaw(new Paginator('notes/renotes', {
|
|
limit: 10,
|
|
params: {
|
|
noteId: appearNote.id,
|
|
},
|
|
}));
|
|
|
|
const reactionsPaginator = markRaw(new Paginator('notes/reactions', {
|
|
limit: 10,
|
|
computedParams: computed(() => ({
|
|
noteId: appearNote.id,
|
|
type: reactionTabType.value,
|
|
})),
|
|
}));
|
|
|
|
const replies = ref<Misskey.entities.Note[]>([]);
|
|
const repliesLoaded = ref(false);
|
|
|
|
function loadReplies() {
|
|
repliesLoaded.value = true;
|
|
misskeyApi('notes/children', {
|
|
noteId: appearNote.id,
|
|
limit: 30,
|
|
}).then(res => {
|
|
replies.value = res;
|
|
});
|
|
}
|
|
|
|
const conversation = ref<Misskey.entities.Note[]>([]);
|
|
const conversationLoaded = ref(false);
|
|
|
|
function loadConversation() {
|
|
conversationLoaded.value = true;
|
|
if (appearNote.replyId == null) return;
|
|
misskeyApi('notes/conversation', {
|
|
noteId: appearNote.replyId,
|
|
}).then(res => {
|
|
conversation.value = res.reverse();
|
|
});
|
|
}
|
|
|
|
// キーボードショートカットマップ
|
|
const keymap = {
|
|
'r': () => reply(),
|
|
'e|a|plus': () => react(),
|
|
'q': () => renote(),
|
|
'm': () => showMenu(),
|
|
'c': () => {
|
|
if (!prefer.s.showClipButtonInNoteFooter) return;
|
|
clip();
|
|
},
|
|
'o': () => {
|
|
galleryEl.value?.openGallery();
|
|
},
|
|
'v|enter': () => {
|
|
if (appearNote.cw != null) {
|
|
showContent.value = !showContent.value;
|
|
}
|
|
},
|
|
'esc': {
|
|
allowRepeat: true,
|
|
callback: () => blur(),
|
|
},
|
|
} as const satisfies Keymap;
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
position: relative;
|
|
transition: box-shadow 0.1s ease;
|
|
overflow: clip;
|
|
contain: content;
|
|
|
|
&:focus-visible {
|
|
outline: none;
|
|
|
|
&::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 2px var(--MI_THEME-focus);
|
|
border-radius: var(--MI-radius);
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
}
|
|
|
|
.replyTo {
|
|
opacity: 0.7;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.replyToMore {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.renote {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 16px 32px 8px 32px;
|
|
line-height: 28px;
|
|
white-space: pre;
|
|
color: var(--MI_THEME-renote);
|
|
}
|
|
|
|
.renoteAvatar {
|
|
flex-shrink: 0;
|
|
display: inline-block;
|
|
width: 28px;
|
|
height: 28px;
|
|
margin: 0 8px 0 0;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.renoteText {
|
|
overflow: hidden;
|
|
flex-shrink: 1;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.renoteName {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.renoteInfo {
|
|
margin-left: auto;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.renoteTime {
|
|
flex-shrink: 0;
|
|
color: inherit;
|
|
}
|
|
|
|
.renote + .note {
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.note {
|
|
padding: 32px;
|
|
font-size: 1.2em;
|
|
|
|
&:hover > .main > .footer > .button {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.noteHeader {
|
|
display: flex;
|
|
position: relative;
|
|
margin-bottom: 16px;
|
|
align-items: center;
|
|
}
|
|
|
|
.noteHeaderAvatar {
|
|
display: block;
|
|
flex-shrink: 0;
|
|
width: 58px;
|
|
height: 58px;
|
|
}
|
|
|
|
.noteHeaderBody {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
padding-left: 16px;
|
|
font-size: 0.95em;
|
|
}
|
|
|
|
.noteHeaderName {
|
|
font-weight: bold;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.isBot {
|
|
display: inline-block;
|
|
margin: 0 0.5em;
|
|
padding: 4px 6px;
|
|
font-size: 80%;
|
|
line-height: 1;
|
|
border: solid 0.5px var(--MI_THEME-divider);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.noteHeaderInfo {
|
|
float: right;
|
|
}
|
|
|
|
.noteHeaderUsernameAndBadgeRoles {
|
|
display: flex;
|
|
}
|
|
|
|
.noteHeaderUsername {
|
|
margin-bottom: 2px;
|
|
margin-right: 0.5em;
|
|
line-height: 1.3;
|
|
word-wrap: anywhere;
|
|
}
|
|
|
|
.noteHeaderBadgeRoles {
|
|
margin: 0 .5em 0 0;
|
|
}
|
|
|
|
.noteHeaderBadgeRole {
|
|
height: 1.3em;
|
|
vertical-align: -20%;
|
|
|
|
& + .noteHeaderBadgeRole {
|
|
margin-left: 0.2em;
|
|
}
|
|
}
|
|
|
|
.noteContent {
|
|
container-type: inline-size;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.cw {
|
|
cursor: default;
|
|
display: block;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.noteReplyTarget {
|
|
color: var(--MI_THEME-accent);
|
|
margin-right: 0.5em;
|
|
}
|
|
|
|
.rn {
|
|
margin-left: 4px;
|
|
font-style: oblique;
|
|
color: var(--MI_THEME-renote);
|
|
}
|
|
|
|
.translation {
|
|
border: solid 0.5px var(--MI_THEME-divider);
|
|
border-radius: var(--MI-radius);
|
|
padding: 12px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.poll {
|
|
font-size: 80%;
|
|
}
|
|
|
|
.quote {
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.quoteNote {
|
|
padding: 16px;
|
|
border: dashed 1px var(--MI_THEME-renote);
|
|
border-radius: 8px;
|
|
overflow: clip;
|
|
}
|
|
|
|
.channel {
|
|
opacity: 0.7;
|
|
font-size: 80%;
|
|
}
|
|
|
|
.noteFooterInfo {
|
|
margin: 16px 0;
|
|
opacity: 0.7;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.noteFooterButton {
|
|
margin: 0;
|
|
padding: 8px;
|
|
opacity: 0.7;
|
|
|
|
&:not(:last-child) {
|
|
margin-right: 28px;
|
|
}
|
|
|
|
&:hover {
|
|
color: var(--MI_THEME-fgHighlighted);
|
|
}
|
|
}
|
|
|
|
.noteFooterButtonCount {
|
|
display: inline;
|
|
margin: 0 0 0 8px;
|
|
opacity: 0.7;
|
|
|
|
&.reacted {
|
|
color: var(--MI_THEME-accent);
|
|
}
|
|
}
|
|
|
|
.reply:not(:first-child) {
|
|
border-top: solid 0.5px var(--MI_THEME-divider);
|
|
}
|
|
|
|
.tabs {
|
|
border-top: solid 0.5px var(--MI_THEME-divider);
|
|
border-bottom: solid 0.5px var(--MI_THEME-divider);
|
|
display: flex;
|
|
}
|
|
|
|
.tab {
|
|
flex: 1;
|
|
padding: 12px 8px;
|
|
border-top: solid 2px transparent;
|
|
border-bottom: solid 2px transparent;
|
|
}
|
|
|
|
.tabActive {
|
|
border-bottom: solid 2px var(--MI_THEME-accent);
|
|
}
|
|
|
|
.tab_renotes {
|
|
padding: 16px;
|
|
}
|
|
|
|
.tab_reactions {
|
|
padding: 16px;
|
|
}
|
|
|
|
.reactionTabs {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.reactionTab {
|
|
padding: 4px 6px;
|
|
border: solid 1px var(--MI_THEME-divider);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.reactionTabActive {
|
|
border-color: var(--MI_THEME-accent);
|
|
}
|
|
|
|
@container (max-width: 500px) {
|
|
.root {
|
|
font-size: 0.9em;
|
|
}
|
|
}
|
|
|
|
@container (max-width: 450px) {
|
|
.renote {
|
|
padding: 8px 16px 0 16px;
|
|
}
|
|
|
|
.note {
|
|
padding: 16px;
|
|
}
|
|
|
|
.noteHeaderAvatar {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
}
|
|
|
|
@container (max-width: 350px) {
|
|
.noteFooterButton {
|
|
&:not(:last-child) {
|
|
margin-right: 18px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@container (max-width: 300px) {
|
|
.root {
|
|
font-size: 0.825em;
|
|
}
|
|
|
|
.noteHeaderAvatar {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
|
|
.noteFooterButton {
|
|
&:not(:last-child) {
|
|
margin-right: 12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.muted {
|
|
padding: 8px;
|
|
text-align: center;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.deleted {
|
|
text-align: center;
|
|
padding: 32px;
|
|
margin: 6px 32px 32px;
|
|
--color: light-dark(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15));
|
|
background-size: auto auto;
|
|
background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, var(--color) 4px, var(--color) 14px);
|
|
border-radius: 8px;
|
|
}
|
|
</style>
|