2019-11-01 04:03:57 +00:00
|
|
|
@charset 'utf-s';
|
|
|
|
:host {
|
2019-10-31 10:17:29 +00:00
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2019-11-01 04:03:57 +00:00
|
|
|
@mixin ellipsis($row) {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
@if $row == 1 {
|
2019-10-31 10:17:29 +00:00
|
|
|
display: block;
|
2019-11-01 04:03:57 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
word-wrap: normal;
|
|
|
|
} @else if $row >= 2 {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: $row;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
word-wrap: break-word;
|
2019-10-31 10:17:29 +00:00
|
|
|
}
|
2019-11-01 04:03:57 +00:00
|
|
|
}
|
2019-11-01 06:06:37 +00:00
|
|
|
.container {
|
2019-11-01 04:03:57 +00:00
|
|
|
position: relative;
|
2019-11-01 06:06:37 +00:00
|
|
|
width: 100%;
|
2019-11-01 04:03:57 +00:00
|
|
|
}
|
|
|
|
.chat-toolbar {
|
2019-11-01 06:06:37 +00:00
|
|
|
width: 100%;
|
2019-11-26 04:51:19 +00:00
|
|
|
height: 70px;
|
|
|
|
min-height: 70px;
|
2019-11-01 04:03:57 +00:00
|
|
|
align-items: center;
|
|
|
|
background-color: #ffffff !important;
|
2019-11-07 23:58:22 +00:00
|
|
|
border-bottom: 1px solid #dddddd;
|
2019-11-20 09:04:24 +00:00
|
|
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
|
2019-11-01 04:03:57 +00:00
|
|
|
.chat-header {
|
|
|
|
width: 100%;
|
|
|
|
align-items: center;
|
2019-10-31 10:17:29 +00:00
|
|
|
display: flex;
|
2019-11-01 04:03:57 +00:00
|
|
|
justify-content: space-between;
|
2019-10-31 10:17:29 +00:00
|
|
|
.profile-img {
|
2019-11-07 23:58:22 +00:00
|
|
|
margin-right: 16px;
|
2019-11-01 04:03:57 +00:00
|
|
|
.responsive-chats-button {
|
|
|
|
display: none;
|
|
|
|
&:last-child {
|
|
|
|
display: block;
|
|
|
|
padding: 0;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
border-radius: 50%;
|
|
|
|
color: #efefef;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 40px;
|
|
|
|
}
|
2019-10-31 10:17:29 +00:00
|
|
|
}
|
2019-12-30 10:19:39 +00:00
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
&.thumbnail-mask {
|
|
|
|
border-radius: 50%;
|
|
|
|
overflow: hidden;
|
|
|
|
img {
|
|
|
|
width: 50px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
2019-10-31 10:17:29 +00:00
|
|
|
}
|
2019-11-01 04:03:57 +00:00
|
|
|
.room-info {
|
2019-11-01 06:06:37 +00:00
|
|
|
display: flex;
|
2019-11-01 04:03:57 +00:00
|
|
|
flex-flow: column;
|
|
|
|
overflow: hidden;
|
|
|
|
.room-name {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: normal;
|
|
|
|
@include ellipsis(1);
|
2019-10-31 10:17:29 +00:00
|
|
|
}
|
2019-11-01 04:03:57 +00:00
|
|
|
.room-type {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: normal;
|
|
|
|
margin-top: 6px;
|
2019-11-01 06:06:37 +00:00
|
|
|
height: 20px;
|
|
|
|
span {
|
|
|
|
border-radius: 10px;
|
2019-11-11 02:42:08 +00:00
|
|
|
padding: 2px 10px;
|
2019-11-01 06:06:37 +00:00
|
|
|
margin-right: 6px;
|
|
|
|
font-size: 13px;
|
2019-11-01 04:03:57 +00:00
|
|
|
}
|
2019-10-31 10:17:29 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-01 04:03:57 +00:00
|
|
|
.room-option {
|
|
|
|
margin-left: auto;
|
2019-10-31 10:17:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-17 00:18:48 +00:00
|
|
|
|
2019-11-01 04:03:57 +00:00
|
|
|
.chat-content {
|
2019-11-01 06:06:37 +00:00
|
|
|
position: relative;
|
|
|
|
background: transparent;
|
2019-11-01 04:03:57 +00:00
|
|
|
overflow: auto;
|
2019-11-01 06:06:37 +00:00
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
|
|
|
|
.file-drop-zone-container {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2019-11-05 04:46:17 +00:00
|
|
|
background-color: transparent;
|
2019-11-01 06:06:37 +00:00
|
|
|
|
|
|
|
.file-drop-zone {
|
|
|
|
position: absolute;
|
2019-11-20 09:04:24 +00:00
|
|
|
padding: 10px 10px 0 10px;
|
2019-11-13 08:46:25 +00:00
|
|
|
background-color: rgb(54, 54, 54, 0.8);
|
2019-11-20 09:04:24 +00:00
|
|
|
bottom: 0;
|
2019-11-20 09:06:42 +00:00
|
|
|
width: 100%;
|
2019-11-20 09:04:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sticker-selector-container {
|
|
|
|
position: absolute;
|
2019-11-25 05:12:49 +00:00
|
|
|
bottom: 0;
|
2019-11-20 09:04:24 +00:00
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
background-color: transparent;
|
|
|
|
|
2019-11-20 09:06:42 +00:00
|
|
|
.sticker-selector-zone {
|
2019-11-20 09:04:24 +00:00
|
|
|
position: absolute;
|
|
|
|
padding: 10px 10px 0 10px;
|
2019-11-25 05:12:49 +00:00
|
|
|
background-color: rgba(250, 255, 255, 0.8);
|
2019-11-20 09:04:24 +00:00
|
|
|
bottom: 0;
|
2019-11-20 09:06:42 +00:00
|
|
|
width: 100%;
|
2019-11-01 06:06:37 +00:00
|
|
|
}
|
|
|
|
}
|
2019-12-31 05:36:32 +00:00
|
|
|
|
|
|
|
.translation-container {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
|
|
.translation-zone {
|
|
|
|
position: absolute;
|
|
|
|
padding: 10px 10px 0 10px;
|
|
|
|
background-color: rgba(250, 255, 255, 0.8);
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2019-09-23 05:23:24 +00:00
|
|
|
}
|
2019-11-07 04:14:44 +00:00
|
|
|
|
|
|
|
::ng-deep .chat-snackbar-class {
|
|
|
|
.mat-simple-snackbar {
|
|
|
|
span {
|
|
|
|
@include ellipsis(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-26 02:39:02 +00:00
|
|
|
|
|
|
|
.char-search {
|
|
|
|
width: 100%;
|
|
|
|
height: 80px;
|
|
|
|
background-color: #ffffff;
|
|
|
|
padding: 20px;
|
|
|
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
|
|
|
|
border-bottom: 1px solid #dddddd;
|
|
|
|
}
|