[FIX] web: fix layout issue in Chrome 50

A 100% height is not distributed anymore to the children of a table-row
if they are not themselves table-cell in Chrome 50. This breaks the
indenpendent scrolling of the menu and the view manager.

However, setting the `table-cell` display breaks the layout in Internet
Explorer.

When the webclient is loaded by Chrome 50, we load a stylesheet
forcing a `table-cell` for display.

Seems to be related to https://bugs.chromium.org/p/chromium/issues/detail?id=353580
and 8876584335

Related to e1a99192bd
Fixes #11629
This commit is contained in:
Simon Lejeune 2016-04-18 12:23:39 +02:00
parent e1a99192bd
commit f992c8ee19
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,8 @@
/* Do not forward port! */
.oe_leftbar > div > div > div {
display: table-cell;
}
.oe_view_manager > .oe_view_manager_wrapper > div {
display: table-cell;
}

View File

@ -1292,6 +1292,14 @@ instance.web.WebClient = instance.web.Client.extend({
self.action_manager.do_action(self.client_options.action_post_login);
delete(self.client_options.action_post_login);
}
/* Do not forward port! */
if ($.browser.chrome) {
var chrome_version = $.browser.version.split('.')[0];
if (parseInt(chrome_version, 10) >= 50) {
openerp.loadCSS('/web/static/src/css/chrome50.css');
}
}
},
update_logo: function() {
var company = this.session.company_id;