Merge pull request #809 from odoo-dev/master-fix-loading-sle

[FIX] oe_loading not append at the right place
This commit is contained in:
sle-odoo 2014-06-27 15:01:47 +02:00
commit b36f5d6d33
3 changed files with 3 additions and 3 deletions

View File

@ -775,7 +775,7 @@
}
.openerp .oe_loading {
display: none;
z-index: 100;
z-index: 1001;
position: fixed;
top: 0;
right: 50%;

View File

@ -667,7 +667,7 @@ $sheet-padding: 16px
// Loading {{{
.oe_loading
display: none
z-index: 100
z-index: 1001
position: fixed
top: 0
right: 50%

View File

@ -1150,7 +1150,7 @@ instance.web.Client = instance.web.Widget.extend({
self.notification = new instance.web.Notification(this);
self.notification.appendTo(self.$el);
self.loading = new instance.web.Loading(self);
self.loading.appendTo(self.$el);
self.loading.appendTo(self.$('.openerp_webclient_container'));
self.action_manager = new instance.web.ActionManager(self);
self.action_manager.appendTo(self.$('.oe_application'));
},