|
@@ -0,0 +1,41 @@
|
|
|
+@import "bootstrap/scss/functions";
|
|
|
+@import "bootstrap/scss/variables";
|
|
|
+@import "bootstrap/scss/mixins";
|
|
|
+@import "bootstrap/scss/media";
|
|
|
+
|
|
|
+
|
|
|
+.conversejs {
|
|
|
+ converse-chats.converse-embedded,
|
|
|
+ converse-chats.converse-fullscreen {
|
|
|
+ &.converse-singleton {
|
|
|
+ .flyout {
|
|
|
+ border: none !important;
|
|
|
+ }
|
|
|
+ .chat-head {
|
|
|
+ padding: 0.5em;
|
|
|
+ }
|
|
|
+ .chatbox {
|
|
|
+ margin: 0;
|
|
|
+ position: relative;
|
|
|
+ margin-left: -15px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ converse-chats.converse-fullscreen {
|
|
|
+ &.converse-singleton {
|
|
|
+ .chatbox {
|
|
|
+ @include make-col-ready();
|
|
|
+ @include media-breakpoint-up(md) {
|
|
|
+ @include make-col(12);
|
|
|
+ }
|
|
|
+ @include media-breakpoint-up(lg) {
|
|
|
+ @include make-col(12);
|
|
|
+ }
|
|
|
+ @include media-breakpoint-up(xl) {
|
|
|
+ @include make-col(12);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|