woocommerce-paypal-payments/modules/ppcp-applepay/resources/css/styles.scss

57 lines
1.2 KiB
SCSS
Raw Normal View History

2023-09-12 14:07:09 +02:00
#applepay-container {
2023-09-12 11:43:37 +02:00
--apple-pay-button-height: 45px;
--apple-pay-button-min-height: 40px;
2023-09-05 09:14:20 +02:00
--apple-pay-button-width: 100%;
2023-09-12 15:37:04 +02:00
--apple-pay-button-max-width: 750px;
2023-09-05 09:14:20 +02:00
--apple-pay-button-border-radius: 4px;
--apple-pay-button-overflow: hidden;
2023-09-12 11:43:37 +02:00
--apple-pay-button-margin:7px 0;
2023-08-31 12:48:01 +02:00
&.ppcp-button-pill {
2023-09-12 14:07:09 +02:00
--apple-pay-button-border-radius: 50px;
2023-08-31 12:48:01 +02:00
}
&.ppcp-button-minicart {
2023-09-12 11:43:37 +02:00
--apple-pay-button-display: block;
--apple-pay-button-height: 40px;
2023-08-31 12:48:01 +02:00
}
}
.woocommerce-checkout {
#applepay-container {
2023-09-12 11:43:37 +02:00
margin-top: 0.5em;
--apple-pay-button-border-radius: 4px;
--apple-pay-button-height: 45px;
2023-09-12 14:07:09 +02:00
&.ppcp-button-pill {
--apple-pay-button-border-radius: 50px;
}
2023-08-31 12:48:01 +02:00
}
}
2023-10-16 15:49:28 +02:00
.ppcp-has-applepay-block {
2023-09-12 14:07:09 +02:00
.wp-block-woocommerce-checkout {
#applepay-container {
2023-10-16 15:49:28 +02:00
--apple-pay-button-margin: 0;
--apple-pay-button-height: 40px;
&.ppcp-button-pill {
--apple-pay-button-border-radius: 50px;
}
2023-09-12 14:07:09 +02:00
}
2023-08-31 12:48:01 +02:00
}
2023-09-12 14:07:09 +02:00
.wp-block-woocommerce-cart {
#applepay-container {
2023-10-16 15:49:28 +02:00
--apple-pay-button-margin: 0;
--apple-pay-button-height: 40px;
2023-09-12 14:07:09 +02:00
}
/* Workaround for blocks grid */
.wc-block-components-express-payment__event-buttons {
2023-10-16 15:49:28 +02:00
--apple-pay-button-display: block;
2023-09-12 14:07:09 +02:00
li[id*="express-payment-method-ppcp-"] {
2023-10-16 15:49:28 +02:00
--apple-pay-button-padding-bottom: 0;
2023-09-12 14:07:09 +02:00
}
}
}
2023-08-24 18:05:05 +02:00
}