Commit d325059c authored by JC Brand's avatar JC Brand

Fix styling issue for the unread badge

parent 85e9169b
#conversejs.converse-embedded,
#conversejs {
.badge-room-color {
background-color: var(--chatroom-head-bg-color);
.badge--muc {
background-color: var(--groupchats-header-color);
}
.add-chatroom {
......
......@@ -134,7 +134,7 @@
background-color: var(--chat-head-color);
opacity: 1;
border-radius: 10%;
padding: 0.2em;
padding: 0.2em 0.4em;
font-size: var(--font-size-small);
}
......
......@@ -12,7 +12,7 @@ const i18n_open = __('Click to open this groupchat');
const i18n_rooms = __('Open Groupchats');
const unread_indicator = (o) => html`<span class="list-item-badge badge badge-room-color msgs-indicator">${ o.room.get('num_unread') }</span>`;
const unread_indicator = (o) => html`<span class="list-item-badge badge badge--muc msgs-indicator">${ o.room.get('num_unread') }</span>`;
const bookmark = (o) => {
......
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