diff --git a/src/client/components/note.vue b/src/client/components/note.vue index dda4dfc02027fe19a2f9b1a26f9a8bfd656b14da..76e9ddb4baa6bfa2aea34c19c8eb68e8e9c58038 100644 --- a/src/client/components/note.vue +++ b/src/client/components/note.vue @@ -7,7 +7,7 @@ v-hotkey="keymap" v-size="[{ max: 500 }, { max: 450 }, { max: 350 }, { max: 300 }]" > - <x-sub v-for="note in conversation" :key="note.id" :note="note"/> + <x-sub v-for="note in conversation" class="reply-to-more" :key="note.id" :note="note"/> <x-sub :note="appearNote.reply" class="reply-to" v-if="appearNote.reply"/> <div class="info" v-if="pinned"><fa :icon="faThumbtack"/> {{ $t('pinnedNote') }}</div> <div class="info" v-if="appearNote._prId_"><fa :icon="faBullhorn"/> {{ $t('promotion') }}<button class="_textButton hide" @click="readPromo()">{{ $t('hideThisNote') }} <fa :icon="faTimes"/></button></div> @@ -814,6 +814,10 @@ export default Vue.extend({ padding-bottom: 0; } + > .reply-to-more { + opacity: 0.7; + } + > .renote { display: flex; align-items: center;