summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-05-10 17:37:11 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-05-10 17:37:11 +0900
commit8b853b79702743661798ee38f36a777aec5d38ca (patch)
tree7fd133ff56113efe0cff9b6857624d0f043208c3 /src
parentchore(lint): Add missing semicolon (diff)
downloadsharkey-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.vue6
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;