Browse Source

[IMP] web_responsive: Chatter on small screen

pull/1279/merge
Alexandre Díaz 5 years ago
committed by OCA-git-bot
parent
commit
4c9a89ab73
  1. BIN
      web_responsive/static/img/chatter.gif
  2. 34
      web_responsive/static/src/css/web_responsive.scss

BIN
web_responsive/static/img/chatter.gif

After

Width: 1324  |  Height: 736  |  Size: 2.5 MiB

34
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;
}
}
}
}
}
}
}

Loading…
Cancel
Save