2020-01-15 11:32:54 +00:00
|
|
|
@mixin reset-button {
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
background: none transparent;
|
2020-05-14 09:07:21 +00:00
|
|
|
box-shadow: none;
|
2020-01-15 11:32:54 +00:00
|
|
|
|
|
|
|
&:focus {
|
2020-04-24 12:23:25 +00:00
|
|
|
outline: 2px solid $core-grey-light-600;
|
2020-01-15 11:32:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 09:53:42 +00:00
|
|
|
.wc-block-components-quantity-selector {
|
2020-01-15 11:32:54 +00:00
|
|
|
display: flex;
|
|
|
|
min-width: 100px;
|
2020-04-24 12:23:25 +00:00
|
|
|
border: 1px solid $core-grey-light-600;
|
2020-01-15 11:32:54 +00:00
|
|
|
background: #fff;
|
|
|
|
border-radius: 4px;
|
2020-08-14 11:08:16 +00:00
|
|
|
// needed so that buttons fill the container.
|
|
|
|
box-sizing: content-box;
|
|
|
|
|
|
|
|
.has-dark-controls & {
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: $input-border-dark;
|
|
|
|
}
|
2020-01-15 11:32:54 +00:00
|
|
|
|
2020-05-12 13:56:09 +00:00
|
|
|
// Extra label for specificity needed in the editor.
|
2020-06-17 09:53:42 +00:00
|
|
|
input.wc-block-components-quantity-selector__input {
|
2020-05-29 10:16:33 +00:00
|
|
|
@include font-size(regular);
|
2020-01-15 11:32:54 +00:00
|
|
|
order: 2;
|
|
|
|
min-width: 40px;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
border: 0;
|
2020-04-24 12:23:25 +00:00
|
|
|
padding: 0.4em 0;
|
2020-01-15 11:32:54 +00:00
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
|
|
background: transparent;
|
2020-04-24 12:23:25 +00:00
|
|
|
box-shadow: none;
|
2020-01-15 11:32:54 +00:00
|
|
|
color: #000;
|
2020-04-24 12:23:25 +00:00
|
|
|
line-height: 1;
|
2020-01-15 11:32:54 +00:00
|
|
|
vertical-align: middle;
|
|
|
|
-moz-appearance: textfield;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: $core-grey-light-200;
|
2020-04-24 12:23:25 +00:00
|
|
|
outline: 1px solid $core-grey-light-600;
|
2020-01-15 11:32:54 +00:00
|
|
|
}
|
2020-02-27 20:52:18 +00:00
|
|
|
&:disabled {
|
|
|
|
color: $core-grey-dark-100;
|
|
|
|
}
|
2020-08-14 11:08:16 +00:00
|
|
|
|
|
|
|
.has-dark-controls & {
|
|
|
|
color: $input-text-dark;
|
|
|
|
background: transparent;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
&:disabled {
|
|
|
|
color: $input-disabled-dark;
|
|
|
|
}
|
|
|
|
}
|
2020-01-15 11:32:54 +00:00
|
|
|
}
|
|
|
|
input::-webkit-outer-spin-button,
|
|
|
|
input::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2020-06-17 09:53:42 +00:00
|
|
|
.wc-block-components-quantity-selector__button {
|
2020-01-15 11:32:54 +00:00
|
|
|
@include reset-button;
|
2020-05-29 10:16:33 +00:00
|
|
|
@include font-size(regular);
|
2020-01-15 11:32:54 +00:00
|
|
|
min-width: 30px;
|
|
|
|
cursor: pointer;
|
|
|
|
color: $core-grey-dark-700;
|
|
|
|
font-style: normal;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
@include reset-button;
|
|
|
|
color: $core-grey-dark-900;
|
|
|
|
}
|
|
|
|
&:disabled {
|
|
|
|
color: $core-grey-dark-100;
|
|
|
|
cursor: default;
|
|
|
|
@include reset-button;
|
|
|
|
}
|
2020-08-14 11:08:16 +00:00
|
|
|
|
|
|
|
.has-dark-controls & {
|
|
|
|
color: $input-text-dark;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: $input-text-dark;
|
|
|
|
}
|
|
|
|
&:disabled {
|
|
|
|
color: $input-disabled-dark;
|
|
|
|
}
|
|
|
|
}
|
2020-01-15 11:32:54 +00:00
|
|
|
}
|
2020-06-17 09:53:42 +00:00
|
|
|
.wc-block-components-quantity-selector__button--minus {
|
2020-01-15 11:32:54 +00:00
|
|
|
order: 1;
|
|
|
|
}
|
2020-06-17 09:53:42 +00:00
|
|
|
.wc-block-components-quantity-selector__button--plus {
|
2020-01-15 11:32:54 +00:00
|
|
|
order: 3;
|
|
|
|
}
|
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
|
|
|
}
|