2022-08-08 15:32:29 +00:00
|
|
|
@import 'shared/assets/stylesheets/animations';
|
|
|
|
|
2019-11-27 06:15:33 +00:00
|
|
|
@import 'reset';
|
2020-10-18 18:02:22 +00:00
|
|
|
@import 'tailwindcss/base';
|
|
|
|
@import 'tailwindcss/components';
|
|
|
|
@import 'tailwindcss/utilities';
|
2019-10-29 07:20:54 +00:00
|
|
|
@import 'variables';
|
|
|
|
@import 'buttons';
|
|
|
|
@import 'mixins';
|
|
|
|
@import 'forms';
|
2021-11-18 09:48:51 +00:00
|
|
|
@import 'utilities';
|
2020-09-03 07:47:45 +00:00
|
|
|
@import 'shared/assets/fonts/widget_fonts';
|
2020-01-09 07:36:40 +00:00
|
|
|
@import '~spinkit/scss/spinners/7-three-bounce';
|
2021-11-19 10:39:20 +00:00
|
|
|
@import 'views/conversation';
|
2019-10-29 07:20:54 +00:00
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
2019-11-28 05:33:01 +00:00
|
|
|
font-family: $font-family;
|
2020-08-28 12:09:46 +00:00
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
2019-10-29 07:20:54 +00:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2020-03-07 18:09:41 +00:00
|
|
|
.is-mobile {
|
2021-08-07 06:26:15 +00:00
|
|
|
display: block;
|
|
|
|
|
2020-08-28 12:09:46 +00:00
|
|
|
.actions {
|
2020-03-07 18:09:41 +00:00
|
|
|
.close-button {
|
|
|
|
display: block !important;
|
|
|
|
}
|
2020-08-28 12:09:46 +00:00
|
|
|
|
|
|
|
.new-window--button {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2020-03-07 18:09:41 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-11 04:27:42 +00:00
|
|
|
|
2020-11-23 05:19:28 +00:00
|
|
|
.is-bubble-hidden {
|
|
|
|
.actions {
|
|
|
|
.close-button {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-11 04:27:42 +00:00
|
|
|
.cursor-pointer {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2021-01-18 19:35:15 +00:00
|
|
|
|
|
|
|
.message-content {
|
|
|
|
ul {
|
|
|
|
list-style: disc;
|
|
|
|
padding-left: $space-slab;
|
|
|
|
}
|
|
|
|
|
|
|
|
ol {
|
|
|
|
list-style: decimal;
|
|
|
|
padding-left: $space-normal;
|
|
|
|
}
|
|
|
|
}
|
2022-02-25 10:48:18 +00:00
|
|
|
|
|
|
|
.is-flat-design {
|
|
|
|
.chat-bubble {
|
|
|
|
border-bottom-left-radius: 0 !important;
|
|
|
|
border-bottom-right-radius: 0 !important;
|
|
|
|
border-top-left-radius: 0 !important;
|
|
|
|
border-top-right-radius: 0 !important;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
border-radius: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-message--input {
|
|
|
|
border-radius: 0 !important;
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
|
|
|
&.is-focused {
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|