summaryrefslogtreecommitdiff
path: root/addons/im_livechat/static/src/scss
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/im_livechat/static/src/scss
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/im_livechat/static/src/scss')
-rw-r--r--addons/im_livechat/static/src/scss/im_livechat_bootstrap.scss35
-rw-r--r--addons/im_livechat/static/src/scss/im_livechat_form.scss21
-rw-r--r--addons/im_livechat/static/src/scss/im_livechat_history.scss39
3 files changed, 95 insertions, 0 deletions
diff --git a/addons/im_livechat/static/src/scss/im_livechat_bootstrap.scss b/addons/im_livechat/static/src/scss/im_livechat_bootstrap.scss
new file mode 100644
index 00000000..dddf5baa
--- /dev/null
+++ b/addons/im_livechat/static/src/scss/im_livechat_bootstrap.scss
@@ -0,0 +1,35 @@
+.text-muted {
+ color: gray('600');
+}
+
+.text-left {
+ text-align: left;
+}
+
+.text-center {
+ text-align: center;
+}
+
+.o_thread_window {
+ &,* {
+ box-sizing: border-box;
+ }
+ .o_thread_window_header {
+ height: 28px;
+ .fa-close {
+ text-decoration: none;
+ font-weight: bold;
+ &:before {
+ content: "\00d7";
+ font-size: initial;
+ }
+ }
+ > span {
+ margin: auto 0;
+ }
+ }
+
+ .o_email_chat_button:after {
+ content:' \27A4';
+ }
+}
diff --git a/addons/im_livechat/static/src/scss/im_livechat_form.scss b/addons/im_livechat/static/src/scss/im_livechat_form.scss
new file mode 100644
index 00000000..808e5ba8
--- /dev/null
+++ b/addons/im_livechat/static/src/scss/im_livechat_form.scss
@@ -0,0 +1,21 @@
+.o_livechat_rules_form {
+ .o_form_sheet_bg {
+ .o_form_sheet {
+ min-height: unset;
+ }
+ }
+}
+
+.o_livechat_layout_colors {
+ vertical-align: middle;
+ align-items: center;
+}
+
+.o_form_view .o_group {
+ // long selector in order to be more specific...
+ .o_im_livechat_field_widget_color {
+ width: 30px;
+ margin: 0 5px 0 0;
+ }
+}
+
diff --git a/addons/im_livechat/static/src/scss/im_livechat_history.scss b/addons/im_livechat/static/src/scss/im_livechat_history.scss
new file mode 100644
index 00000000..ee4d6b4f
--- /dev/null
+++ b/addons/im_livechat/static/src/scss/im_livechat_history.scss
@@ -0,0 +1,39 @@
+.o_history_container{
+ table-layout: fixed;
+ width: 200% !important;
+ > tbody > tr > td {
+ padding: 0px !important;
+ }
+ .o_history_kanban_container {
+ text-align:center;
+ .o_history_kanban_sub_container {
+ .o_kanban_ungrouped {
+ flex-flow: column;
+ max-height:500px;
+ overflow:auto;
+ padding:2px 0px;
+ .rounded-circle {
+ width:32px;
+ height: 32px;
+ }
+ .o_kanban_record {
+ padding: 0px 8px;
+ margin: -1px 8px;
+ min-width: 300px;
+ width: 98%;
+ word-break: break-all;
+ }
+ }
+ .oe_module_vignette {
+ text-align:left;
+ }
+ .o_kanban_image {
+ padding-top: 8px;
+ }
+ .oe_module_desc {
+ padding: 8px 8px 0px 64px;
+ }
+ }
+
+ }
+}