Commit 59a9c86f authored by JC Brand's avatar JC Brand

Fixes #1417

parent 20a14f58
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
- Accessibility: Tag the chat-content as an ARIA live region, for screen readers - Accessibility: Tag the chat-content as an ARIA live region, for screen readers
- #1369 Don't wrongly interpret message with `subject` as a topic change. - #1369 Don't wrongly interpret message with `subject` as a topic change.
- #1408 new config option `roomconfig_whitelist` - #1408 new config option `roomconfig_whitelist`
- #1417 Margin between nickname and badge
- #1421 fix direct invite for membersonly room - #1421 fix direct invite for membersonly room
## 4.1.0 (2019-01-11) ## 4.1.0 (2019-01-11)
......
...@@ -11968,9 +11968,9 @@ body.converse-fullscreen { ...@@ -11968,9 +11968,9 @@ body.converse-fullscreen {
font-family: var(--heading-font); font-family: var(--heading-font);
font-size: 115%; font-size: 115%;
font-weight: bold; } font-weight: bold; }
#conversejs .message.chat-msg .chat-msg__heading .chat-msg__author .badge { #conversejs .message.chat-msg .chat-msg__heading .badge {
font-size: 80%; margin-left: 0.5em;
font-family: var(--normal_font); } font-family: var(--normal_font); }
#conversejs .message.chat-msg .chat-msg__heading .chat-msg__time { #conversejs .message.chat-msg .chat-msg__heading .chat-msg__time {
padding-left: 0.25em; padding-left: 0.25em;
color: var(--text-color-lighten-15-percent); } color: var(--text-color-lighten-15-percent); }
......
...@@ -226,10 +226,10 @@ ...@@ -226,10 +226,10 @@
font-family: var(--heading-font); font-family: var(--heading-font);
font-size: 115%; font-size: 115%;
font-weight: bold; font-weight: bold;
.badge { }
font-size: 80%; .badge {
font-family: var(--normal_font); margin-left: 0.5em;
} font-family: var(--normal_font);
} }
.chat-msg__time { .chat-msg__time {
padding-left: 0.25em; padding-left: 0.25em;
......
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