Authored by hf

Merge branch 'develop/wap' of http://git.dev.yoho.cn/web/yohobuy into develop/wap

... ... @@ -119,4 +119,10 @@ $page.on('touchstart', '.del-icon', function() {
}
});
});
});
\ No newline at end of file
});
$('.deps').on('touchstart', 'span', function() {
$(this).css('background', '#eee');
}).on('touchend touchcancel', 'span', function() {
$(this).css('background', 'transparent');
});
... ...
... ... @@ -9,6 +9,10 @@
height: 160rem / $pxConvertRem;
}
.sold-out {
display: inline;
}
.deps {
margin-left: 135rem / $pxConvertRem;
padding: 0.5rem 0;
... ... @@ -43,7 +47,7 @@
}
.sold-out-tag {
font-size: 16px;
font-size: 12px;
line-height: 30rem / $pxConvertRem;
text-align: center;
color: #fff;
... ...
... ... @@ -10,7 +10,7 @@
<span class="market-price"{{market_price}}</span>
{{/if}}
</p>
<p class="row">
<p class="sold-out row">
{{#unless storage}}
<span class="sold-out-tag">已售罄</span>
{{/unless}}
... ...