2019-10-21 04:20:14 +00:00
|
|
|
@charset 'utf-8';
|
|
|
|
@import '../../../../assets/scss/global/common';
|
2019-09-23 05:23:24 +00:00
|
|
|
:host {
|
|
|
|
display: flex;
|
2019-09-26 05:38:21 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
.container {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2019-09-23 05:23:24 +00:00
|
|
|
|
|
|
|
.chat-toolbar {
|
2019-10-21 04:20:14 +00:00
|
|
|
height: 70px;
|
|
|
|
min-height: 70px;
|
|
|
|
border-bottom: $line-basic;
|
|
|
|
background-color:#ffffff;
|
|
|
|
.chat-header{
|
|
|
|
width:100%;
|
|
|
|
.responsive-chats-button {
|
|
|
|
padding: 0;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: #252525;
|
|
|
|
color: #efefef;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 100;
|
|
|
|
line-height: 40px;
|
|
|
|
}
|
|
|
|
.room-name{
|
|
|
|
font-size:16px;
|
|
|
|
padding:0 10px;
|
|
|
|
@include ellipsis(1)
|
|
|
|
}
|
|
|
|
.room-option{
|
|
|
|
width:100px;
|
|
|
|
margin-left:auto;
|
|
|
|
}
|
2019-09-23 05:23:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-26 05:38:21 +00:00
|
|
|
.chat-content {
|
2019-09-23 05:23:24 +00:00
|
|
|
background: transparent;
|
|
|
|
overflow: auto;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
2019-10-21 04:36:58 +00:00
|
|
|
|
|
|
|
.file-drop-zone-container {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.file-drop-zone {
|
|
|
|
position: absolute;
|
|
|
|
border: 2px solid gray;
|
|
|
|
background-color: white;
|
|
|
|
width: 600px;
|
|
|
|
height: 150px;
|
|
|
|
bottom: 0px;
|
|
|
|
margin: auto;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
}
|
|
|
|
}
|
2019-09-23 05:23:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|