[FIX] correct a problem with left bar scrollin
authorGéry Debongnie <ged@odoo.com>
Wed, 11 Jun 2014 08:51:58 +0000 (10:51 +0200)
committerGéry Debongnie <ged@odoo.com>
Wed, 11 Jun 2014 08:51:58 +0000 (10:51 +0200)
addons/web/static/src/css/base.css
addons/web/static/src/css/base.sass
addons/web/static/src/xml/base.xml

index 10203df..092b5e5 100644 (file)
 .openerp .oe_leftbar > div {
   max-height: 100%;
   overflow-y: auto;
+  overflow-x: hidden;
 }
 .openerp a.oe_logo {
   position: relative;
index 89690c8..41993d8 100644 (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
index 3a39a7d..6ca7950 100644 (file)
         <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>