mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
27 lines
444 B
SCSS
27 lines
444 B
SCSS
@use "../../../ppcp-button/resources/css/mixins/apm-button" as apm-button;
|
|
|
|
.ppcp-field-hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.ppcp-field-disabled {
|
|
cursor: not-allowed;
|
|
-webkit-filter: grayscale(100%);
|
|
filter: grayscale(100%);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.ppcp-field-indent {
|
|
th {
|
|
padding-left: 20px;
|
|
}
|
|
}
|
|
|
|
// Prevents spacing after button group.
|
|
.ppcp-button-preview-inner {
|
|
line-height: 0;
|
|
}
|
|
|
|
.ppcp-button-apm {
|
|
@include apm-button.button;
|
|
}
|