Skip to content

Commit

Permalink
tweak 3155f3b
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Oct 8, 2024
1 parent 6ca5cf1 commit 405ad6e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/frontend/src/components/MkNoteDetailed.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</span>
</div>
</div>
<template v-if="appearNote.reply && appearNote.reply.replyId"><MkNoteSub v-for="note in conversation" :key="note.id" :class="$style.replyToMore" :note="note"/></template>
<template v-if="appearNote.reply && appearNote.reply.replyId"><MkNoteSub v-for="note in conversation" :key="note.id" :class="[$style.replyToMore, { [$style.showReplyTargetNoteInSemiTransparent]: defaultStore.state.showReplyTargetNoteInSemiTransparent }]" :note="note"/></template>
<MkNoteSub v-if="appearNote.reply" :note="appearNote.reply" :class="[$style.replyTo, { [$style.showReplyTargetNoteInSemiTransparent]: defaultStore.state.showReplyTargetNoteInSemiTransparent }]"/>
<article :class="$style.note" :style="{ paddingTop: defaultStore.state.showSubNoteFooterButton && appearNote.reply ? '14px' : '' }" @contextmenu.stop="onContextmenu">
<header :class="$style.noteHeader">
Expand Down Expand Up @@ -812,7 +812,9 @@ function showOnRemote() {
}

.replyToMore {
opacity: 0.7;
&.showReplyTargetNoteInSemiTransparent {
opacity: 0.7;
}
}

.renote {
Expand Down

0 comments on commit 405ad6e

Please sign in to comment.