[IMP] web_responsive: Made chatter input & attachments scrollable

pull/1390/head
Alexandre Díaz 2019-10-08 18:47:54 +02:00
parent 14ddc06b7b
commit b357b7d70f
1 changed files with 10 additions and 0 deletions

View File

@ -506,6 +506,16 @@ html .o_web_client .o_action_manager .o_action {
z-index: 1; z-index: 1;
overflow-x: auto; overflow-x: auto;
// Scrollable input text to avoid hide conversation & buttons
.o_composer_text_field {
max-height: 120px;
overflow-y: auto !important; /* Forced because Odoo uses inline style */
}
.o_attachments_list {
overflow: auto;
max-height: $o-mail-attachment-image-size * 3;
margin-top: 0.4em;
}
.o_attachments_previews { .o_attachments_previews {
overflow: auto; overflow: auto;
max-height: $o-mail-attachment-image-size * 6; max-height: $o-mail-attachment-image-size * 6;