[MERGE] [FIX] mail: fixed group button position that was too much dependent of the group description length

[IMP] project: removed unnecessary code in project to try to be able to move kanban records in a folded column (was not working + generic solution coming)

bzr revid: tde@openerp.com-20131219135206-nv8i13wjugix84r3
This commit is contained in:
Thibault Delavallée 2013-12-19 14:52:06 +01:00
commit 751eb333bc
2 changed files with 3 additions and 7 deletions

View File

@ -90,7 +90,9 @@
}
.openerp .oe_group_button {
padding-top: 7px;
position: absolute;
padding-bottom: 50px;
bottom: 0;
}
.openerp .oe_group_button .oe_group_join {

View File

@ -32,12 +32,6 @@ openerp.project = function(openerp) {
if (self.dataset.model === 'project.project') {
self.project_display_members_names();
}
},
on_record_moved: function(record, old_group, old_index, new_group, new_index){
var self = this;
this._super.apply(this, arguments);
if(new_group.state.folded)
new_group.do_action_toggle_fold();
}
});