2020-08-22 09:44:10 +03:00
|
|
|
#chat-container {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 9;
|
|
|
|
top: var(--header-height);
|
|
|
|
right: 0;
|
|
|
|
width: var(--right-col-width);
|
|
|
|
|
|
|
|
height: calc(100vh - var(--header-height));
|
|
|
|
}
|
|
|
|
|
|
|
|
.touch-screen #chat-container {
|
|
|
|
height: calc(100vh - var(--header-height) - 3vh);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.no-chat #chat-container-wrap {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat #chat-container-wrap {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-22 01:55:52 +03:00
|
|
|
/******************************/
|
|
|
|
/******************************/
|
2020-08-24 04:33:19 +03:00
|
|
|
|
2020-08-22 01:55:52 +03:00
|
|
|
#message-input img {
|
|
|
|
display: inline;
|
|
|
|
vertical-align: middle;
|
2020-08-22 09:44:10 +03:00
|
|
|
padding: .25rem;
|
2020-08-22 01:55:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#message-input .emoji {
|
2020-08-22 09:44:10 +03:00
|
|
|
width: 2.2rem;
|
|
|
|
padding: .25rem;
|
2020-08-22 01:55:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* If the div is empty then show the placeholder */
|
|
|
|
#message-input:empty:before{
|
|
|
|
content: attr(placeholderText);
|
|
|
|
pointer-events: none;
|
|
|
|
display: block; /* For Firefox */
|
|
|
|
color: rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* When chat is enabled (contenteditable=true) */
|
|
|
|
#message-input[contenteditable=true]:before {
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* When chat is disabled (contenteditable=false) chat input div should appear disabled. */
|
|
|
|
#message-input:disabled,
|
|
|
|
#message-input[contenteditable=false] {
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
/******************************/
|
|
|
|
/******************************/
|
|
|
|
|
|
|
|
|
2020-08-20 00:46:20 +03:00
|
|
|
.emoji-picker__emoji {
|
2020-08-24 05:37:06 +03:00
|
|
|
border-radius: 5px;
|
2020-08-20 00:46:20 +03:00
|
|
|
}
|
2020-08-13 11:28:25 +03:00
|
|
|
|
2020-08-13 12:43:41 +03:00
|
|
|
|
2020-08-13 11:28:25 +03:00
|
|
|
.message-avatar {
|
2020-08-22 09:44:10 +03:00
|
|
|
height: 3.0em;
|
|
|
|
width: 3.0em;
|
2020-08-13 11:28:25 +03:00
|
|
|
}
|
|
|
|
.message-avatar img {
|
|
|
|
max-width: unset;
|
|
|
|
height: 3.0em;
|
|
|
|
width: 3.0em;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-content {
|
|
|
|
}
|
2020-08-19 10:16:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-08-22 09:44:10 +03:00
|
|
|
/* MESSAGE TEXT HTML */
|
|
|
|
/* MESSAGE TEXT HTML */
|
|
|
|
/* MESSAGE TEXT HTML */
|
2020-08-19 10:16:35 +03:00
|
|
|
.message-text a {
|
2020-08-13 11:28:25 +03:00
|
|
|
color: #7F9CF5; /* indigo-400 */
|
|
|
|
}
|
2020-08-19 10:16:35 +03:00
|
|
|
.message-text a:hover {
|
2020-08-13 11:28:25 +03:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2020-08-19 10:16:35 +03:00
|
|
|
.message-text img {
|
|
|
|
display: inline;
|
2020-08-22 09:44:10 +03:00
|
|
|
padding-left: 0 .25rem;
|
2020-08-13 12:43:41 +03:00
|
|
|
}
|
|
|
|
|
2020-08-22 09:44:10 +03:00
|
|
|
|
2020-08-19 10:16:35 +03:00
|
|
|
|
|
|
|
.message-text .emoji {
|
2020-08-22 09:44:10 +03:00
|
|
|
width: 3rem;
|
|
|
|
padding: .25rem
|
2020-08-13 12:43:41 +03:00
|
|
|
}
|
|
|
|
|
2020-08-22 09:44:10 +03:00
|
|
|
.message-text code {
|
|
|
|
font-family: monospace;
|
|
|
|
background-color:darkslategrey;
|
|
|
|
padding: .25rem;
|
|
|
|
}
|
2020-08-19 10:16:35 +03:00
|
|
|
|
2020-08-22 10:09:01 +03:00
|
|
|
|
|
|
|
|
|
|
|
.message-text .chat-embed {
|
2020-08-13 12:43:41 +03:00
|
|
|
width: 100%;
|
2020-08-22 10:09:01 +03:00
|
|
|
border-radius: .25rem;
|
2020-08-13 12:43:41 +03:00
|
|
|
}
|
|
|
|
|
2020-08-19 10:16:35 +03:00
|
|
|
.message-text .instagram-embed {
|
2020-08-22 10:09:01 +03:00
|
|
|
height: 24rem;
|
2020-08-13 12:43:41 +03:00
|
|
|
}
|
|
|
|
|
2020-08-22 10:09:01 +03:00
|
|
|
|
2020-08-13 12:43:41 +03:00
|
|
|
.message-text .embedded-image {
|
|
|
|
width: 100%;
|
2020-08-22 09:44:10 +03:00
|
|
|
display: block;
|
2020-08-22 10:09:01 +03:00
|
|
|
/* height: 15rem; */
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-text .youtube-embed {
|
|
|
|
width: 100%;
|
|
|
|
height: 12rem;
|
2020-08-13 12:43:41 +03:00
|
|
|
}
|
|
|
|
|
2020-08-19 10:16:35 +03:00
|
|
|
/* MESSAGE TEXT CONTENT */
|
|
|
|
/* MESSAGE TEXT CONTENT */
|
|
|
|
/* MESSAGE TEXT CONTENT */
|
|
|
|
/* MESSAGE TEXT CONTENT */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-08-13 12:43:41 +03:00
|
|
|
|
|
|
|
|
2020-08-17 19:00:36 +03:00
|
|
|
|
|
|
|
|