[IMP] web_responsive: Support long title in form view

pull/1390/head
Alexandre Díaz 2019-06-12 00:50:17 +02:00
parent 9835efc1a9
commit f434cb0488
1 changed files with 12 additions and 1 deletions

View File

@ -365,9 +365,20 @@ html .o_web_client .o_main .o_main_content {
z-index: 1; z-index: 1;
} }
// Support for long title (with ellipsis)
.oe_title { .oe_title {
max-width: 100%;
width: initial; width: initial;
>h1>span {
max-width: 100%;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
width: initial;
}
>h1>span:active {
white-space: normal;
}
} }
@include media-breakpoint-down(sm) { @include media-breakpoint-down(sm) {