2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
<template>
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkStickyContainer>
|
2023-05-19 10:20:53 +03:00
|
|
|
<template #header><MkPageHeader v-model:tab="src" :actions="headerActions" :tabs="$i ? headerTabs : headerTabsWhenNotLogin" :displayMyAvatar="true"/></template>
|
|
|
|
<MkSpacer :contentMax="800">
|
2024-01-18 11:21:33 +02:00
|
|
|
<MkHorizontalSwipe v-model:tab="src" :tabs="$i ? headerTabs : headerTabsWhenNotLogin">
|
|
|
|
<div :key="src + withRenotes + withReplies + onlyFiles" ref="rootEl" v-hotkey.global="keymap">
|
|
|
|
<MkInfo v-if="['home', 'local', 'social', 'global'].includes(src) && !defaultStore.reactiveState.timelineTutorials.value[src]" style="margin-bottom: var(--margin);" closable @close="closeTutorial()">
|
|
|
|
{{ i18n.ts._timelineDescription[src] }}
|
|
|
|
</MkInfo>
|
|
|
|
<MkPostForm v-if="defaultStore.reactiveState.showFixedPostForm.value" :class="$style.postForm" class="post-form _panel" fixed style="margin-bottom: var(--margin);"/>
|
|
|
|
<div v-if="queue > 0" :class="$style.new"><button class="_buttonPrimary" :class="$style.newButton" @click="top()">{{ i18n.ts.newNoteRecived }}</button></div>
|
|
|
|
<div :class="$style.tl">
|
|
|
|
<MkTimeline
|
|
|
|
ref="tlComponent"
|
|
|
|
:key="src + withRenotes + withReplies + onlyFiles"
|
|
|
|
:src="src.split(':')[0]"
|
|
|
|
:list="src.split(':')[1]"
|
|
|
|
:withRenotes="withRenotes"
|
|
|
|
:withReplies="withReplies"
|
|
|
|
:onlyFiles="onlyFiles"
|
|
|
|
:sound="true"
|
|
|
|
@queue="queueUpdated"
|
|
|
|
/>
|
|
|
|
</div>
|
2022-06-20 11:38:49 +03:00
|
|
|
</div>
|
2024-01-18 11:21:33 +02:00
|
|
|
</MkHorizontalSwipe>
|
2022-06-20 11:38:49 +03:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-01-29 21:37:25 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-16 08:02:15 +02:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 07:42:09 +02:00
|
|
|
import { computed, watch, provide, shallowRef, ref } from 'vue';
|
2023-02-17 07:59:11 +02:00
|
|
|
import type { Tab } from '@/components/global/MkPageHeader.tabs.vue';
|
2023-02-22 04:00:34 +02:00
|
|
|
import MkTimeline from '@/components/MkTimeline.vue';
|
2023-11-03 08:35:07 +02:00
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
2023-02-09 03:35:28 +02:00
|
|
|
import MkPostForm from '@/components/MkPostForm.vue';
|
2024-01-18 11:21:33 +02:00
|
|
|
import MkHorizontalSwipe from '@/components/MkHorizontalSwipe.vue';
|
2023-09-19 10:37:43 +03:00
|
|
|
import { scroll } from '@/scripts/scroll.js';
|
|
|
|
import * as os from '@/os.js';
|
2024-01-04 11:32:46 +02:00
|
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
2023-09-19 10:37:43 +03:00
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { instance } from '@/instance.js';
|
|
|
|
import { $i } from '@/account.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2023-10-13 10:42:57 +03:00
|
|
|
import { antennasCache, userListsCache } from '@/cache.js';
|
2023-10-30 02:12:20 +02:00
|
|
|
import { deviceKind } from '@/scripts/device-kind.js';
|
2023-12-12 05:19:49 +02:00
|
|
|
import { MenuItem } from '@/types/menu.js';
|
2023-12-22 13:41:42 +02:00
|
|
|
import { miLocalStorage } from '@/local-storage.js';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2023-02-11 06:08:18 +02:00
|
|
|
provide('shouldOmitHeaderTitle', true);
|
|
|
|
|
2023-01-15 13:52:53 +02:00
|
|
|
const isLocalTimelineAvailable = ($i == null && instance.policies.ltlAvailable) || ($i != null && $i.policies.ltlAvailable);
|
|
|
|
const isGlobalTimelineAvailable = ($i == null && instance.policies.gtlAvailable) || ($i != null && $i.policies.gtlAvailable);
|
2022-01-16 08:02:15 +02:00
|
|
|
const keymap = {
|
|
|
|
't': focus,
|
|
|
|
};
|
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
const tlComponent = shallowRef<InstanceType<typeof MkTimeline>>();
|
|
|
|
const rootEl = shallowRef<HTMLElement>();
|
2022-01-16 08:02:15 +02:00
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
const queue = ref(0);
|
|
|
|
const srcWhenNotSignin = ref(isLocalTimelineAvailable ? 'local' : 'global');
|
2024-01-21 11:29:17 +02:00
|
|
|
const src = computed({
|
|
|
|
get: () => ($i ? defaultStore.reactiveState.tl.value.src : srcWhenNotSignin.value),
|
|
|
|
set: (x) => saveSrc(x),
|
|
|
|
});
|
|
|
|
const withRenotes = computed({
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
|
|
get: () => (defaultStore.reactiveState.tl.value.filter?.withRenotes ?? saveTlFilter('withRenotes', true)),
|
|
|
|
set: (x) => saveTlFilter('withRenotes', x),
|
|
|
|
});
|
|
|
|
const withReplies = computed({
|
|
|
|
get: () => {
|
|
|
|
if (!$i) return false;
|
|
|
|
if (['local', 'social'].includes(src.value) && onlyFiles.value) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
|
|
return defaultStore.reactiveState.tl.value.filter?.withReplies ?? saveTlFilter('withReplies', true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
set: (x) => saveTlFilter('withReplies', x),
|
|
|
|
});
|
|
|
|
const onlyFiles = computed({
|
|
|
|
get: () => {
|
|
|
|
if (['local', 'social'].includes(src.value) && withReplies.value) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
|
|
return defaultStore.reactiveState.tl.value.filter?.onlyFiles ?? saveTlFilter('onlyFiles', false);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
set: (x) => saveTlFilter('onlyFiles', x),
|
|
|
|
});
|
|
|
|
const withSensitive = computed({
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
|
|
get: () => (defaultStore.reactiveState.tl.value.filter?.withSensitive ?? saveTlFilter('withSensitive', true)),
|
|
|
|
set: (x) => {
|
|
|
|
saveTlFilter('withSensitive', x);
|
2022-02-04 01:39:20 +02:00
|
|
|
|
2024-01-21 11:29:17 +02:00
|
|
|
// これだけはクライアント側で完結する処理なので手動でリロード
|
|
|
|
tlComponent.value?.reloadTimeline();
|
|
|
|
},
|
2024-01-18 11:21:33 +02:00
|
|
|
});
|
2022-01-16 08:02:15 +02:00
|
|
|
|
2024-01-21 11:29:17 +02:00
|
|
|
watch(src, () => {
|
|
|
|
queue.value = 0;
|
2023-10-13 10:49:56 +03:00
|
|
|
});
|
|
|
|
|
2022-01-16 08:02:15 +02:00
|
|
|
function queueUpdated(q: number): void {
|
2023-12-07 07:42:09 +02:00
|
|
|
queue.value = q;
|
2022-01-16 08:02:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function top(): void {
|
2023-12-07 07:42:09 +02:00
|
|
|
if (rootEl.value) scroll(rootEl.value, { top: 0 });
|
2022-01-16 08:02:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function chooseList(ev: MouseEvent): Promise<void> {
|
2023-09-11 08:55:18 +03:00
|
|
|
const lists = await userListsCache.fetch();
|
2023-12-12 05:19:49 +02:00
|
|
|
const items: MenuItem[] = [
|
|
|
|
...lists.map(list => ({
|
|
|
|
type: 'link' as const,
|
|
|
|
text: list.name,
|
|
|
|
to: `/timeline/list/${list.id}`,
|
|
|
|
})),
|
|
|
|
(lists.length === 0 ? undefined : { type: 'divider' }),
|
|
|
|
{
|
|
|
|
type: 'link' as const,
|
|
|
|
icon: 'ti ti-plus',
|
|
|
|
text: i18n.ts.createNew,
|
|
|
|
to: '/my/lists',
|
|
|
|
},
|
|
|
|
];
|
2022-01-28 04:53:12 +02:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-16 08:02:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function chooseAntenna(ev: MouseEvent): Promise<void> {
|
2023-09-11 08:55:18 +03:00
|
|
|
const antennas = await antennasCache.fetch();
|
2023-12-12 05:19:49 +02:00
|
|
|
const items: MenuItem[] = [
|
|
|
|
...antennas.map(antenna => ({
|
|
|
|
type: 'link' as const,
|
|
|
|
text: antenna.name,
|
|
|
|
indicate: antenna.hasUnreadNote,
|
|
|
|
to: `/timeline/antenna/${antenna.id}`,
|
|
|
|
})),
|
|
|
|
(antennas.length === 0 ? undefined : { type: 'divider' }),
|
|
|
|
{
|
|
|
|
type: 'link' as const,
|
|
|
|
icon: 'ti ti-plus',
|
|
|
|
text: i18n.ts.createNew,
|
|
|
|
to: '/my/antennas',
|
|
|
|
},
|
|
|
|
];
|
2022-01-28 04:53:12 +02:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-16 08:02:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function chooseChannel(ev: MouseEvent): Promise<void> {
|
2024-01-04 11:32:46 +02:00
|
|
|
const channels = await misskeyApi('channels/my-favorites', {
|
2023-02-17 07:59:11 +02:00
|
|
|
limit: 100,
|
|
|
|
});
|
2023-12-14 00:18:29 +02:00
|
|
|
const items: MenuItem[] = [
|
2023-12-22 13:41:42 +02:00
|
|
|
...channels.map(channel => {
|
|
|
|
const lastReadedAt = miLocalStorage.getItemAsJson(`channelLastReadedAt:${channel.id}`) ?? null;
|
|
|
|
const hasUnreadNote = (lastReadedAt && channel.lastNotedAt) ? Date.parse(channel.lastNotedAt) > lastReadedAt : !!(!lastReadedAt && channel.lastNotedAt);
|
|
|
|
|
|
|
|
return {
|
|
|
|
type: 'link' as const,
|
|
|
|
text: channel.name,
|
|
|
|
indicate: hasUnreadNote,
|
|
|
|
to: `/channels/${channel.id}`,
|
|
|
|
};
|
|
|
|
}),
|
2023-12-14 00:18:29 +02:00
|
|
|
(channels.length === 0 ? undefined : { type: 'divider' }),
|
2023-12-12 05:19:49 +02:00
|
|
|
{
|
|
|
|
type: 'link' as const,
|
|
|
|
icon: 'ti ti-plus',
|
|
|
|
text: i18n.ts.createNew,
|
|
|
|
to: '/channels',
|
|
|
|
},
|
|
|
|
];
|
2022-01-28 04:53:12 +02:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-16 08:02:15 +02:00
|
|
|
}
|
|
|
|
|
2023-09-19 04:58:42 +03:00
|
|
|
function saveSrc(newSrc: 'home' | 'local' | 'social' | 'global' | `list:${string}`): void {
|
2024-01-21 11:29:17 +02:00
|
|
|
const out = {
|
|
|
|
...defaultStore.state.tl,
|
|
|
|
src: newSrc,
|
|
|
|
};
|
|
|
|
|
2023-09-19 04:58:42 +03:00
|
|
|
if (newSrc.startsWith('userList:')) {
|
|
|
|
const id = newSrc.substring('userList:'.length);
|
2024-01-21 11:29:17 +02:00
|
|
|
out.userList = defaultStore.reactiveState.pinnedUserLists.value.find(l => l.id === id) ?? null;
|
2023-09-19 04:58:42 +03:00
|
|
|
}
|
2024-01-21 11:29:17 +02:00
|
|
|
|
|
|
|
defaultStore.set('tl', out);
|
2023-12-07 07:42:09 +02:00
|
|
|
srcWhenNotSignin.value = newSrc;
|
2022-01-16 08:02:15 +02:00
|
|
|
}
|
|
|
|
|
2024-01-21 11:29:17 +02:00
|
|
|
function saveTlFilter(key: keyof typeof defaultStore.state.tl.filter, newValue: boolean) {
|
|
|
|
if (key !== 'withReplies' || $i) {
|
|
|
|
const out = { ...defaultStore.state.tl };
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
|
|
if (!out.filter) {
|
|
|
|
out.filter = {
|
|
|
|
withRenotes: true,
|
|
|
|
withReplies: true,
|
|
|
|
withSensitive: true,
|
|
|
|
onlyFiles: false,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
out.filter[key] = newValue;
|
|
|
|
defaultStore.set('tl', out);
|
|
|
|
}
|
|
|
|
return newValue;
|
|
|
|
}
|
|
|
|
|
2022-01-16 08:02:15 +02:00
|
|
|
async function timetravel(): Promise<void> {
|
|
|
|
const { canceled, result: date } = await os.inputDate({
|
2022-01-28 04:39:49 +02:00
|
|
|
title: i18n.ts.date,
|
2022-01-16 08:02:15 +02:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
tlComponent.value.timetravel(date);
|
2022-01-16 08:02:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function focus(): void {
|
2023-12-07 07:42:09 +02:00
|
|
|
tlComponent.value.focus();
|
2022-01-16 08:02:15 +02:00
|
|
|
}
|
|
|
|
|
2023-11-03 08:35:07 +02:00
|
|
|
function closeTutorial(): void {
|
2023-12-07 07:42:09 +02:00
|
|
|
if (!['home', 'local', 'social', 'global'].includes(src.value)) return;
|
2023-11-03 08:35:07 +02:00
|
|
|
const before = defaultStore.state.timelineTutorials;
|
2023-12-07 07:42:09 +02:00
|
|
|
before[src.value] = true;
|
2023-11-03 08:35:07 +02:00
|
|
|
defaultStore.set('timelineTutorials', before);
|
|
|
|
}
|
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
const headerActions = computed(() => {
|
2023-10-31 10:26:59 +02:00
|
|
|
const tmp = [
|
|
|
|
{
|
|
|
|
icon: 'ti ti-dots',
|
|
|
|
text: i18n.ts.options,
|
|
|
|
handler: (ev) => {
|
|
|
|
os.popupMenu([{
|
|
|
|
type: 'switch',
|
|
|
|
text: i18n.ts.showRenotes,
|
2023-12-07 07:42:09 +02:00
|
|
|
ref: withRenotes,
|
|
|
|
}, src.value === 'local' || src.value === 'social' ? {
|
2023-10-31 10:26:59 +02:00
|
|
|
type: 'switch',
|
|
|
|
text: i18n.ts.showRepliesToOthersInTimeline,
|
2023-12-07 07:42:09 +02:00
|
|
|
ref: withReplies,
|
|
|
|
disabled: onlyFiles,
|
2023-10-31 10:26:59 +02:00
|
|
|
} : undefined, {
|
2024-01-21 11:29:17 +02:00
|
|
|
type: 'switch',
|
|
|
|
text: i18n.ts.withSensitive,
|
|
|
|
ref: withSensitive,
|
|
|
|
}, {
|
2023-10-31 10:26:59 +02:00
|
|
|
type: 'switch',
|
|
|
|
text: i18n.ts.fileAttachedOnly,
|
2023-12-07 07:42:09 +02:00
|
|
|
ref: onlyFiles,
|
|
|
|
disabled: src.value === 'local' || src.value === 'social' ? withReplies : false,
|
2023-10-31 10:26:59 +02:00
|
|
|
}], ev.currentTarget ?? ev.target);
|
|
|
|
},
|
2023-10-30 02:12:20 +02:00
|
|
|
},
|
2023-10-31 10:26:59 +02:00
|
|
|
];
|
|
|
|
if (deviceKind === 'desktop') {
|
|
|
|
tmp.unshift({
|
|
|
|
icon: 'ti ti-refresh',
|
|
|
|
text: i18n.ts.reload,
|
|
|
|
handler: (ev: Event) => {
|
2024-01-21 11:29:17 +02:00
|
|
|
tlComponent.value?.reloadTimeline();
|
2023-10-31 10:26:59 +02:00
|
|
|
},
|
|
|
|
});
|
2023-10-30 02:12:20 +02:00
|
|
|
}
|
2023-10-31 10:26:59 +02:00
|
|
|
return tmp;
|
|
|
|
});
|
2022-06-20 11:38:49 +03:00
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
const headerTabs = computed(() => [...(defaultStore.reactiveState.pinnedUserLists.value.map(l => ({
|
2023-09-19 04:58:42 +03:00
|
|
|
key: 'list:' + l.id,
|
|
|
|
title: l.name,
|
|
|
|
icon: 'ti ti-star',
|
|
|
|
iconOnly: true,
|
|
|
|
}))), {
|
2022-06-22 10:29:21 +03:00
|
|
|
key: 'home',
|
2022-06-20 11:38:49 +03:00
|
|
|
title: i18n.ts._timelines.home,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-home',
|
2022-06-20 11:38:49 +03:00
|
|
|
iconOnly: true,
|
|
|
|
}, ...(isLocalTimelineAvailable ? [{
|
2022-06-22 10:29:21 +03:00
|
|
|
key: 'local',
|
2022-06-20 11:38:49 +03:00
|
|
|
title: i18n.ts._timelines.local,
|
2022-12-31 13:40:47 +02:00
|
|
|
icon: 'ti ti-planet',
|
2022-06-20 11:38:49 +03:00
|
|
|
iconOnly: true,
|
|
|
|
}, {
|
2022-06-22 10:29:21 +03:00
|
|
|
key: 'social',
|
2022-06-20 11:38:49 +03:00
|
|
|
title: i18n.ts._timelines.social,
|
2023-09-29 09:14:18 +03:00
|
|
|
icon: 'ti ti-universe',
|
2022-06-20 11:38:49 +03:00
|
|
|
iconOnly: true,
|
|
|
|
}] : []), ...(isGlobalTimelineAvailable ? [{
|
2022-06-22 10:29:21 +03:00
|
|
|
key: 'global',
|
2022-06-20 11:38:49 +03:00
|
|
|
title: i18n.ts._timelines.global,
|
2022-12-31 13:40:47 +02:00
|
|
|
icon: 'ti ti-whirl',
|
2022-06-20 11:38:49 +03:00
|
|
|
iconOnly: true,
|
2022-06-21 08:12:39 +03:00
|
|
|
}] : []), {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-list',
|
2022-06-21 08:12:39 +03:00
|
|
|
title: i18n.ts.lists,
|
|
|
|
iconOnly: true,
|
|
|
|
onClick: chooseList,
|
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-antenna',
|
2022-06-21 08:12:39 +03:00
|
|
|
title: i18n.ts.antennas,
|
|
|
|
iconOnly: true,
|
|
|
|
onClick: chooseAntenna,
|
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-device-tv',
|
2022-06-21 08:12:39 +03:00
|
|
|
title: i18n.ts.channel,
|
|
|
|
iconOnly: true,
|
|
|
|
onClick: chooseChannel,
|
2023-02-11 09:04:45 +02:00
|
|
|
}] as Tab[]);
|
2022-06-20 11:38:49 +03:00
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
const headerTabsWhenNotLogin = computed(() => [
|
2023-02-05 07:02:54 +02:00
|
|
|
...(isLocalTimelineAvailable ? [{
|
|
|
|
key: 'local',
|
|
|
|
title: i18n.ts._timelines.local,
|
|
|
|
icon: 'ti ti-planet',
|
|
|
|
iconOnly: true,
|
|
|
|
}] : []),
|
|
|
|
...(isGlobalTimelineAvailable ? [{
|
|
|
|
key: 'global',
|
|
|
|
title: i18n.ts._timelines.global,
|
|
|
|
icon: 'ti ti-whirl',
|
|
|
|
iconOnly: true,
|
|
|
|
}] : []),
|
2023-02-11 09:04:45 +02:00
|
|
|
] as Tab[]);
|
2023-02-05 07:02:54 +02:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.timeline,
|
2023-12-07 07:42:09 +02:00
|
|
|
icon: src.value === 'local' ? 'ti ti-planet' : src.value === 'social' ? 'ti ti-universe' : src.value === 'global' ? 'ti ti-whirl' : 'ti ti-home',
|
2022-06-20 11:38:49 +03:00
|
|
|
})));
|
2020-01-29 21:37:25 +02:00
|
|
|
</script>
|
|
|
|
|
2023-01-10 03:35:02 +02:00
|
|
|
<style lang="scss" module>
|
|
|
|
.new {
|
|
|
|
position: sticky;
|
|
|
|
top: calc(var(--stickyTop, 0px) + 16px);
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
2023-02-11 03:36:14 +02:00
|
|
|
margin: calc(-0.675em - 8px) 0;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-top: calc(-0.675em - 8px - var(--margin));
|
|
|
|
}
|
2023-05-19 10:25:48 +03:00
|
|
|
}
|
2023-01-10 03:35:02 +02:00
|
|
|
|
2023-05-19 10:25:48 +03:00
|
|
|
.newButton {
|
|
|
|
display: block;
|
|
|
|
margin: var(--margin) auto 0 auto;
|
|
|
|
padding: 8px 16px;
|
|
|
|
border-radius: 32px;
|
2023-01-10 03:35:02 +02:00
|
|
|
}
|
2020-02-18 21:08:35 +02:00
|
|
|
|
2023-01-10 03:35:02 +02:00
|
|
|
.postForm {
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
2021-10-14 12:51:15 +03:00
|
|
|
|
2023-01-10 03:35:02 +02:00
|
|
|
.tl {
|
|
|
|
background: var(--bg);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
overflow: clip;
|
2020-01-29 21:37:25 +02:00
|
|
|
}
|
|
|
|
</style>
|