Commit 4104dec8 authored by JC Brand's avatar JC Brand

Fix emoji height (broken in Chromium 60)

parent 34e214d0
...@@ -1949,6 +1949,9 @@ body { ...@@ -1949,6 +1949,9 @@ body {
line-height: 22px; } line-height: 22px; }
#conversejs .chatbox .chat-body .chat-message .chat-msg-content { #conversejs .chatbox .chat-body .chat-message .chat-msg-content {
line-height: 22px; } line-height: 22px; }
#conversejs .chatbox .chat-body .chat-message .chat-msg-content .emojione {
height: 22px;
margin-bottom: -5.5px; }
#conversejs .chatbox .chat-content { #conversejs .chatbox .chat-content {
padding: 0 1em 1em 1em; padding: 0 1em 1em 1em;
border-top-left-radius: 7px; border-top-left-radius: 7px;
......
...@@ -51,6 +51,10 @@ ...@@ -51,6 +51,10 @@
} }
.chat-msg-content { .chat-msg-content {
line-height: $line-height; line-height: $line-height;
.emojione {
height: $line-height;
margin-bottom: -$line-height/4;
}
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment