forked from Techsystech/web
[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
parent
08a9e059f4
commit
9167c05cd6
|
@ -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)",
|
||||||
|
|
|
@ -459,16 +459,19 @@ 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 {
|
||||||
|
&:not(.oe_inline) {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: initial;
|
width: initial;
|
||||||
}
|
|
||||||
span:active {
|
&:active {
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@include media-breakpoint-down(sm) {
|
@include media-breakpoint-down(sm) {
|
||||||
min-width: auto;
|
min-width: auto;
|
||||||
|
|
Loading…
Reference in New Issue