Skip to content
Snippets Groups Projects
Commit 4cc01a34 authored by Nicolas Martinelli's avatar Nicolas Martinelli
Browse files

[FIX] website_portal_sale: prevent overlap

In the website portal summary ('/my/home'), a long invoice number might
overlap the date.

opw-677567
parent fa4a371b
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,10 @@
align-items: center;
}
.orders_label_text_align {
vertical-align: 15%;
}
\ No newline at end of file
}
.cell_overflow {
overflow: hidden;
}
......@@ -115,8 +115,8 @@
</thead>
<t t-foreach="invoices" t-as="invoice">
<tr t-att-class="'hidden to_hide' if invoice.state!='open' and invoice_index &gt; 4 else ''">
<td>
<a t-att-href="'/report/pdf/account.report_invoice/'+str(invoice.id)"><t t-esc="invoice.number"/></a>
<td class= "cell_overflow">
<a t-att-href="'/report/pdf/account.report_invoice/'+str(invoice.id)" t-att-title="invoice.number"><t t-esc="invoice.number"/></a>
</td>
<td><span t-field="invoice.date_invoice"/></td>
<td><span t-field="invoice.date_due"/></td>
......
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