diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-05-10 17:37:11 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-05-10 17:37:11 +0900 |
| commit | 8b853b79702743661798ee38f36a777aec5d38ca (patch) | |
| tree | 7fd133ff56113efe0cff9b6857624d0f043208c3 /src | |
| parent | chore(lint): Add missing semicolon (diff) | |
| download | sharkey-8b853b79702743661798ee38f36a777aec5d38ca.tar.gz sharkey-8b853b79702743661798ee38f36a777aec5d38ca.tar.bz2 sharkey-8b853b79702743661798ee38f36a777aec5d38ca.zip | |
fix(client): Fix reply style
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/components/note.vue | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/client/components/note.vue b/src/client/components/note.vue index dda4dfc020..76e9ddb4ba 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; |