mirror of https://github.com/OCA/web.git
fixup! [MIG] web_responsive: Migrate to v10
Scroll control panel with page using CSS instead of jQuery. jQuery scrolling caused scrollbar malfunction.pull/511/head
parent
13c14035a3
commit
5cc2e853ca
|
@ -88,12 +88,6 @@ odoo.define('web_responsive', function(require) {
|
|||
'a.oe_logo, ' +
|
||||
'i.oe_logo_edit'
|
||||
);
|
||||
$('.o_content').scroll(function() {
|
||||
$('.o_control_panel').css(
|
||||
'margin-top',
|
||||
-$(this).scrollTop() + 'px'
|
||||
);
|
||||
});
|
||||
$clickZones.click($.proxy(this.handleClickZones, this));
|
||||
core.bus.on('resize', this, this.handleWindowResize);
|
||||
core.bus.on('keydown', this, this.handleNavKeys);
|
||||
|
|
|
@ -44,3 +44,15 @@ main {
|
|||
.o_tooltip.active {
|
||||
z-index: 1051;
|
||||
}
|
||||
|
||||
.o_web_client {
|
||||
>.o_main {
|
||||
overflow: auto;
|
||||
> .o_main_content {
|
||||
overflow: initial;
|
||||
> .o_content {
|
||||
overflow: initial;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue