Skip to content
Snippets Groups Projects
Commit e3eb5bf4 authored by Nicolas Lempereur's avatar Nicolas Lempereur
Browse files

[FIX] website_sale: wrap unbreakable product name in td


91937764 added new selector to target other location where product name
could break the interface on short screen or with long unbreakable word
in title.

But there is some use case missing where overflow-wrap doesn't work and
word-wrap doesn't. Also adding overflow-wrap since word-wrap is
deprecated.

opw-2451496

closes odoo/odoo#66257

Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
parent 33ec55d8
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,9 @@
}
h1[itemprop="name"], .oe_product_cart form h6, .td-product_name {
word-break: break-word;
word-wrap: break-word;
overflow-wrap: break-word;
}
@include media-breakpoint-down(sm) {
......
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