Authored by xuqi

BLK-1144

... ... @@ -490,7 +490,7 @@ Cart = {
if ($(this).find('.current').length === 0) {
$(this).find('.size-item').first().addClass('current');
}
})
});
},
fail: function() {
new _alert('此商品无法编辑颜色和尺寸').show();
... ...
... ... @@ -26,9 +26,19 @@
margin-right: 20px;
}
span {
span:hover {
cursor: pointer;
color: #379ed6;
}
a {
display: block;
width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
&:hover {
cursor: pointer;
color: #379ed6;
}
}
... ...