2018-01-23 20:47:16 +01:00
|
|
|
#conversejs.fullscreen {
|
2017-06-13 21:07:42 +02:00
|
|
|
.chatbox-btn {
|
|
|
|
font-size: $font-size-large;
|
2017-06-14 11:14:42 +02:00
|
|
|
margin: 0 0.3em;
|
2017-06-13 21:07:42 +02:00
|
|
|
}
|
|
|
|
.flyout {
|
2018-02-20 16:41:55 +01:00
|
|
|
border-radius: 0;
|
2017-06-17 23:48:46 +02:00
|
|
|
border: $flyout-padding solid $chat-head-color;
|
2017-06-13 21:07:42 +02:00
|
|
|
border-top: 0.8em solid $chat-head-color;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
.chat-head {
|
|
|
|
font-size: 20px;
|
|
|
|
padding: 0;
|
|
|
|
.user-custom-message {
|
2018-03-06 23:49:39 +01:00
|
|
|
font-size: 50%;
|
2017-06-13 21:07:42 +02:00
|
|
|
height: auto;
|
|
|
|
line-height: $line-height;
|
|
|
|
}
|
2017-06-14 11:14:42 +02:00
|
|
|
&.chat-head-chatbox {
|
|
|
|
.close-chatbox-button {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2017-06-13 21:07:42 +02:00
|
|
|
}
|
|
|
|
.chatbox {
|
2018-01-25 12:14:20 +01:00
|
|
|
width: 100%;
|
2017-06-13 21:07:42 +02:00
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
2018-03-09 10:12:05 +01:00
|
|
|
|
|
|
|
@include make-col-ready();
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
@include make-col(9);
|
|
|
|
}
|
|
|
|
@include media-breakpoint-up(xl) {
|
2018-03-09 11:02:28 +01:00
|
|
|
@include make-col(10);
|
2018-03-09 10:12:05 +01:00
|
|
|
}
|
|
|
|
|
2017-06-13 21:07:42 +02:00
|
|
|
.box-flyout {
|
2017-06-14 11:14:42 +02:00
|
|
|
background-color: $chat-head-color;
|
2018-01-25 12:14:20 +01:00
|
|
|
height: 100vh;
|
|
|
|
width: 100%;
|
2017-06-13 21:07:42 +02:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
2017-06-14 11:14:42 +02:00
|
|
|
.chat-body {
|
|
|
|
background-color: $chat-head-color;
|
|
|
|
border-top-left-radius: $chatbox-border-radius;
|
|
|
|
border-top-right-radius: $chatbox-border-radius;
|
2017-06-17 23:48:46 +02:00
|
|
|
|
|
|
|
.chat-message {
|
2017-07-18 08:56:25 +02:00
|
|
|
line-height: $line-height;
|
2017-06-18 00:29:59 +02:00
|
|
|
font-size: $font-size-small;
|
2018-01-16 17:08:44 +01:00
|
|
|
padding: 0.4em 0;
|
2017-07-17 14:36:27 +02:00
|
|
|
.chat-msg-author {
|
|
|
|
line-height: $line-height;
|
|
|
|
}
|
|
|
|
.chat-msg-content {
|
|
|
|
line-height: $line-height;
|
2017-09-02 19:59:48 +02:00
|
|
|
.emojione {
|
|
|
|
height: $line-height;
|
|
|
|
margin-bottom: -$line-height/4;
|
|
|
|
}
|
2017-07-17 14:36:27 +02:00
|
|
|
}
|
2017-06-17 23:48:46 +02:00
|
|
|
}
|
2017-06-14 11:14:42 +02:00
|
|
|
}
|
2017-06-13 21:07:42 +02:00
|
|
|
.chat-content {
|
|
|
|
padding: 0 $padding $padding $padding;
|
2017-06-14 11:14:42 +02:00
|
|
|
border-top-left-radius: $chatbox-border-radius;
|
|
|
|
border-top-right-radius: $chatbox-border-radius;
|
2017-06-13 21:07:42 +02:00
|
|
|
}
|
|
|
|
.chat-title {
|
2017-06-14 11:14:42 +02:00
|
|
|
font-size: $font-size-huge;
|
2018-01-27 10:07:54 +01:00
|
|
|
line-height: $line-height-huge;
|
2017-06-13 21:07:42 +02:00
|
|
|
}
|
|
|
|
|
2018-01-25 16:30:47 +01:00
|
|
|
.sendXMPPMessage {
|
2017-06-13 21:07:42 +02:00
|
|
|
ul {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.toggle-smiley {
|
|
|
|
padding-left: 0.5em;
|
|
|
|
ul {
|
2017-07-17 18:07:35 +02:00
|
|
|
&.emoji-toolbar {
|
2017-07-17 22:01:23 +02:00
|
|
|
.emoji-category-picker {
|
|
|
|
margin-right: 5em;
|
|
|
|
}
|
2017-06-24 11:38:39 +02:00
|
|
|
.emoji-category {
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
2017-06-13 21:07:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-26 14:41:06 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 767px) {
|
|
|
|
#conversejs.fullscreen {
|
|
|
|
.chatbox {
|
2018-01-26 20:50:11 +01:00
|
|
|
width: calc(100% - 50px);
|
2018-01-26 14:41:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|