2018-02-27 17:20:49 +01:00
|
|
|
#chat {
|
|
|
|
font-family: Arial;
|
|
|
|
font-size: 12px;
|
|
|
|
/*white-space: pre;*/
|
|
|
|
line-height: 1;
|
|
|
|
padding: 2px;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-11-03 12:16:13 +01:00
|
|
|
|
|
|
|
flex-grow: 1;
|
2018-02-27 17:20:49 +01:00
|
|
|
|
2019-02-09 17:43:34 +01:00
|
|
|
div, a {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2018-02-27 17:20:49 +01:00
|
|
|
|
2019-02-09 17:43:34 +01:00
|
|
|
.messages {
|
|
|
|
border-color: #6f6f6f;
|
|
|
|
border-radius: 2px 2px 2px 0;
|
|
|
|
border-style: solid;
|
|
|
|
overflow-y: auto;
|
|
|
|
flex-grow: 1;
|
2018-02-27 17:20:49 +01:00
|
|
|
|
2019-02-09 17:43:34 +01:00
|
|
|
.message_box {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
height: auto;
|
2018-02-27 17:20:49 +01:00
|
|
|
|
2019-02-09 17:43:34 +01:00
|
|
|
.message {
|
|
|
|
width: 100%;
|
|
|
|
display: inline-block;
|
2018-02-27 17:20:49 +01:00
|
|
|
|
2019-02-09 17:43:34 +01:00
|
|
|
* {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-27 17:20:49 +01:00
|
|
|
|
|
|
|
|
2019-02-09 17:43:34 +01:00
|
|
|
.chats {
|
|
|
|
max-width: 100%;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
/*height: 24px;*/
|
|
|
|
overflow: auto;
|
|
|
|
overflow-y: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
margin-top: -1px;
|
|
|
|
display: flex;
|
|
|
|
user-select: none;
|
2018-02-27 17:20:49 +01:00
|
|
|
|
2019-02-09 17:43:34 +01:00
|
|
|
.chat {
|
|
|
|
background: #5f5f5f5f;
|
|
|
|
display: inline-block;
|
|
|
|
border: 1px solid #6f6f6f;
|
|
|
|
border-radius: 0px 0px 2px 2px;
|
|
|
|
vertical-align: middle;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-left: 2px;
|
|
|
|
cursor: pointer;
|
2018-02-27 17:20:49 +01:00
|
|
|
|
2019-02-09 17:43:34 +01:00
|
|
|
&.active {
|
|
|
|
background: #11111111;
|
|
|
|
}
|
2018-02-27 17:20:49 +01:00
|
|
|
|
2019-02-09 17:43:34 +01:00
|
|
|
.btn_close {
|
|
|
|
float: none;
|
|
|
|
margin-right: -5px;
|
|
|
|
margin-left: 8px;
|
2018-02-27 17:20:49 +01:00
|
|
|
|
2019-02-09 17:43:34 +01:00
|
|
|
&:hover, &:focus {
|
|
|
|
color: black;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-27 17:20:49 +01:00
|
|
|
|
2019-02-09 17:43:34 +01:00
|
|
|
.input {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
height: auto;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 2px;
|
|
|
|
position: relative;
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
|
|
.bmd-form-group {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2018-02-27 17:20:49 +01:00
|
|
|
|
2019-02-09 17:43:34 +01:00
|
|
|
margin-right: 5px;
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-group {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
margin: 0 5px 0 0;
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
height: 30px;
|
|
|
|
min-height: 30px;
|
|
|
|
max-height: 80px;
|
|
|
|
|
|
|
|
resize: vertical;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
padding-top: 1px;
|
|
|
|
padding-bottom: 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|