From 1bdf43226eac35650f280524197ef87db42f16e9 Mon Sep 17 00:00:00 2001 From: OdooSky v3 Date: Sat, 9 May 2026 10:29:57 +0200 Subject: [PATCH] fix(tk_construction_management): scope .o_action_manager overflow rule to .construction_dashboard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CSS rule .o_action_manager { overflow: auto !important; } leaks globally — Odoos outer action container is the same element across EVERY page in the webclient. On viewports above the xxl breakpoint (~1500px) this overflow setting collapses flex sizing of children, shrinking form sheets to ~3mm. erp incident 2026-05-09: New Project form on Construction app rendered as a 3mm-wide column. Visible only on wide viewports because narrower ones hit different responsive breakpoints. Move the overflow declaration INSIDE the .construction_dashboard scope so it applies only on the dashboard page (where it was meant to apply in the first place). --- addons/tk_construction_management/static/src/css/style.scss | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/addons/tk_construction_management/static/src/css/style.scss b/addons/tk_construction_management/static/src/css/style.scss index 459f675..cc3a361 100644 --- a/addons/tk_construction_management/static/src/css/style.scss +++ b/addons/tk_construction_management/static/src/css/style.scss @@ -1,7 +1,5 @@ -.o_action_manager { - overflow: auto !important; -} .construction_dashboard { + overflow: auto !important; background-color: #f8f9fa !important; height: 100%; .d-flex {