Add support for package payment methods and basic checkout proccess

This commit is contained in:
Almira Krdzic
2018-08-29 07:56:37 +02:00
parent 5ac3bfff36
commit 438d92e16e
35 changed files with 1600 additions and 309 deletions

View File

@@ -2,6 +2,10 @@
#cart-count {
vertical-align: middle;
color: $cart-count-color;
font-size: 1.5rem;
border-radius: 1rem;
font-family: arial,sans-serif;
}
#cart-container {
@@ -12,7 +16,7 @@
border-radius: $box-radius;
.cart-show-items {
padding-top: 1rem;
padding: 1rem;
}
.quantity-field {
@@ -22,7 +26,7 @@
}
.remove-item {
color: $redColor;
color: #111;
cursor: pointer;
font-size: 1.3rem;
padding-top: 0.375rem;
@@ -42,6 +46,30 @@
font-weight: $font-weight;
}
.cart-item-details {
.item-name {
}
.item-quantity {
}
.wiaas-divider {
height: 40px;
margin: 0 20px;
min-width: 1px;
}
}
.item-payment-type {
font-weight: 600;
}
.item-price {
background-color: $hoverColor;
margin-top: 1rem;
border-radius: $box-radius;
}
.cart-total-price {
padding: 1rem 0;
font-size: $font-size-big;
@@ -163,6 +191,11 @@
.cart-address-box {
margin-top: 2rem;
}
#order-projects .actions-button, .add-address-btn, .address-icons {
opacity: 0.3;
pointer-events: none;
}
}
#cart-customer-main-information-container {