[FIX] web_responsive: Wrap text when display_name is too long

pull/3037/head
Carlos Roca 2023-05-29 08:32:07 +02:00 committed by kobros-tech
parent 45a71ddfc0
commit e96b203436
2 changed files with 10 additions and 0 deletions

View File

@ -43,6 +43,7 @@
"/web_responsive/static/src/components/attachment_viewer/attachment_viewer.scss",
"/web_responsive/static/src/components/attachment_viewer/attachment_viewer.esm.js",
"/web_responsive/static/src/components/attachment_viewer/attachment_viewer.xml",
"/web_responsive/static/src/views/form/form_controller.scss",
],
"web.assets_tests": [
"/web_responsive/static/tests/test_patch.js",

View File

@ -0,0 +1,9 @@
/* Copyright 2023 Tecnativa - Carlos Roca
* License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). */
// Many2one li items with wrap
.o_field_many2one_selection {
ul.ui-autocomplete .dropdown-item.ui-menu-item-wrapper {
white-space: initial;
}
}