[MERGE] [FIX] css: Fixed the issue of statubar not aligned with buttons in chrome browser.

bzr revid: mat@openerp.com-20140213145755-txvtwqbfc83vnw9o
This commit is contained in:
Martin Trigaux 2014-02-13 15:57:55 +01:00
commit ce778f2000
3 changed files with 2 additions and 3 deletions

View File

@ -2163,6 +2163,7 @@
}
.openerp .oe_form header {
position: relative;
overflow: hidden;
border-bottom: 1px solid #cacaca;
padding-left: 2px;
background-color: #ededed;

View File

@ -1711,6 +1711,7 @@ $sheet-padding: 16px
// FormView.header {{{
.oe_form header
position: relative
overflow: hidden
border-bottom: 1px solid #cacaca
padding-left: 2px
@include vertical-gradient(#fcfcfc, #dedede)

View File

@ -5389,9 +5389,6 @@ instance.web.form.FieldStatus = instance.web.form.AbstractField.extend({
if (this.options.clickable) {
this.$el.on('click','li',this.on_click_stage);
}
if (this.$el.parent().is('header')) {
this.$el.after('<div class="oe_clear"/>');
}
this._super();
},
set_value: function(value_) {