Skip to content
Snippets Groups Projects
Commit e471fd82 authored by Antoine Guenet's avatar Antoine Guenet
Browse files

[FIX] web_editor: preserve aspect ratio on non-responsive images

Since Bootstrap responsive behavior can't be guaranteed, we have to make
sure that images that didn't keep their original dimensions preserve
their aspect ratio. This can be achieved with the `object-fit: cover`
CSS property. We apply this on images that are not responsive and that
are alone in a div because these are the ones at risk.

opw-3244705
task-3334591

Part-of: odoo/odoo#125146
parent 76116f22
No related branches found
No related tags found
No related merge requests found
......@@ -510,6 +510,10 @@ function toInline($editable, cssRules, $iframe) {
centeredImage.parentElement.style.setProperty('text-align', 'center');
}
}
// Ensure preservation of aspect-ratio.
for (const loneImage of editable.querySelectorAll('img:only-child:not(.img-fluid,[data-class*=fa-])')) {
loneImage.style.setProperty('object-fit', 'cover');
}
// Fix img-fluid.
for (const image of editable.querySelectorAll('img.img-fluid')) {
// Outlook requires absolute width/height.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment