From 26653818d1398cccb04417820ffce115cd56ebf7 Mon Sep 17 00:00:00 2001 From: David Date: Fri, 5 Apr 2024 11:06:57 +0200 Subject: [PATCH] [FIX] web_responsive: fix status widget visibility Before this change the status widget was hidden as it had no width. You can check it installing the project module and going to a task. Now you can see the status widget along the task name. --- web_responsive/static/src/legacy/scss/web_responsive.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_responsive/static/src/legacy/scss/web_responsive.scss b/web_responsive/static/src/legacy/scss/web_responsive.scss index 252a085b8..c1192a24a 100644 --- a/web_responsive/static/src/legacy/scss/web_responsive.scss +++ b/web_responsive/static/src/legacy/scss/web_responsive.scss @@ -168,7 +168,7 @@ html .o_web_client .o_action_manager .o_action { .oe_title { .o_field_widget:not(.oe_inline) { display: block; - span:not(.o_field_translate) { + span:not(.o_field_translate):not(.o_status) { display: block; max-width: 100%; text-overflow: ellipsis;