[IMP] mail: removed first/last message classes

bzr revid: fva@openerp.com-20121019100350-6egth3faj7uoci6u
This commit is contained in:
Frédéric van der Essen 2012-10-19 12:03:50 +02:00
parent dcc615395e
commit 62fad9c114
2 changed files with 0 additions and 16 deletions

View File

@ -83,14 +83,3 @@
.openerp .oe_mail .oe_msg.oe_msg_read .oe_read{
display:none;
}
.openerp .oe_mail .oe_msg_last {
border-bottom: 5px solid black;
border-left: 2px solid black;
border-right: 2px solid black;
}
.openerp .oe_mail .oe_msg_first {
border-top: 5px solid black;
border-left: 2px solid black;
border-right: 2px solid black;
}

View File

@ -1124,11 +1124,6 @@ openerp.mail = function(session) {
}
}
self.$('.oe_msg_first:first').removeClass("oe_msg_first");
self.$('.oe_msg_last:last').removeClass("oe_msg_last");
self.$('.oe_msg_comment:first, .oe_msg_comment:first-child').addClass("oe_msg_first");
self.$('.oe_msg_comment:last, .oe_msg_comment:last-child').addClass("oe_msg_last");
return message
},