[FIX] Remove bootstrap default min-height on an empty row in the header, added a max-height on the header logo

bzr revid: sle@openerp.com-20140404130154-utzdx2gqhfl2bp0n
This commit is contained in:
Simon Lejeune 2014-04-04 15:01:54 +02:00
parent bf41efa40b
commit 0c07efd194
1 changed files with 5 additions and 2 deletions

View File

@ -67,6 +67,9 @@
.table-condensed > thead > tr > th {
border-bottom: 1px solid black !important;
}
.zero_min_height {
min-height: 0px !important;
}
</template>
<template id="external_layout">
@ -87,11 +90,11 @@
<div class="header">
<div class="row">
<div class="col-xs-3">
<img t-if="company.logo" t-att-src="'data:image/png;base64,%s' % company.logo"/>
<img t-if="company.logo" t-att-src="'data:image/png;base64,%s' % company.logo" style="max-height: 45px;"/>
</div>
<div class="col-xs-9 text-right" style="margin-top:20px;" t-field="company.rml_header1"/>
</div>
<div class="row">
<div class="row zero_min_height">
<div class="col-xs-12">
<div style="border-bottom: 1px solid black;"></div>
</div>