Make system messages light again

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2020-03-27 16:07:47 +01:00
Родитель dd46e4eedf
Коммит c004345a48
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -44,7 +44,7 @@ the main body of the message as well as a quote.
<RichText :text="message" :arguments="richParameters" :autolink="true" />
<CallButton />
</div>
<div v-else class="message__main__text">
<div v-else class="message__main__text" :class="{'system-message': isSystemMessage}">
<Quote v-if="parent" v-bind="quote" />
<RichText :text="message" :arguments="richParameters" :autolink="true" />
</div>
@ -207,6 +207,10 @@ export default {
return this.isReplyable
},
isSystemMessage() {
return this.systemMessage !== ''
},
messageTime() {
return OC.Util.formatDate(this.timestamp * 1000, 'LT')
},
@ -347,6 +351,10 @@ export default {
text-align: center;
}
&.system-message {
color: var(--color-text-maxcontrast);
}
::v-deep .rich-text--wrapper {
white-space: pre-wrap;
word-break: break-word;