diff --git a/web_responsive/static/img/chatter.gif b/web_responsive/static/img/chatter.gif new file mode 100644 index 00000000..0a2af93d Binary files /dev/null and b/web_responsive/static/img/chatter.gif differ diff --git a/web_responsive/static/src/css/web_responsive.scss b/web_responsive/static/src/css/web_responsive.scss index 432c8913..b61c6c2a 100644 --- a/web_responsive/static/src/css/web_responsive.scss +++ b/web_responsive/static/src/css/web_responsive.scss @@ -423,6 +423,40 @@ html .o_web_client .o_main .o_main_content { margin: 0; } } + + .o_chatter { + // Display send button on small screens + .o_thread_composer { + padding-left: $o-mail-thread-avatar-size*0.5; + + .o_composer_button_send { + display: initial !important; // Forced in core + } + .o_chatter_avatar { + display: none; + } + } + + .o_chatter_topbar { + height: auto; + flex-wrap: wrap-reverse; + + > .o_topbar_right_area { + flex: 1 0 auto; + flex-wrap: wrap; + max-width: 100%; + + // Display followers on small screens + .o_followers { + display: initial !important; // Forced in core + + @include media-breakpoint-down(xs) { + padding-bottom: 50px; + } + } + } + } + } } }