2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-11-02 11:59:18 +01:00
|
|
|
<div :class="$style.root">
|
2023-02-11 01:41:54 +01:00
|
|
|
<div :class="$style.head">
|
2023-01-16 06:18:11 +01:00
|
|
|
<MkAvatar v-if="notification.type === 'pollEnded'" :class="$style.icon" :user="notification.note.user" link preview/>
|
2023-09-21 11:48:15 +02:00
|
|
|
<MkAvatar v-else-if="notification.type === 'note'" :class="$style.icon" :user="notification.note.user" link preview/>
|
2023-01-21 05:14:55 +01:00
|
|
|
<MkAvatar v-else-if="notification.type === 'achievementEarned'" :class="$style.icon" :user="$i" link preview/>
|
2023-11-02 07:57:55 +01:00
|
|
|
<div v-else-if="notification.type === 'reaction:grouped'" :class="[$style.icon, $style.icon_reactionGroup]"><i class="ti ti-plus" style="line-height: 1;"></i></div>
|
|
|
|
<div v-else-if="notification.type === 'renote:grouped'" :class="[$style.icon, $style.icon_renoteGroup]"><i class="ti ti-repeat" style="line-height: 1;"></i></div>
|
2023-09-11 07:31:50 +02:00
|
|
|
<img v-else-if="notification.type === 'test'" :class="$style.icon" :src="infoImageUrl"/>
|
2023-01-16 06:18:11 +01:00
|
|
|
<MkAvatar v-else-if="notification.user" :class="$style.icon" :user="notification.user" link preview/>
|
2023-11-02 07:57:55 +01:00
|
|
|
<img v-else-if="notification.icon" :class="[$style.icon, $style.icon_app]" :src="notification.icon" alt=""/>
|
2023-06-01 10:19:46 +02:00
|
|
|
<div
|
|
|
|
:class="[$style.subIcon, {
|
|
|
|
[$style.t_follow]: notification.type === 'follow',
|
|
|
|
[$style.t_followRequestAccepted]: notification.type === 'followRequestAccepted',
|
|
|
|
[$style.t_receiveFollowRequest]: notification.type === 'receiveFollowRequest',
|
|
|
|
[$style.t_renote]: notification.type === 'renote',
|
|
|
|
[$style.t_reply]: notification.type === 'reply',
|
|
|
|
[$style.t_mention]: notification.type === 'mention',
|
|
|
|
[$style.t_quote]: notification.type === 'quote',
|
|
|
|
[$style.t_pollEnded]: notification.type === 'pollEnded',
|
|
|
|
[$style.t_achievementEarned]: notification.type === 'achievementEarned',
|
|
|
|
}]"
|
|
|
|
>
|
2023-09-30 21:53:52 +02:00
|
|
|
<i v-if="notification.type === 'follow'" class="ph-plus ph-bold ph-lg"></i>
|
|
|
|
<i v-else-if="notification.type === 'receiveFollowRequest'" class="ph-clock ph-bold ph-lg"></i>
|
|
|
|
<i v-else-if="notification.type === 'followRequestAccepted'" class="ph-check ph-bold ph-lg"></i>
|
2023-10-14 02:46:36 +02:00
|
|
|
<i v-else-if="notification.type === 'renote'" class="ph-rocket-launch ph-bold ph-lg"></i>
|
2023-11-03 23:20:53 +01:00
|
|
|
<i v-else-if="notification.type === 'reply'" class="ph-arrow-u-up-left ph-bold ph-lg"></i>
|
2023-09-30 21:53:52 +02:00
|
|
|
<i v-else-if="notification.type === 'mention'" class="ph-at ph-bold ph-lg"></i>
|
|
|
|
<i v-else-if="notification.type === 'quote'" class="ph-quotes ph-bold ph-lg"></i>
|
2023-11-03 23:20:53 +01:00
|
|
|
<i v-else-if="notification.type === 'pollEnded'" class="ph-chart-bar-horizontal ph-bold ph-lg"></i>
|
2023-09-30 21:53:52 +02:00
|
|
|
<i v-else-if="notification.type === 'achievementEarned'" class="ph-trophy ph-bold ph-lg"></i>
|
2021-10-22 19:44:52 +02:00
|
|
|
<!-- notification.reaction が null になることはまずないが、ここでoptional chaining使うと一部ブラウザで刺さるので念の為 -->
|
2023-01-08 06:22:04 +01:00
|
|
|
<MkReactionIcon
|
2022-06-05 05:26:36 +02:00
|
|
|
v-else-if="notification.type === 'reaction'"
|
2023-11-02 11:59:18 +01:00
|
|
|
:withTooltip="true"
|
2021-11-07 19:38:48 +01:00
|
|
|
:reaction="notification.reaction ? notification.reaction.replace(/^:(\w+):$/, ':$1@.:') : notification.reaction"
|
2023-05-19 06:58:09 +02:00
|
|
|
:noStyle="true"
|
2023-01-10 06:16:59 +01:00
|
|
|
style="width: 100%; height: 100%;"
|
2021-11-07 19:38:48 +01:00
|
|
|
/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-10 06:16:59 +01:00
|
|
|
<div :class="$style.tail">
|
|
|
|
<header :class="$style.header">
|
2022-03-06 08:06:27 +01:00
|
|
|
<span v-if="notification.type === 'pollEnded'">{{ i18n.ts._notification.pollEnded }}</span>
|
2023-09-24 00:54:58 +02:00
|
|
|
<span v-else-if="notification.type === 'note'">{{ i18n.ts._notification.newNote }}: <MkUserName :user="notification.note.user"/></span>
|
2023-01-21 05:14:55 +01:00
|
|
|
<span v-else-if="notification.type === 'achievementEarned'">{{ i18n.ts._notification.achievementEarned }}</span>
|
2023-09-11 07:31:50 +02:00
|
|
|
<span v-else-if="notification.type === 'test'">{{ i18n.ts._notification.testNotification }}</span>
|
2023-02-08 12:07:19 +01:00
|
|
|
<MkA v-else-if="notification.user" v-user-preview="notification.user.id" :class="$style.headerName" :to="userPage(notification.user)"><MkUserName :user="notification.user"/></MkA>
|
2023-11-02 07:57:55 +01:00
|
|
|
<span v-else-if="notification.type === 'reaction:grouped'">{{ i18n.t('_notification.reactedBySomeUsers', { n: notification.reactions.length }) }}</span>
|
|
|
|
<span v-else-if="notification.type === 'renote:grouped'">{{ i18n.t('_notification.renotedBySomeUsers', { n: notification.users.length }) }}</span>
|
2020-03-28 10:07:41 +01:00
|
|
|
<span v-else>{{ notification.header }}</span>
|
2023-01-10 06:16:59 +01:00
|
|
|
<MkTime v-if="withTime" :time="notification.createdAt" :class="$style.headerTime"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</header>
|
2023-06-01 10:19:46 +02:00
|
|
|
<div>
|
2023-11-02 07:57:55 +01:00
|
|
|
<MkA v-if="notification.type === 'reaction' || notification.type === 'reaction:grouped'" :class="$style.text" :to="notePage(notification.note)" :title="getNoteSummary(notification.note)">
|
2023-09-30 21:53:52 +02:00
|
|
|
<i class="ph-quotes ph-bold ph-lg" :class="$style.quote"></i>
|
2023-01-27 03:35:04 +01:00
|
|
|
<Mfm :text="getNoteSummary(notification.note)" :plain="true" :nowrap="true" :author="notification.note.user"/>
|
2023-09-30 21:53:52 +02:00
|
|
|
<i class="ph-quotes ph-bold ph-lg" :class="$style.quote"></i>
|
2023-01-08 03:30:40 +01:00
|
|
|
</MkA>
|
2023-11-02 07:57:55 +01:00
|
|
|
<MkA v-else-if="notification.type === 'renote' || notification.type === 'renote:grouped'" :class="$style.text" :to="notePage(notification.note)" :title="getNoteSummary(notification.note.renote)">
|
2023-09-30 21:53:52 +02:00
|
|
|
<i class="ph-quotes ph-bold ph-lg" :class="$style.quote"></i>
|
2023-01-27 03:35:04 +01:00
|
|
|
<Mfm :text="getNoteSummary(notification.note.renote)" :plain="true" :nowrap="true" :author="notification.note.renote.user"/>
|
2023-09-30 21:53:52 +02:00
|
|
|
<i class="ph-quotes ph-bold ph-lg" :class="$style.quote"></i>
|
2023-01-08 03:30:40 +01:00
|
|
|
</MkA>
|
2023-01-10 06:16:59 +01:00
|
|
|
<MkA v-else-if="notification.type === 'reply'" :class="$style.text" :to="notePage(notification.note)" :title="getNoteSummary(notification.note)">
|
2023-01-27 03:35:04 +01:00
|
|
|
<Mfm :text="getNoteSummary(notification.note)" :plain="true" :nowrap="true" :author="notification.note.user"/>
|
2023-01-08 03:30:40 +01:00
|
|
|
</MkA>
|
2023-01-10 06:16:59 +01:00
|
|
|
<MkA v-else-if="notification.type === 'mention'" :class="$style.text" :to="notePage(notification.note)" :title="getNoteSummary(notification.note)">
|
2023-01-27 03:35:04 +01:00
|
|
|
<Mfm :text="getNoteSummary(notification.note)" :plain="true" :nowrap="true" :author="notification.note.user"/>
|
2023-01-08 03:30:40 +01:00
|
|
|
</MkA>
|
2023-01-10 06:16:59 +01:00
|
|
|
<MkA v-else-if="notification.type === 'quote'" :class="$style.text" :to="notePage(notification.note)" :title="getNoteSummary(notification.note)">
|
2023-01-27 03:35:04 +01:00
|
|
|
<Mfm :text="getNoteSummary(notification.note)" :plain="true" :nowrap="true" :author="notification.note.user"/>
|
2023-01-08 03:30:40 +01:00
|
|
|
</MkA>
|
2023-09-21 11:48:15 +02:00
|
|
|
<MkA v-else-if="notification.type === 'note'" :class="$style.text" :to="notePage(notification.note)" :title="getNoteSummary(notification.note)">
|
|
|
|
<Mfm :text="getNoteSummary(notification.note)" :plain="true" :nowrap="true" :author="notification.note.user"/>
|
|
|
|
</MkA>
|
2023-01-10 06:16:59 +01:00
|
|
|
<MkA v-else-if="notification.type === 'pollEnded'" :class="$style.text" :to="notePage(notification.note)" :title="getNoteSummary(notification.note)">
|
2023-09-30 21:53:52 +02:00
|
|
|
<i class="ph-quotes ph-bold ph-lg" :class="$style.quote"></i>
|
2023-01-27 03:35:04 +01:00
|
|
|
<Mfm :text="getNoteSummary(notification.note)" :plain="true" :nowrap="true" :author="notification.note.user"/>
|
2023-09-30 21:53:52 +02:00
|
|
|
<i class="ph-quotes ph-bold ph-lg" :class="$style.quote"></i>
|
2023-01-08 03:30:40 +01:00
|
|
|
</MkA>
|
2023-01-21 05:14:55 +01:00
|
|
|
<MkA v-else-if="notification.type === 'achievementEarned'" :class="$style.text" to="/my/achievements">
|
|
|
|
{{ i18n.ts._achievements._types['_' + notification.achievement].title }}
|
|
|
|
</MkA>
|
2023-02-05 12:47:27 +01:00
|
|
|
<template v-else-if="notification.type === 'follow'">
|
|
|
|
<span :class="$style.text" style="opacity: 0.6;">{{ i18n.ts.youGotNewFollower }}</span>
|
|
|
|
<div v-if="full"><MkFollowButton :user="notification.user" :full="true"/></div>
|
|
|
|
</template>
|
2023-01-10 06:16:59 +01:00
|
|
|
<span v-else-if="notification.type === 'followRequestAccepted'" :class="$style.text" style="opacity: 0.6;">{{ i18n.ts.followRequestAccepted }}</span>
|
2023-02-05 12:47:27 +01:00
|
|
|
<template v-else-if="notification.type === 'receiveFollowRequest'">
|
|
|
|
<span :class="$style.text" style="opacity: 0.6;">{{ i18n.ts.receiveFollowRequest }}</span>
|
2023-03-09 04:17:34 +01:00
|
|
|
<div v-if="full && !followRequestDone" :class="$style.followRequestCommands">
|
2023-09-30 21:53:52 +02:00
|
|
|
<MkButton :class="$style.followRequestCommandButton" rounded primary @click="acceptFollowRequest()"><i class="ph-check ph-bold ph-lg"/> {{ i18n.ts.accept }}</MkButton>
|
|
|
|
<MkButton :class="$style.followRequestCommandButton" rounded danger @click="rejectFollowRequest()"><i class="ph-x ph-bold ph-lg"/> {{ i18n.ts.reject }}</MkButton>
|
2023-02-05 12:47:27 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
2023-09-11 07:31:50 +02:00
|
|
|
<span v-else-if="notification.type === 'test'" :class="$style.text">{{ i18n.ts._notification.notificationWillBeDisplayedLikeThis }}</span>
|
2023-01-10 06:16:59 +01:00
|
|
|
<span v-else-if="notification.type === 'app'" :class="$style.text">
|
2023-01-27 03:35:04 +01:00
|
|
|
<Mfm :text="notification.body" :nowrap="false"/>
|
2023-01-08 03:30:40 +01:00
|
|
|
</span>
|
2023-11-02 07:57:55 +01:00
|
|
|
|
|
|
|
<div v-if="notification.type === 'reaction:grouped'">
|
|
|
|
<div v-for="reaction of notification.reactions" :class="$style.reactionsItem">
|
|
|
|
<MkAvatar :class="$style.reactionsItemAvatar" :user="reaction.user" link preview/>
|
|
|
|
<div :class="$style.reactionsItemReaction">
|
|
|
|
<MkReactionIcon
|
2023-11-02 11:59:18 +01:00
|
|
|
:withTooltip="true"
|
2023-11-02 07:57:55 +01:00
|
|
|
:reaction="reaction.reaction ? reaction.reaction.replace(/^:(\w+):$/, ':$1@.:') : reaction.reaction"
|
|
|
|
:noStyle="true"
|
|
|
|
style="width: 100%; height: 100%;"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="notification.type === 'renote:grouped'">
|
|
|
|
<div v-for="user of notification.users" :class="$style.reactionsItem">
|
|
|
|
<MkAvatar :class="$style.reactionsItemAvatar" :user="user" link preview/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-08 03:30:40 +01:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-06-28 07:34:44 +02:00
|
|
|
<script lang="ts" setup>
|
2023-04-04 07:06:57 +02:00
|
|
|
import { ref, shallowRef } from 'vue';
|
2023-09-04 06:33:38 +02:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-01-08 06:22:04 +01:00
|
|
|
import MkReactionIcon from '@/components/MkReactionIcon.vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import MkFollowButton from '@/components/MkFollowButton.vue';
|
2023-03-09 04:17:34 +01:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-09-19 09:37:43 +02:00
|
|
|
import { getNoteSummary } from '@/scripts/get-note-summary.js';
|
|
|
|
import { notePage } from '@/filters/note.js';
|
|
|
|
import { userPage } from '@/filters/user.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { $i } from '@/account.js';
|
|
|
|
import { infoImageUrl } from '@/instance.js';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-06-28 07:34:44 +02:00
|
|
|
const props = withDefaults(defineProps<{
|
2023-09-04 06:33:38 +02:00
|
|
|
notification: Misskey.entities.Notification;
|
2022-06-28 07:34:44 +02:00
|
|
|
withTime?: boolean;
|
|
|
|
full?: boolean;
|
|
|
|
}>(), {
|
|
|
|
withTime: false,
|
|
|
|
full: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
const followRequestDone = ref(false);
|
|
|
|
|
|
|
|
const acceptFollowRequest = () => {
|
|
|
|
followRequestDone.value = true;
|
|
|
|
os.api('following/requests/accept', { userId: props.notification.user.id });
|
|
|
|
};
|
|
|
|
|
|
|
|
const rejectFollowRequest = () => {
|
|
|
|
followRequestDone.value = true;
|
|
|
|
os.api('following/requests/reject', { userId: props.notification.user.id });
|
|
|
|
};
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|
|
|
|
|
2023-01-10 06:16:59 +01:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-01-29 20:37:25 +01:00
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
2020-02-18 23:00:44 +01:00
|
|
|
padding: 24px 32px;
|
2020-01-29 20:37:25 +01:00
|
|
|
font-size: 0.9em;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
display: flex;
|
2020-10-17 13:12:00 +02:00
|
|
|
contain: content;
|
2023-01-10 06:16:59 +01:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-01-10 06:16:59 +01:00
|
|
|
.head {
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2023-11-02 07:57:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon_reactionGroup,
|
|
|
|
.icon_renoteGroup {
|
|
|
|
display: grid;
|
|
|
|
align-items: center;
|
|
|
|
justify-items: center;
|
|
|
|
width: 80%;
|
|
|
|
height: 80%;
|
|
|
|
font-size: 15px;
|
2023-11-03 15:35:12 +01:00
|
|
|
border-radius: var(--radius-full);
|
2023-11-02 07:57:55 +01:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon_reactionGroup {
|
|
|
|
background: #e99a0b;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon_renoteGroup {
|
|
|
|
background: #36d298;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon_app {
|
2023-10-31 19:44:34 +01:00
|
|
|
border-radius: var(--radius-sm);
|
2023-01-10 06:16:59 +01:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-01-10 06:16:59 +01:00
|
|
|
.subIcon {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
bottom: -2px;
|
|
|
|
right: -2px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
box-sizing: border-box;
|
2023-10-31 19:44:34 +01:00
|
|
|
border-radius: var(--radius-full);
|
2023-01-10 06:16:59 +01:00
|
|
|
background: var(--panel);
|
|
|
|
box-shadow: 0 0 0 3px var(--panel);
|
2023-02-09 01:32:39 +01:00
|
|
|
font-size: 11px;
|
2023-01-10 06:16:59 +01:00
|
|
|
text-align: center;
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
2022-12-26 00:40:13 +01:00
|
|
|
|
2023-02-15 05:37:18 +01:00
|
|
|
.t_follow, .t_followRequestAccepted, .t_receiveFollowRequest {
|
2023-01-10 06:16:59 +01:00
|
|
|
padding: 3px;
|
|
|
|
background: #36aed2;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.t_renote {
|
|
|
|
padding: 3px;
|
|
|
|
background: #36d298;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.t_quote {
|
|
|
|
padding: 3px;
|
|
|
|
background: #36d298;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.t_reply {
|
|
|
|
padding: 3px;
|
|
|
|
background: #007aff;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.t_mention {
|
|
|
|
padding: 3px;
|
|
|
|
background: #88a6b7;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.t_pollEnded {
|
|
|
|
padding: 3px;
|
|
|
|
background: #88a6b7;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2023-01-21 05:14:55 +01:00
|
|
|
.t_achievementEarned {
|
|
|
|
padding: 3px;
|
2023-01-24 09:26:49 +01:00
|
|
|
background: #cb9a11;
|
2023-01-21 05:14:55 +01:00
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2023-01-10 06:16:59 +01:00
|
|
|
.tail {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
display: flex;
|
|
|
|
align-items: baseline;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.headerName {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
min-width: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.headerTime {
|
|
|
|
margin-left: auto;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
2023-01-16 22:22:57 +01:00
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
overflow: clip;
|
2023-01-10 06:16:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.quote {
|
|
|
|
vertical-align: super;
|
|
|
|
font-size: 50%;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.quote:first-child {
|
|
|
|
margin-right: 4px;
|
2023-10-21 00:54:28 +02:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
position: absolute;
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
2023-01-10 06:16:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.quote:last-child {
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
2023-03-09 04:17:34 +01:00
|
|
|
.followRequestCommands {
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
max-width: 300px;
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
.followRequestCommandButton {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2023-11-02 07:57:55 +01:00
|
|
|
.reactionsItem {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: 38px;
|
|
|
|
height: 38px;
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reactionsItemAvatar {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reactionsItemReaction {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
bottom: -2px;
|
|
|
|
right: -2px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 100%;
|
|
|
|
background: var(--panel);
|
|
|
|
box-shadow: 0 0 0 3px var(--panel);
|
|
|
|
font-size: 11px;
|
|
|
|
text-align: center;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2022-12-26 00:40:13 +01:00
|
|
|
@container (max-width: 600px) {
|
2023-01-10 06:16:59 +01:00
|
|
|
.root {
|
2022-12-26 00:40:13 +01:00
|
|
|
padding: 16px;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (max-width: 500px) {
|
2023-01-10 06:16:59 +01:00
|
|
|
.root {
|
2022-12-26 00:40:13 +01:00
|
|
|
padding: 12px;
|
|
|
|
font-size: 0.85em;
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
</style>
|