Moved static files and celery.py

This commit is contained in:
Raphael Michel
2017-01-04 21:59:31 +01:00
parent dd074a11d4
commit c639cd96f5
441 changed files with 453 additions and 15 deletions

View File

@@ -0,0 +1,78 @@
.cart-row {
/* Cart grid */
padding: 10px 0;
.count form {
display: inline;
}
.price, .count, .download-desktop {
text-align: right;
}
.price small,
.availability-box small {
display: block;
line-height: 1;
}
&.total {
border-top: 1px solid $table-border-color;
}
dl {
padding-left: 20px;
margin-bottom: 0;
dd {
padding-left: 20px;
}
}
margin-left: 0;
margin-right: 0;
&>div {
position: relative;
min-height: 1px;
padding-left: ceil(($grid-gutter-width / 2));
padding-right: floor(($grid-gutter-width / 2));
float: left;
}
.download-mobile {
display: none;
width: 100%;
clear: both;
}
.download-desktop {
display: block;
width: percentage((4 / $grid-columns));
}
.product {
width: percentage((4 / $grid-columns));
}
.count {
width: percentage((2 / $grid-columns));
}
.singleprice, .totalprice {
width: percentage((3 / $grid-columns));
}
&.has-downloads .product {
width: percentage((5 / $grid-columns));
}
}
@media(max-width: $screen-sm-max) {
.cart-row {
.download-mobile {
display: block;
}
.download-desktop {
display: none;
}
&.has-downloads .product, .product, .count, .singleprice, .totalprice {
width: 50%;
}
.singleprice {
clear: both;
}
}
}