remove margin from MkNoteSimple root
This commit is contained in:
parent
73842166ee
commit
12b82aca5f
|
@ -83,7 +83,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
</div>
|
||||
<MkPoll v-if="appearNote.poll" :note="appearNote" :class="$style.poll"/>
|
||||
<MkUrlPreview v-for="url in urls" :key="url" :url="url" :compact="true" :detail="false" :class="$style.urlPreview"/>
|
||||
<MkNoteSimple v-if="appearNote.renote" :note="appearNote.renote" :quoted="true"/>
|
||||
<MkNoteSimple v-if="appearNote.renote" :class="$style.quote" :note="appearNote.renote" :quoted="true"/>
|
||||
<button v-if="isLong && collapsed" :class="$style.collapsed" class="_button" @click="collapsed = false">
|
||||
<span :class="$style.collapsedLabel">{{ i18n.ts.showMore }}</span>
|
||||
</button>
|
||||
|
@ -800,6 +800,10 @@ function emitUpdReaction(emoji: string, delta: number) {
|
|||
font-size: 80%;
|
||||
}
|
||||
|
||||
.quote {
|
||||
margin: 8px 0;
|
||||
}
|
||||
|
||||
.channel {
|
||||
opacity: 0.7;
|
||||
font-size: 80%;
|
||||
|
|
|
@ -81,7 +81,6 @@ const showContent = ref(false);
|
|||
}
|
||||
|
||||
.quoted {
|
||||
margin: 8px 0;
|
||||
padding: 16px;
|
||||
border: dashed 1px var(--renote);
|
||||
border-radius: 8px;
|
||||
|
|
|
@ -26,7 +26,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
</MkButton>
|
||||
</div>
|
||||
</template>
|
||||
<template v-else-if="postExpanded">
|
||||
<div v-else-if="postExpanded">
|
||||
<div v-if="tweetId" ref="twitter">
|
||||
<iframe
|
||||
ref="tweet"
|
||||
|
@ -43,7 +43,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
<i v-if="tweetId" class="ti ti-x"></i> {{ i18n.ts.close }}
|
||||
</MkButton>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
<div v-else>
|
||||
<component :is="self ? 'MkA' : 'a'" :class="[$style.link, { [$style.compact]: compact }]" :[attr]="self ? url.substring(local.length) : url" rel="nofollow noopener" :target="target" :title="url">
|
||||
<div v-if="thumbnail && !sensitive" :class="$style.thumbnail" :style="defaultStore.state.dataSaver.urlPreview ? '' : `background-image: url('${thumbnail}')`">
|
||||
|
|
Loading…
Reference in a new issue