From 168e5aa22073335a339ac86ab102d5fc84a308f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20D=2E=20D=C3=ADaz?= Date: Mon, 29 Nov 2021 16:04:58 +0300 Subject: [PATCH] [FIX] web_responsive: Label width on modal --- .../src/legacy/scss/web_responsive.scss | 34 +++++++++++-------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/web_responsive/static/src/legacy/scss/web_responsive.scss b/web_responsive/static/src/legacy/scss/web_responsive.scss index 0f45758a3..ff709fc7d 100644 --- a/web_responsive/static/src/legacy/scss/web_responsive.scss +++ b/web_responsive/static/src/legacy/scss/web_responsive.scss @@ -84,29 +84,33 @@ html .o_web_client .o_action_manager .o_action { // Size of labels .o_web_client { &.o_chatter_position_sided { - .o_content, - .modal-content { - @include media-breakpoint-up(xl, $o-extra-grid-breakpoints) { - .o_inner_group { - .o_td_label { - min-width: 260px !important; + .o_action_manager { + .o_content, + .modal-content { + @include media-breakpoint-up(xl, $o-extra-grid-breakpoints) { + .o_inner_group { + .o_td_label { + min-width: 260px !important; + } } } - } - @include media-breakpoint-between(lg, xl, $o-extra-grid-breakpoints) { - .o_group_col_6 { - width: 100% !important; + @include media-breakpoint-between(lg, xl, $o-extra-grid-breakpoints) { + .o_group_col_6 { + width: 100% !important; + } } } } } &:not(.o_chatter_position_sided) { @include media-breakpoint-up(lg, $o-extra-grid-breakpoints) { - .o_content, - .modal-content { - .o_inner_group { - .o_td_label { - min-width: 260px !important; + .o_action_manager { + .o_content, + .modal-content { + .o_inner_group { + .o_td_label { + min-width: 260px !important; + } } } }