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 afe48b2d33
commit 75d339f811
6 changed files with 13622 additions and 130 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 {