[FIX] website_sale: Remove the oe_shadow from product Description; fix description editing; fix resize shopping cart.

bzr revid: chm@openerp.com-20140307134551-kxxp703sgep5eacv
This commit is contained in:
chm@openerp.com 2014-03-07 14:45:51 +01:00
parent 592890e24b
commit dfc428a6a1
3 changed files with 4 additions and 12 deletions

View File

@ -76,11 +76,6 @@
overflow: hidden;
margin-bottom: 30px;
}
.oe_product .oe_subdescription.oe_shadow {
position: absolute;
opacity: 0.3;
max-height: none;
}
.oe_mycart .input-group-addon {
padding-left: 6px;

View File

@ -66,10 +66,6 @@
max-height: 42px
overflow: hidden
margin-bottom: 30px
&.oe_shadow
position: absolute
opacity: .3
max-height: none
.oe_mycart
.input-group-addon

View File

@ -125,7 +125,7 @@
<div class="css_options" t-ignore="true" groups="base.group_website_publisher">
<div t-attf-class="dropdown js_options" t-att-data-id="product.id">
<a class="btn btn-default" t-att-id="'dopprod-%s' % product.id" role="button" data-toggle="dropdown">Options <span class="caret"></span></a>
<button class="btn btn-default" t-att-id="'dopprod-%s' % product.id" role="button" data-toggle="dropdown">Options <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu" t-att-aria-labelledby="'dopprod-%s' % product.id">
<li class='dropdown-submenu'>
<a tabindex="-1" href="#">Size</a>
@ -220,8 +220,9 @@
<template id="product_description" inherit_option_id="website_sale.products_cart" name="Product Description">
<xpath expr="//div[@class='product_price']" position="before">
<div class="text-info oe_subdescription oe_shadow" t-field="product.description_sale"/>
<div class="text-info oe_subdescription" t-field="product.description_sale"/>
<div class="text-info oe_subdescription" contenteditable="false">
<div t-field="product.description_sale"></div>
</div>
</xpath>
</template>