2020-01-20 16:43:22 +00:00
|
|
|
.wc-block-cart {
|
2020-03-09 11:28:26 +00:00
|
|
|
color: $core-grey-dark-600;
|
Cart block: line-items front end initial work (https://github.com/woocommerce/woocommerce-blocks/pull/1333)
* render block on front end, add `Shopping cart` heading (baby steps)
* fake data for editing full cart + show line count in header
* add note about core/html using `is-active` class for toggle state
* reinstate work-in-progress full cart component (lost in rebase)
* reinstate full cart from master
* component for full cart title & item count + margin tweaks:
- add margin between main cart & sidebar
- add margin after cart block
* add cart items sample data + factor sample product image to module
* use sample cart data for item count
* basic table of cart line items (no styling)
* prettification
* show images for cart line items + initial table styling
* cart quantity selector component (work in progress)
* use state for cart product quantity, allow incr/decr from UI (WIP)
* replace WIP custom quantity control with number edit (temporary)
* correctly format cart line item total price
* align cart item columns with headings + indent image on desktop
* tweak css for cart line item padding on mobile so it's more explicit
* show cart line item full price if discounted
* add placeholder for cart remove item link
* switch cart table to flex layout (was table)…
This will allow us to move things around for mobile/responsive layout.
* only show cart items table header on desktop
* more cart items styling - row borders, appropriate padding +
+ move image width to variable
+ fix class name plurality for row (item not items)
* use standard $gap instead of 1em for padding/margins
* responsive (mobile) layout for cart line items:
- shift line $ total to bottom right
- stack quantity selector in product info column
* remove extraneous cart table padding on mobile
* comment about unused styles for quantity selector component
* add follow up issue for todo
* remove inappropriate href
* render srcset & sizes for cart line item product image
* remove todo comment
* switch back to table markup for cart items (in progress):
- table is more semantic, associates headers with columns
* cart line items column widths - product column is larger (60%)
* reinstate table row borders
* bottom-align line item price on mobile
* cart contents heading should be H2 + prettify
* remove unused QuantitySelector code/styles, rename main class in line with BEM
* defaults for QuantitySelector props
* variable/property name tidies - match conventions/API
* fix bug: line total price is only bottom-align on small screen
* move QuantitySelector to root of components, intended to be generally useful
* use lineItem directly for cart, specify shape in PropTypes
* rename cart components to align with "line item" rather than "product"
* rejig class names to better align with new component names & BEM style
* show cart item image correct size:
- use single column for product image and info, with flex container
- specify image width (rem instead of px)
* fix safari issue - cart product images displaying vertically stretched
* shift product name left margin from image, to account for no-image case
* experiment: bump bundlewatch size limit for cart temporarily:
- our fake data inline image is heavy
- when we switch to real API we will no longer need it
* fix issue introduced when moving margin from image to details div:
- product details needs margin on left (not right)
* fix react props issues:
- explicitly destructure image props for srcSet (vs srcset)
- use API key field for line item key instead of id, fix duplicate test id
- CartLineItemsTable takes an array of lineItems (incorrect PropTypes)
* remove redundant divs + use conventional `null` (when no full price)
* override editor styles to ensure cart product image is correct size
* move cart items editor style override to editor.css
* add an explicit readable heading for cart heading to match visual layout
2020-01-09 22:50:14 +00:00
|
|
|
|
2020-04-24 12:23:25 +00:00
|
|
|
h2 {
|
|
|
|
@include font-size(20);
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2020-04-29 12:35:42 +00:00
|
|
|
.wc-block-cart__main,
|
|
|
|
.wc-block-cart__sidebar .components-card__body.is-size-medium {
|
|
|
|
padding-top: 1.3em;
|
|
|
|
}
|
|
|
|
|
2020-01-20 16:43:22 +00:00
|
|
|
.wc-block-cart__item-count {
|
|
|
|
float: right;
|
2020-01-10 14:37:27 +00:00
|
|
|
}
|
2020-04-24 12:23:25 +00:00
|
|
|
|
2020-03-13 13:41:59 +00:00
|
|
|
.wc-block-cart__shipping-calculator {
|
2020-02-17 11:12:15 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2020-04-24 12:23:25 +00:00
|
|
|
|
|
|
|
.wc-block-product-name {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2020-01-10 14:37:27 +00:00
|
|
|
}
|
|
|
|
|
2020-01-20 16:43:22 +00:00
|
|
|
table.wc-block-cart-items,
|
|
|
|
table.wc-block-cart-items th,
|
|
|
|
table.wc-block-cart-items td {
|
|
|
|
// Override Storefront theme gray table background.
|
|
|
|
background: none !important;
|
|
|
|
// Remove borders on default themes.
|
|
|
|
border: 0;
|
|
|
|
}
|
2020-01-10 14:37:27 +00:00
|
|
|
|
2020-04-08 15:03:39 +00:00
|
|
|
.editor-styles-wrapper table.wc-block-cart-items,
|
2020-01-20 16:43:22 +00:00
|
|
|
table.wc-block-cart-items {
|
|
|
|
table-layout: fixed;
|
|
|
|
width: 100%;
|
|
|
|
border-bottom: 1px solid $core-grey-light-600;
|
2019-12-12 19:46:56 +00:00
|
|
|
|
2020-01-20 16:43:22 +00:00
|
|
|
th {
|
2020-04-24 12:23:25 +00:00
|
|
|
padding: 0.25rem $gap 0.25rem 0;
|
2020-01-20 16:43:22 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
border-collapse: collapse;
|
2019-12-12 19:46:56 +00:00
|
|
|
}
|
2020-01-20 16:43:22 +00:00
|
|
|
td {
|
|
|
|
border-top: 1px solid $core-grey-light-600;
|
|
|
|
padding: $gap $gap $gap 0;
|
|
|
|
vertical-align: top;
|
|
|
|
border-collapse: collapse;
|
2019-12-12 19:46:56 +00:00
|
|
|
}
|
2020-01-20 16:43:22 +00:00
|
|
|
th:last-child,
|
|
|
|
td:last-child {
|
|
|
|
padding-right: 0;
|
Cart block: line-items front end initial work (https://github.com/woocommerce/woocommerce-blocks/pull/1333)
* render block on front end, add `Shopping cart` heading (baby steps)
* fake data for editing full cart + show line count in header
* add note about core/html using `is-active` class for toggle state
* reinstate work-in-progress full cart component (lost in rebase)
* reinstate full cart from master
* component for full cart title & item count + margin tweaks:
- add margin between main cart & sidebar
- add margin after cart block
* add cart items sample data + factor sample product image to module
* use sample cart data for item count
* basic table of cart line items (no styling)
* prettification
* show images for cart line items + initial table styling
* cart quantity selector component (work in progress)
* use state for cart product quantity, allow incr/decr from UI (WIP)
* replace WIP custom quantity control with number edit (temporary)
* correctly format cart line item total price
* align cart item columns with headings + indent image on desktop
* tweak css for cart line item padding on mobile so it's more explicit
* show cart line item full price if discounted
* add placeholder for cart remove item link
* switch cart table to flex layout (was table)…
This will allow us to move things around for mobile/responsive layout.
* only show cart items table header on desktop
* more cart items styling - row borders, appropriate padding +
+ move image width to variable
+ fix class name plurality for row (item not items)
* use standard $gap instead of 1em for padding/margins
* responsive (mobile) layout for cart line items:
- shift line $ total to bottom right
- stack quantity selector in product info column
* remove extraneous cart table padding on mobile
* comment about unused styles for quantity selector component
* add follow up issue for todo
* remove inappropriate href
* render srcset & sizes for cart line item product image
* remove todo comment
* switch back to table markup for cart items (in progress):
- table is more semantic, associates headers with columns
* cart line items column widths - product column is larger (60%)
* reinstate table row borders
* bottom-align line item price on mobile
* cart contents heading should be H2 + prettify
* remove unused QuantitySelector code/styles, rename main class in line with BEM
* defaults for QuantitySelector props
* variable/property name tidies - match conventions/API
* fix bug: line total price is only bottom-align on small screen
* move QuantitySelector to root of components, intended to be generally useful
* use lineItem directly for cart, specify shape in PropTypes
* rename cart components to align with "line item" rather than "product"
* rejig class names to better align with new component names & BEM style
* show cart item image correct size:
- use single column for product image and info, with flex container
- specify image width (rem instead of px)
* fix safari issue - cart product images displaying vertically stretched
* shift product name left margin from image, to account for no-image case
* experiment: bump bundlewatch size limit for cart temporarily:
- our fake data inline image is heavy
- when we switch to real API we will no longer need it
* fix issue introduced when moving margin from image to details div:
- product details needs margin on left (not right)
* fix react props issues:
- explicitly destructure image props for srcSet (vs srcset)
- use API key field for line item key instead of id, fix duplicate test id
- CartLineItemsTable takes an array of lineItems (incorrect PropTypes)
* remove redundant divs + use conventional `null` (when no full price)
* override editor styles to ensure cart product image is correct size
* move cart items editor style override to editor.css
* add an explicit readable heading for cart heading to match visual layout
2020-01-09 22:50:14 +00:00
|
|
|
}
|
|
|
|
.wc-block-cart-items__header {
|
2020-04-24 12:23:25 +00:00
|
|
|
@include font-size(12);
|
2020-01-20 16:43:22 +00:00
|
|
|
text-transform: uppercase;
|
2020-04-24 12:23:25 +00:00
|
|
|
|
2020-01-20 16:43:22 +00:00
|
|
|
.wc-block-cart-items__header-image {
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
.wc-block-cart-items__header-product {
|
|
|
|
visibility: hidden;
|
|
|
|
min-width: 300px;
|
|
|
|
}
|
|
|
|
.wc-block-cart-items__header-quantity {
|
|
|
|
width: 116px;
|
|
|
|
}
|
|
|
|
.wc-block-cart-items__header-total {
|
|
|
|
width: 100px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
2020-01-17 13:46:56 +00:00
|
|
|
}
|
2020-01-20 16:43:22 +00:00
|
|
|
.wc-block-cart-items__row {
|
|
|
|
.wc-block-cart-item__image img {
|
|
|
|
width: 100%;
|
2020-03-05 14:15:28 +00:00
|
|
|
margin: 0;
|
2020-01-20 16:43:22 +00:00
|
|
|
}
|
|
|
|
.wc-block-cart-item__quantity {
|
|
|
|
.wc-block-cart-item__remove-link {
|
|
|
|
@include link-button;
|
2020-04-24 12:23:25 +00:00
|
|
|
@include font-size(12);
|
2020-01-20 16:43:22 +00:00
|
|
|
|
|
|
|
color: $core-grey-dark-400;
|
|
|
|
text-transform: none;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.wc-block-cart-item__remove-icon {
|
|
|
|
@include link-button;
|
|
|
|
|
|
|
|
color: $core-grey-dark-400;
|
|
|
|
fill: currentColor;
|
|
|
|
position: absolute;
|
|
|
|
top: $gap;
|
|
|
|
right: 0;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.wc-block-cart-item__total {
|
2020-04-24 12:23:25 +00:00
|
|
|
@include font-size(16);
|
2020-01-20 16:43:22 +00:00
|
|
|
text-align: right;
|
2020-04-24 12:23:25 +00:00
|
|
|
line-height: 1.25;
|
2020-01-20 16:43:22 +00:00
|
|
|
|
2020-04-09 16:53:22 +00:00
|
|
|
.wc-block-product-price,
|
|
|
|
.wc-block-product-price--regular {
|
2020-02-26 15:49:07 +00:00
|
|
|
display: block;
|
|
|
|
}
|
2020-01-20 16:43:22 +00:00
|
|
|
}
|
2020-04-07 11:03:22 +00:00
|
|
|
|
|
|
|
&.is-disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
pointer-events: none;
|
|
|
|
transition: opacity 200ms ease;
|
|
|
|
}
|
Cart block: line-items front end initial work (https://github.com/woocommerce/woocommerce-blocks/pull/1333)
* render block on front end, add `Shopping cart` heading (baby steps)
* fake data for editing full cart + show line count in header
* add note about core/html using `is-active` class for toggle state
* reinstate work-in-progress full cart component (lost in rebase)
* reinstate full cart from master
* component for full cart title & item count + margin tweaks:
- add margin between main cart & sidebar
- add margin after cart block
* add cart items sample data + factor sample product image to module
* use sample cart data for item count
* basic table of cart line items (no styling)
* prettification
* show images for cart line items + initial table styling
* cart quantity selector component (work in progress)
* use state for cart product quantity, allow incr/decr from UI (WIP)
* replace WIP custom quantity control with number edit (temporary)
* correctly format cart line item total price
* align cart item columns with headings + indent image on desktop
* tweak css for cart line item padding on mobile so it's more explicit
* show cart line item full price if discounted
* add placeholder for cart remove item link
* switch cart table to flex layout (was table)…
This will allow us to move things around for mobile/responsive layout.
* only show cart items table header on desktop
* more cart items styling - row borders, appropriate padding +
+ move image width to variable
+ fix class name plurality for row (item not items)
* use standard $gap instead of 1em for padding/margins
* responsive (mobile) layout for cart line items:
- shift line $ total to bottom right
- stack quantity selector in product info column
* remove extraneous cart table padding on mobile
* comment about unused styles for quantity selector component
* add follow up issue for todo
* remove inappropriate href
* render srcset & sizes for cart line item product image
* remove todo comment
* switch back to table markup for cart items (in progress):
- table is more semantic, associates headers with columns
* cart line items column widths - product column is larger (60%)
* reinstate table row borders
* bottom-align line item price on mobile
* cart contents heading should be H2 + prettify
* remove unused QuantitySelector code/styles, rename main class in line with BEM
* defaults for QuantitySelector props
* variable/property name tidies - match conventions/API
* fix bug: line total price is only bottom-align on small screen
* move QuantitySelector to root of components, intended to be generally useful
* use lineItem directly for cart, specify shape in PropTypes
* rename cart components to align with "line item" rather than "product"
* rejig class names to better align with new component names & BEM style
* show cart item image correct size:
- use single column for product image and info, with flex container
- specify image width (rem instead of px)
* fix safari issue - cart product images displaying vertically stretched
* shift product name left margin from image, to account for no-image case
* experiment: bump bundlewatch size limit for cart temporarily:
- our fake data inline image is heavy
- when we switch to real API we will no longer need it
* fix issue introduced when moving margin from image to details div:
- product details needs margin on left (not right)
* fix react props issues:
- explicitly destructure image props for srcSet (vs srcset)
- use API key field for line item key instead of id, fix duplicate test id
- CartLineItemsTable takes an array of lineItems (incorrect PropTypes)
* remove redundant divs + use conventional `null` (when no full price)
* override editor styles to ensure cart product image is correct size
* move cart items editor style override to editor.css
* add an explicit readable heading for cart heading to match visual layout
2020-01-09 22:50:14 +00:00
|
|
|
}
|
2020-01-20 16:43:22 +00:00
|
|
|
}
|
2020-01-14 20:52:42 +00:00
|
|
|
|
2020-02-26 15:49:07 +00:00
|
|
|
// Loading placeholder state.
|
|
|
|
.wc-block-cart--is-loading {
|
2020-03-05 14:15:28 +00:00
|
|
|
th span,
|
|
|
|
h2 span {
|
|
|
|
@include placeholder();
|
|
|
|
@include force-content();
|
|
|
|
min-width: 84px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
h2 span {
|
|
|
|
min-width: 33%;
|
|
|
|
}
|
2020-02-26 15:49:07 +00:00
|
|
|
.wc-block-cart-items {
|
|
|
|
.wc-block-cart-items__row {
|
2020-04-08 15:03:39 +00:00
|
|
|
.wc-block-cart-item__price,
|
|
|
|
.wc-block-cart-item__product-metadata,
|
2020-03-05 14:15:28 +00:00
|
|
|
.wc-block-cart-item__image > *,
|
2020-02-26 15:49:07 +00:00
|
|
|
.wc-block-quantity-selector {
|
|
|
|
@include placeholder();
|
|
|
|
}
|
2020-04-08 15:03:39 +00:00
|
|
|
.wc-block-cart-item__product-name {
|
2020-03-05 14:15:28 +00:00
|
|
|
@include placeholder();
|
2020-02-26 15:49:07 +00:00
|
|
|
@include force-content();
|
2020-03-05 14:15:28 +00:00
|
|
|
min-width: 84px;
|
|
|
|
display: inline-block;
|
2020-02-26 15:49:07 +00:00
|
|
|
}
|
2020-04-08 15:03:39 +00:00
|
|
|
.wc-block-cart-item__product-metadata {
|
2020-03-05 14:15:28 +00:00
|
|
|
margin-top: 0.25em;
|
|
|
|
min-width: 8em;
|
2020-02-26 15:49:07 +00:00
|
|
|
}
|
|
|
|
.wc-block-cart-item__remove-link,
|
|
|
|
.wc-block-cart-item__remove-icon {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
.wc-block-cart-item__image a {
|
|
|
|
display: block;
|
|
|
|
}
|
2020-03-05 14:15:28 +00:00
|
|
|
.wc-block-cart-item__total {
|
|
|
|
> span,
|
|
|
|
> div {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-04-08 15:03:39 +00:00
|
|
|
.wc-block-cart-item__price {
|
2020-03-05 14:15:28 +00:00
|
|
|
@include force-content();
|
|
|
|
display: block;
|
|
|
|
}
|
2020-02-26 15:49:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.wc-block-cart__sidebar .components-card {
|
|
|
|
@include placeholder();
|
2020-03-05 14:15:28 +00:00
|
|
|
@include force-content();
|
|
|
|
min-height: 460px;
|
2020-02-26 15:49:07 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-27 20:56:48 +00:00
|
|
|
.wc-block-sidebar-layout.wc-block-cart--skeleton {
|
2020-03-05 14:15:28 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2020-03-27 20:56:48 +00:00
|
|
|
.is-loading + .wc-block-sidebar-layout.wc-block-cart--skeleton {
|
2020-03-05 14:15:28 +00:00
|
|
|
display: flex;
|
|
|
|
}
|
2020-02-26 15:49:07 +00:00
|
|
|
|
2020-05-05 08:10:02 +00:00
|
|
|
.is-medium,
|
|
|
|
.is-small,
|
|
|
|
.is-mobile {
|
|
|
|
&.wc-block-cart {
|
2020-03-12 09:41:35 +00:00
|
|
|
.wc-block-sidebar {
|
2020-03-09 21:16:03 +00:00
|
|
|
.wc-block-cart__totals-title {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-01-20 16:43:22 +00:00
|
|
|
}
|
2020-01-14 20:52:42 +00:00
|
|
|
}
|
2020-01-20 16:43:22 +00:00
|
|
|
table.wc-block-cart-items {
|
|
|
|
td {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
.wc-block-cart-items__header {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.wc-block-cart-item__remove-link {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.wc-block-cart-items__row {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 80px 132px;
|
|
|
|
border-top: 1px solid $core-grey-light-600;
|
|
|
|
padding: $gap 0;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.wc-block-cart-item__image {
|
|
|
|
grid-column-start: 1;
|
|
|
|
grid-row-start: 1;
|
|
|
|
padding-right: $gap;
|
|
|
|
}
|
|
|
|
.wc-block-cart-item__product {
|
|
|
|
grid-column-start: 2;
|
|
|
|
grid-column-end: 4;
|
|
|
|
grid-row-start: 1;
|
|
|
|
justify-self: stretch;
|
2020-04-24 12:23:25 +00:00
|
|
|
margin-right: 24px;
|
2020-01-20 16:43:22 +00:00
|
|
|
padding-bottom: $gap;
|
|
|
|
}
|
|
|
|
.wc-block-cart-item__quantity {
|
|
|
|
grid-column-start: 2;
|
|
|
|
grid-row-start: 2;
|
|
|
|
vertical-align: bottom;
|
|
|
|
padding-right: $gap;
|
|
|
|
|
|
|
|
.wc-block-cart-item__remove-link {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.wc-block-cart-item__remove-icon {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.wc-block-cart-item__total {
|
|
|
|
grid-column-start: 3;
|
|
|
|
grid-row-start: 2;
|
|
|
|
align-self: center;
|
|
|
|
|
2020-03-05 13:05:42 +00:00
|
|
|
.wc-block-formatted-money-amount {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2020-03-13 15:49:33 +00:00
|
|
|
.wc-block-sale-badge {
|
2020-01-20 16:43:22 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-14 20:52:42 +00:00
|
|
|
}
|
2020-05-05 08:10:02 +00:00
|
|
|
}
|
2020-03-10 22:27:52 +00:00
|
|
|
|
2020-05-05 08:10:02 +00:00
|
|
|
@include breakpoint( "<782px" ) {
|
2020-03-10 22:27:52 +00:00
|
|
|
// Submit button is sticky to bottom of screen on mobile.
|
|
|
|
.wc-block-cart__submit-container {
|
|
|
|
background: $white;
|
|
|
|
bottom: 0;
|
|
|
|
box-shadow: 0 -10px 20px 10px transparentize($core-grey-light-700, 0.5);
|
|
|
|
left: 0;
|
|
|
|
padding: $gap;
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
2020-04-06 11:50:33 +00:00
|
|
|
z-index: 9999;
|
|
|
|
}
|
|
|
|
.wc-block-cart__submit-container-push {
|
|
|
|
height: 100px;
|
2020-03-10 22:27:52 +00:00
|
|
|
}
|
2019-12-12 19:46:56 +00:00
|
|
|
}
|
2020-04-24 12:23:25 +00:00
|
|
|
|
2020-05-05 08:10:02 +00:00
|
|
|
.is-large.wc-block-cart {
|
|
|
|
.wc-block-radio-control__option {
|
|
|
|
padding-left: $gap-large;
|
|
|
|
}
|
2020-04-24 12:23:25 +00:00
|
|
|
|
2020-05-05 08:10:02 +00:00
|
|
|
.wc-block-radio-control__input {
|
|
|
|
left: 0;
|
2020-04-24 12:23:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-26 17:09:18 +00:00
|
|
|
.wc-block-cart-coupon-list {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|