3
0
Fork 0

Merge PR #1818 into 13.0

Signed-off-by pedrobaeza
13.0
OCA-git-bot 2021-02-10 16:36:11 +00:00
commit b25cea9758
1 changed files with 11 additions and 8 deletions

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;
}
}
} }
} }