This commit is contained in:
JC Brand 2019-01-28 13:39:33 +01:00
parent 20a14f5877
commit 59a9c86fa5
3 changed files with 8 additions and 7 deletions

View File

@ -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)

View File

@ -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); }

View File

@ -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;