Skip to content
Snippets Groups Projects
Commit 5fce82e6 authored by Jordan D. (Joda)'s avatar Jordan D. (Joda)
Browse files

[FIX] point_of_sale: long floor name doesn't display properly


How to reproduce
=================

When entering a very long table name and / or a very long table name on
the point of sale application, the text displayed on the "go back" button of the interface will overflow,
making the name unreadable and not very pleasing to see.

How the fix works
=================

The fix just cut and hide the part of the text that is overflowing

opw-3102914

closes odoo/odoo#108913

Signed-off-by: default avatarTrinh Jacky (trj) <trj@odoo.com>
parent b7b642cf
Branches
Tags
No related merge requests found
......@@ -285,18 +285,20 @@
.pos .order-button.floor-button {
display: flex;
align-items: center;
background: #6EC89B;
font-weight: bold;
font-size: 16px;
padding-left: 16px;
padding-right: 16px;
overflow-wrap: anywhere;
text-overflow: hidden;
}
.pos .order-button.floor-button .table-name {
font-weight: normal;
}
.pos .order-button.floor-button .fa{
font-size: 24px;
line-height: 42px;
}
/* ------ ORDER LINE STATUS ------- */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment