woocommerce/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/checkout/style.scss

236 lines
4.5 KiB
SCSS

.wp-block-woocommerce-checkout .with-scroll-to-top__scroll-point {
top: -96px;
}
.wc-block-checkout__use-address-for-billing {
margin-top: em($gap-large);
}
.wc-block-checkout__shipping-option {
.wc-block-components-shipping-rates-control__package:not(:first-of-type) {
margin-top: $gap-larger;
}
}
.wc-block-checkout__sidebar {
.wc-block-components-product-name {
color: inherit;
padding-right: $gap-small;
flex-grow: 1;
// Required by IE11.
flex-basis: 0;
}
}
.wc-block-components-express-checkout-continue-rule {
display: flex;
align-items: center;
text-align: center;
padding: 0 $gap-larger;
margin: $gap-large 0;
&::before {
margin-right: 10px;
}
&::after {
margin-left: 10px;
}
&::before,
&::after {
content: " ";
flex: 1;
border-bottom: 1px solid;
opacity: 0.3;
}
}
.wc-block-checkout__actions {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 0 $gap-large*2;
padding: 0 0 0 $gap-larger;
.wc-block-components-checkout-place-order-button {
width: 50%;
padding: 1em;
height: auto;
margin-left: auto;
.wc-block-components-button__text {
line-height: 24px;
> svg {
fill: $white;
vertical-align: top;
}
}
}
}
// Loading placeholder state.
.wc-block-checkout--is-loading {
.wc-block-components-express-checkout,
.wc-block-checkout__actions button {
@include placeholder();
@include force-content();
}
.wc-block-components-express-checkout {
min-height: 150px;
}
.wc-block-components-express-checkout-continue-rule > span {
@include placeholder();
@include force-content();
width: 150px;
}
.wc-block-components-checkout-form {
.wc-block-components-checkout-step__title {
@include placeholder();
@include force-content();
display: block;
width: 10em;
&::before {
@include placeholder();
@include force-content();
border-radius: 50%;
display: block;
height: 100%;
width: 1.5em;
}
}
.wc-block-components-checkout-step__container::after {
@include placeholder();
}
.wc-block-components-checkout-step__content > span {
@include placeholder();
@include force-content();
display: block;
min-height: 100px;
}
.wc-block-components-checkout-step::before,
.wc-block-components-checkout-step::after {
@include placeholder();
}
}
.wc-block-checkout__sidebar .components-card {
@include placeholder();
@include force-content();
min-height: 460px;
}
}
.wc-block-components-sidebar-layout.wc-block-checkout--skeleton {
display: none;
}
.is-loading + .wc-block-components-sidebar-layout.wc-block-checkout--skeleton {
display: flex;
}
.wc-block-checkout-empty,
.wc-block-checkout-error {
padding: $gap-largest;
text-align: center;
width: 100%;
.wc-block-checkout-empty__image,
.wc-block-checkout-error__image {
max-width: 150px;
margin: 0 auto 1em;
display: block;
color: inherit;
}
.wc-block-checkout-empty__title,
.wc-block-checkout-error__title {
display: block;
margin: 0;
font-weight: bold;
}
.wc-block-checkout-empty__description,
.wc-block-checkout-error__description {
display: block;
margin: 0.25em 0 1em 0;
}
}
.is-mobile {
.wc-block-checkout__actions {
.wc-block-components-checkout-return-to-cart-button {
display: none;
}
.wc-block-components-checkout-place-order-button {
width: 100%;
}
}
}
.is-mobile,
.is-small,
.is-medium {
.wc-block-checkout__main {
order: 1;
}
.wc-block-checkout__sidebar {
margin-bottom: $gap-largest;
order: 0;
}
}
.is-small,
.is-medium,
.is-large {
.wc-block-checkout__billing-fields,
.wc-block-checkout__shipping-fields {
.wc-block-components-address-form {
margin-left: #{-$gap-small / 2};
margin-right: #{-$gap-small / 2};
&::after {
content: "";
clear: both;
display: block;
}
.wc-block-components-text-input,
.wc-block-components-country-input,
.wc-block-components-state-input {
float: left;
margin-left: #{$gap-small / 2};
margin-right: #{$gap-small / 2};
position: relative;
width: calc(50% - #{$gap-small});
&:nth-of-type(2),
&:first-of-type {
margin-top: 0;
}
}
.wc-block-components-address-form__company,
.wc-block-components-address-form__address_1,
.wc-block-components-address-form__address_2 {
width: calc(100% - #{$gap-small});
}
.wc-block-components-checkbox {
clear: both;
}
}
}
}
.is-large {
.wc-block-checkout__actions {
padding-right: 36px;
}
.wc-block-checkout__shipping-option {
.wc-block-components-radio-control__input {
margin-left: -8px;
}
}
}