3
0
Fork 0

[FIX] web_responsive: Do not set overflow property on inline fields

Co-authored-by: Alexandre Díaz <alexandre.diaz@tecnativa.com>
Ensure that the title is displayed while the user holds the mouse click (while selecting content)
16.0
Yann Papouin 2021-02-08 14:30:27 +01:00 committed by anjeel.haria
parent 08a9e059f4
commit 9167c05cd6
2 changed files with 12 additions and 9 deletions

View File

@ -6,7 +6,7 @@
{ {
"name": "Web Responsive", "name": "Web Responsive",
"summary": "Responsive web client, community-supported", "summary": "Responsive web client, community-supported",
"version": "13.0.2.6.1", "version": "13.0.2.6.2",
"category": "Website", "category": "Website",
"website": "https://github.com/OCA/web", "website": "https://github.com/OCA/web",
"author": "LasLabs, Tecnativa, " "Odoo Community Association (OCA)", "author": "LasLabs, Tecnativa, " "Odoo Community Association (OCA)",

View File

@ -459,14 +459,17 @@ html .o_web_client .o_action_manager .o_action {
// Support for long title (with ellipsis) // Support for long title (with ellipsis)
.oe_title { .oe_title {
span.o_field_widget { span.o_field_widget {
max-width: 100%; &:not(.oe_inline) {
text-overflow: ellipsis; max-width: 100%;
white-space: nowrap; text-overflow: ellipsis;
overflow: hidden; white-space: nowrap;
width: initial; overflow: hidden;
} width: initial;
span:active {
white-space: normal; &:active {
white-space: normal;
}
}
} }
} }