2018-05-24 12:55:48 +02:00
|
|
|
#conversejs.converse-overlayed {
|
2015-10-25 20:10:44 +01:00
|
|
|
#minimized-chats {
|
2018-03-09 17:43:25 +01:00
|
|
|
order: 100;
|
2018-03-09 10:12:05 +01:00
|
|
|
|
2018-03-09 20:06:47 +01:00
|
|
|
width: $minimized-chats-width;
|
2018-01-26 15:32:31 +01:00
|
|
|
margin-bottom: -2*$chat-gutter;
|
2015-10-25 20:10:44 +01:00
|
|
|
border-top-left-radius: $chatbox-border-radius;
|
|
|
|
border-top-right-radius: $chatbox-border-radius;
|
|
|
|
color: $inverse-link-color;
|
2018-01-26 14:41:06 +01:00
|
|
|
margin-right: $chat-gutter;
|
2015-10-25 20:10:44 +01:00
|
|
|
padding: 0;
|
|
|
|
|
2018-01-23 11:20:51 +01:00
|
|
|
.badge {
|
|
|
|
bottom: 8px;
|
|
|
|
border: 1px solid $gray-color;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:10:44 +01:00
|
|
|
#toggle-minimized-chats {
|
|
|
|
border-top-left-radius: $chatbox-border-radius;
|
|
|
|
border-top-right-radius: $chatbox-border-radius;
|
2015-10-29 09:12:40 +01:00
|
|
|
background-color: $link-color;
|
2018-04-10 20:55:47 +02:00
|
|
|
padding: 1em 0 0 0;
|
2015-10-25 20:10:44 +01:00
|
|
|
text-align: center;
|
2018-01-26 14:41:06 +01:00
|
|
|
color: white;
|
2018-01-26 19:34:24 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow-y: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: block;
|
2018-03-09 23:42:42 +01:00
|
|
|
height: 45px;
|
2018-01-26 19:34:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a.restore-chat {
|
|
|
|
padding: 1px 0 1px 5px;
|
|
|
|
color: $chat-head-text-color;
|
|
|
|
line-height: 15px;
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a.restore-chat:visited {
|
|
|
|
color: $chat-head-text-color;
|
2015-10-25 20:10:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.minimized-chats-flyout {
|
2018-01-26 15:32:31 +01:00
|
|
|
flex-direction: column-reverse;
|
2018-04-10 20:55:47 +02:00
|
|
|
bottom: 42px;
|
2018-03-09 20:06:47 +01:00
|
|
|
width: $minimized-chats-width;
|
2018-01-26 14:41:06 +01:00
|
|
|
|
2015-10-25 20:10:44 +01:00
|
|
|
.chat-head {
|
2015-10-29 09:12:40 +01:00
|
|
|
padding: 0.3em;
|
2015-10-25 20:10:44 +01:00
|
|
|
border-radius: $chatbox-border-radius;
|
|
|
|
height: 35px;
|
|
|
|
margin-bottom: 0.2em;
|
2015-10-29 09:12:40 +01:00
|
|
|
box-shadow: 1px 3px 5px 3px rgba(0, 0, 0, 0.4);
|
2018-01-27 10:07:54 +01:00
|
|
|
width: 100%;
|
2015-10-25 20:10:44 +01:00
|
|
|
}
|
|
|
|
&.minimized {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-14 19:25:33 +01:00
|
|
|
.unread-message-count {
|
2015-10-25 20:10:44 +01:00
|
|
|
font-weight: bold;
|
2015-10-29 10:21:31 +01:00
|
|
|
background-color: white;
|
2015-10-25 20:10:44 +01:00
|
|
|
border: 1px solid;
|
|
|
|
text-shadow: 1px 1px 0 $text-shadow-color;
|
|
|
|
color: $warning-color;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 2px 4px;
|
|
|
|
font-size: 16px;
|
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
right: 116px;
|
|
|
|
bottom: 10px;
|
|
|
|
}
|
2017-04-30 10:22:54 +02:00
|
|
|
.unread-message-count-hidden,
|
|
|
|
.chat-head-message-count-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-10-25 20:10:44 +01:00
|
|
|
}
|
|
|
|
}
|