73 lines
1.4 KiB
Plaintext
73 lines
1.4 KiB
Plaintext
// Thelia : Shopping Cart
|
|
|
|
// Cart
|
|
.table-cart {
|
|
.table-bordered;
|
|
|
|
thead,
|
|
tbody,
|
|
tfooter {
|
|
> tr {
|
|
> th,
|
|
> td {
|
|
&.image { border-right-color: transparent; }
|
|
}
|
|
}
|
|
}
|
|
|
|
thead {
|
|
th {
|
|
background-color: #f5f5f5;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
|
|
tbody {
|
|
td {
|
|
&.image {}
|
|
&.product {
|
|
.name {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
&.unitprice {
|
|
.price {
|
|
color: @text-color;
|
|
}
|
|
.old-price {
|
|
.price {
|
|
font-size: @font-size-base;
|
|
}
|
|
}
|
|
}
|
|
&.qty {}
|
|
&.subprice {
|
|
.price {
|
|
color: @brand-primary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
tfoot {
|
|
td {
|
|
&.shipping {
|
|
.price {
|
|
color: @text-color;
|
|
font-size: ceil(@font-size-base * 1.3);
|
|
}
|
|
}
|
|
&.coupon {}
|
|
&.total {
|
|
.price {
|
|
font-size: ceil(@font-size-base * 1.3);
|
|
}
|
|
}
|
|
&.empty {
|
|
border-bottom-color: transparent; border-left-color: transparent;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|