Add padding to receipt checkmark

This commit is contained in:
JC Brand 2018-11-15 10:50:25 +01:00
parent 7e24019568
commit 82a97fdcb0
3 changed files with 3 additions and 3 deletions

View File

@ -11909,6 +11909,7 @@ body.reset {
#conversejs .message.chat-msg.chat-msg--followup .chat-msg__content {
margin-left: 2.75rem; }
#conversejs .message.chat-msg .chat-msg__receipt {
margin-right: 0.5em;
color: var(--message-receipt-color); }
#conversejs .chatroom-body .message.onload {

View File

@ -261,6 +261,7 @@
}
.chat-msg__receipt {
margin-right: 0.5em;
color: var(--message-receipt-color);
}
}

View File

@ -922,9 +922,7 @@ converse.plugins.add('converse-muc', {
if (msgid) {
const msg = this.messages.findWhere({'msgid': msgid, 'from': jid});
if (msg && msg.get('sender') === 'me' && !msg.get('received')) {
msg.save({
'received': moment().format()
});
msg.save({'received': moment().format()});
}
return msg;
}