Skip to content
Snippets Groups Projects
Commit 352e868f authored by Didier (did)'s avatar Didier (did)
Browse files

[FIX] mail: fix image width inside the chatter


Web editor hard code the width inside the image html. This `max-width`
constraint the image inside the chatter and avoid unwanted horizontal scrollbar.

task-2389432

closes odoo/odoo#62073

Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
parent e07757b1
Branches
Tags
No related merge requests found
......@@ -56,6 +56,11 @@
> p:last-of-type {
margin-bottom: 0;
}
img {
max-width: 100%;
height: auto;
}
}
.o_Message_core {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment