[FIX] correct a problem with left bar scrollin

This commit is contained in:
Géry Debongnie 2014-06-11 10:51:58 +02:00
parent af58bc5914
commit 6bd73f0c0f
3 changed files with 12 additions and 8 deletions

View File

@ -999,6 +999,7 @@
.openerp .oe_leftbar > div {
max-height: 100%;
overflow-y: auto;
overflow-x: hidden;
}
.openerp a.oe_logo {
position: relative;

View File

@ -848,6 +848,7 @@ $sheet-padding: 16px
> div
max-height: 100%
overflow-y: auto
overflow-x: hidden
a.oe_logo
position: relative
width: 220px

View File

@ -441,14 +441,16 @@
<tr>
<td class="oe_leftbar" valign="top">
<div>
<t t-set="debug" t-value="__debug__ ? '&amp;debug' : ''"/>
<a class="oe_logo" t-attf-href="/web?#{debug}">
<span class="oe_logo_edit">Edit Company data</span>
<img t-att-src='widget.session.url("/web/binary/company_logo")'/>
</a>
<div class="oe_secondary_menus_container"/>
<div class="oe_footer">
Powered by <a href="http://www.odoo.com" target="_blank"><span>Odoo</span></a>
<div>
<t t-set="debug" t-value="__debug__ ? '&amp;debug' : ''"/>
<a class="oe_logo" t-attf-href="/web?#{debug}">
<span class="oe_logo_edit">Edit Company data</span>
<img t-att-src='widget.session.url("/web/binary/company_logo")'/>
</a>
<div class="oe_secondary_menus_container"/>
<div class="oe_footer">
Powered by <a href="http://www.odoo.com" target="_blank"><span>Odoo</span></a>
</div>
</div>
</div>
</td>