From 7f6bd2dc666ca93c09df3131da2866ae2e4b13fa Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Tue, 19 Apr 2016 17:26:38 +0200 Subject: [PATCH] [FIX] web: fix layout issue in Chrome 50 (again) Makes the fix in f992c8ee192c075b38bf14dd5dcfb10fba7dd2ef specific to the view manager of the main oe_application container, in order to avoid disrupting other view manager occurrences (such as the ones in modal windows or x2many list views). Fixes #11629 (again) Note: Hopefully the Blink team will fix Chrome so we can get rid of this hack in the future: https://bugs.chromium.org/p/chromium/issues/detail?id=603507 --- addons/web/static/src/css/chrome50.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web/static/src/css/chrome50.css b/addons/web/static/src/css/chrome50.css index cfcf6d84033..5279f10bfa4 100644 --- a/addons/web/static/src/css/chrome50.css +++ b/addons/web/static/src/css/chrome50.css @@ -3,6 +3,6 @@ display: table-cell; } -.oe_view_manager > .oe_view_manager_wrapper > div { +.openerp .oe_application > div > .oe_view_manager > .oe_view_manager_wrapper > div { display: table-cell; }