Refactor addToProduct's and change Quantity scripts and i added a way to get the product's quickView

This commit is contained in:
Christophe Laffont
2014-06-11 10:15:05 +02:00
parent 5279cc72ce
commit d2dfbbf4b2
7 changed files with 13629 additions and 134 deletions

View File

@@ -8,27 +8,33 @@
top: -14px !important;
margin: 0;
}
}
// Availibility
.availability {
display: block;
// In Stock
.in-stock {
font-style: italic;
color: #44B661;
font-style: italic; font-weight: bold;
text-transform: uppercase;
.in { display: block; }
.out { display: none; }
.quantity{
font-style: italic;
}
}
// Out of Stock
.out-of-stock {
color: #FF0000;
font-style: italic; font-weight: bold;
text-transform: uppercase;
.in { display: none; }
.out { display: block; }
}
#stock-information {