Skip to content
Snippets Groups Projects
Commit 28afbaf5 authored by Andrea Grazioso (agr-odoo)'s avatar Andrea Grazioso (agr-odoo)
Browse files

[FIX] sale: wrap long line in sale portal


From Sale create a new (or edit) SO. Add a note to the order with a log
line without dash or whitespace (i.e. a url). Click on "Preview".

The sale portal will try to display the long line which will overflow
the standard size of the column creating an ugly overflow with a very
long horizontal scrollbar.

Adding a "break-all" rule to fix the sale portal case.

opw-2088589

closes odoo/odoo#39878

Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
parent 970387f9
No related branches found
No related tags found
No related merge requests found
......@@ -8,3 +8,9 @@
.orders_label_text_align {
vertical-align: 15%;
}
/* ---- Order page ---- */
.sale_tbody .o_line_note {
word-break: break-all;
}
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