2020-08-25 19:58:35 +00:00
|
|
|
.pane {
|
2020-08-26 05:21:54 +00:00
|
|
|
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
|
2020-08-26 16:54:22 +00:00
|
|
|
border-radius: 6px 6px 0 0;
|
2020-08-25 02:26:42 +00:00
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
right: 20px;
|
|
|
|
width: 265px;
|
2020-08-25 22:07:07 +00:00
|
|
|
height: 265px;
|
|
|
|
max-height: calc(100vh - 70px);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-08-27 17:55:38 +00:00
|
|
|
z-index: 999;
|
2020-08-27 18:04:16 +00:00
|
|
|
transition: 0.05s;
|
2020-08-25 02:26:42 +00:00
|
|
|
|
2020-08-25 22:07:07 +00:00
|
|
|
&--main {
|
|
|
|
height: calc(100vh - 70px);
|
2020-08-26 00:13:54 +00:00
|
|
|
|
2020-08-27 18:37:53 +00:00
|
|
|
.pane__header .pane__title {
|
2020-08-26 00:13:54 +00:00
|
|
|
font-size: 16px;
|
|
|
|
}
|
2020-08-25 22:07:07 +00:00
|
|
|
}
|
|
|
|
|
2020-08-25 23:45:05 +00:00
|
|
|
&--minimized {
|
2020-08-25 23:58:40 +00:00
|
|
|
height: 31px;
|
2020-08-25 23:45:05 +00:00
|
|
|
}
|
|
|
|
|
2020-08-25 02:26:42 +00:00
|
|
|
&__header {
|
2020-08-25 23:45:05 +00:00
|
|
|
box-sizing: border-box;
|
2020-08-25 02:26:42 +00:00
|
|
|
background: var(--brand-color);
|
|
|
|
color: #fff;
|
2020-08-26 00:13:54 +00:00
|
|
|
padding: 0 10px;
|
2020-08-25 02:26:42 +00:00
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 6px 6px 0 0;
|
2020-08-25 22:07:07 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-08-25 23:45:05 +00:00
|
|
|
height: 31px;
|
2020-08-25 22:07:07 +00:00
|
|
|
|
|
|
|
.account__avatar {
|
|
|
|
margin-right: 7px;
|
|
|
|
}
|
|
|
|
|
2020-08-26 00:13:54 +00:00
|
|
|
.pane__title {
|
2020-08-25 22:07:07 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2020-08-27 18:08:04 +00:00
|
|
|
flex: 1;
|
2020-08-26 00:13:54 +00:00
|
|
|
height: 100%;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: left;
|
|
|
|
font-size: 14px;
|
2020-08-25 22:07:07 +00:00
|
|
|
}
|
2020-08-25 23:11:48 +00:00
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
height: auto !important;
|
|
|
|
width: auto !important;
|
|
|
|
margin-right: -6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.pane__close {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2020-08-27 20:43:19 +00:00
|
|
|
|
|
|
|
.icon-with-badge__badge {
|
|
|
|
position: static;
|
|
|
|
pointer-events: none;
|
2020-08-27 21:41:24 +00:00
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
margin-right: 7px;
|
2020-08-27 20:43:19 +00:00
|
|
|
}
|
2020-08-25 02:26:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
background: var(--foreground-color);
|
2020-08-25 22:07:07 +00:00
|
|
|
display: flex;
|
2020-08-26 02:03:10 +00:00
|
|
|
flex: 1;
|
2020-08-25 22:07:07 +00:00
|
|
|
flex-direction: column;
|
2020-08-26 02:03:10 +00:00
|
|
|
overflow: hidden;
|
2020-08-25 22:07:07 +00:00
|
|
|
|
2020-08-28 18:17:19 +00:00
|
|
|
.chat-box {
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow: hidden;
|
2020-08-25 22:07:07 +00:00
|
|
|
}
|
2020-08-25 02:26:42 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-26 02:03:10 +00:00
|
|
|
|
|
|
|
.chat-messages {
|
|
|
|
overflow-y: scroll;
|
2020-08-26 16:54:22 +00:00
|
|
|
flex: 1;
|
2020-08-26 02:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.chat-message {
|
2020-09-07 21:07:05 +00:00
|
|
|
margin: 14px 10px;
|
2020-08-26 05:21:54 +00:00
|
|
|
display: flex;
|
2020-08-26 02:03:10 +00:00
|
|
|
|
|
|
|
&__bubble {
|
2020-08-28 00:28:46 +00:00
|
|
|
font-size: 15px;
|
2020-08-26 02:03:10 +00:00
|
|
|
padding: 4px 10px;
|
|
|
|
max-width: 70%;
|
|
|
|
border-radius: 10px;
|
|
|
|
background-color: var(--background-color);
|
2020-08-27 05:33:57 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2020-09-03 19:57:58 +00:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
white-space: break-spaces;
|
2020-08-27 05:33:57 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--brand-color--hicontrast);
|
|
|
|
}
|
2020-08-26 02:03:10 +00:00
|
|
|
}
|
2020-08-26 05:21:54 +00:00
|
|
|
|
|
|
|
&--me .chat-message__bubble {
|
|
|
|
margin-left: auto;
|
|
|
|
background-color: hsla(var(--brand-color_hsl), 0.2);
|
|
|
|
}
|
2020-08-27 17:50:08 +00:00
|
|
|
|
|
|
|
&--pending .chat-message__bubble {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2020-08-26 02:03:10 +00:00
|
|
|
}
|
2020-08-27 17:53:44 +00:00
|
|
|
|
|
|
|
.chat-list {
|
|
|
|
overflow-y: auto;
|
2020-08-27 19:02:52 +00:00
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.empty-column-indicator {
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background: transparent;
|
|
|
|
align-items: start;
|
|
|
|
}
|
2020-08-27 20:43:19 +00:00
|
|
|
|
|
|
|
.account__display-name {
|
|
|
|
position: relative;
|
2020-08-31 00:31:09 +00:00
|
|
|
|
|
|
|
.display-name {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
bdi {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-name__account {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
flex: 1;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2020-08-27 20:43:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-with-badge__badge {
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: auto;
|
|
|
|
bottom: auto;
|
|
|
|
}
|
2020-08-27 17:53:44 +00:00
|
|
|
}
|
2020-08-28 18:17:19 +00:00
|
|
|
|
|
|
|
.chat-box {
|
2020-09-06 20:36:47 +00:00
|
|
|
.upload-progress {
|
|
|
|
padding: 0 10px;
|
|
|
|
align-items: center;
|
2020-09-06 22:09:06 +00:00
|
|
|
height: 25px;
|
2020-09-06 20:36:47 +00:00
|
|
|
|
|
|
|
.fa {
|
|
|
|
font-size: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__message {
|
|
|
|
font-size: 13px;
|
|
|
|
flex: 1;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__backdrop {
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-06 22:09:06 +00:00
|
|
|
&__attachment {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 0 10px;
|
|
|
|
height: 25px;
|
|
|
|
|
|
|
|
.chat-box__remove-attachment {
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
|
|
.icon-button > div {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-28 18:17:19 +00:00
|
|
|
&__actions {
|
|
|
|
background: var(--foreground-color);
|
|
|
|
margin-top: auto;
|
|
|
|
padding: 6px;
|
2020-09-06 02:48:25 +00:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
|
|
|
top: 8px;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
background: transparent !important;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2020-08-28 18:17:19 +00:00
|
|
|
|
2020-09-06 22:43:16 +00:00
|
|
|
.chat-box__send .icon-button {
|
|
|
|
top: 12px;
|
|
|
|
}
|
|
|
|
|
2020-08-28 18:17:19 +00:00
|
|
|
textarea {
|
|
|
|
width: 100%;
|
2020-08-28 20:38:38 +00:00
|
|
|
height: 100%;
|
2020-08-28 18:17:19 +00:00
|
|
|
margin: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 6px;
|
2020-09-06 02:48:25 +00:00
|
|
|
padding-right: 25px;
|
2020-08-28 18:17:19 +00:00
|
|
|
background: var(--background-color);
|
|
|
|
border: 0;
|
|
|
|
border-radius: 6px;
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
font-size: 15px;
|
2020-09-06 02:48:25 +00:00
|
|
|
overflow: hidden;
|
2020-08-28 18:17:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-28 18:27:40 +00:00
|
|
|
|
2020-08-28 19:42:58 +00:00
|
|
|
.ui--chatroom {
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
|
|
|
.columns-area__panels__main .columns-area {
|
|
|
|
height: calc(100vh - 100px);
|
|
|
|
box-sizing: border-box;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
@media(max-width: 630px) {
|
|
|
|
height: calc(100vh - 50px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.page {
|
|
|
|
.chat-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow: hidden;
|
2020-08-28 20:06:55 +00:00
|
|
|
flex: 1;
|
2020-08-28 20:38:38 +00:00
|
|
|
border-radius: 0 0 10px 10px;
|
|
|
|
|
|
|
|
&__actions textarea {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
2020-08-28 19:42:58 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-28 18:27:40 +00:00
|
|
|
}
|
2020-08-28 20:22:33 +00:00
|
|
|
|
|
|
|
@media(max-width: 630px) {
|
|
|
|
.chat-panes {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media(min-width: 630px) {
|
|
|
|
.tabs-bar .tabs-bar__link--chats {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2020-08-28 21:26:42 +00:00
|
|
|
|
|
|
|
.chatroom__header {
|
|
|
|
display: flex;
|
|
|
|
margin-left: auto;
|
|
|
|
padding-right: 15px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.account__avatar {
|
|
|
|
margin-right: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatroom__title {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
flex: 1;
|
|
|
|
height: 100%;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
2020-09-03 18:03:30 +00:00
|
|
|
color: var(--primary-text-color);
|
2020-08-28 21:26:42 +00:00
|
|
|
font-weight: bold;
|
|
|
|
text-align: left;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatroom__back {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
background: var(--accent-color--faint);
|
|
|
|
border-radius: 10px 10px 0 0;
|
|
|
|
|
|
|
|
.column-back-button {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
}
|
2020-08-31 00:31:09 +00:00
|
|
|
|
|
|
|
.chat {
|
|
|
|
&__last-message {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2020-09-01 05:05:00 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--highlight-text-color);
|
|
|
|
}
|
2020-08-31 00:31:09 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-05 01:17:03 +00:00
|
|
|
|
2020-09-05 21:39:57 +00:00
|
|
|
.chat-message .media-gallery {
|
2020-09-06 21:50:54 +00:00
|
|
|
height: auto !important;
|
2020-09-06 19:15:06 +00:00
|
|
|
margin: 4px 0 8px;
|
2020-09-05 21:39:57 +00:00
|
|
|
|
|
|
|
.spoiler-button {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-09-06 22:20:26 +00:00
|
|
|
.media-gallery__item:not(.media-gallery__item--image) {
|
|
|
|
max-width: 100%;
|
|
|
|
width: 120px !important;
|
|
|
|
height: 70px !important;
|
|
|
|
}
|
|
|
|
|
2020-09-06 21:50:54 +00:00
|
|
|
&__preview {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2020-09-05 21:39:57 +00:00
|
|
|
&__item-thumbnail img,
|
|
|
|
&__item-thumbnail .still-image img {
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
2020-09-05 01:17:03 +00:00
|
|
|
}
|