mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 12:25:15 +08:00
It seems like this iframe (added when ACDC is enabled) can result in some empty space being shown because of some inherited `body` CSS about fonts/text. So hiding it via `display: none`, I think it will not cause any issues, because this iframe is not supposed to be visible anyway (`width`, `height` are set to `0`).
21 lines
378 B
SCSS
21 lines
378 B
SCSS
#payment ul.payment_methods li img.ppcp-card-icon {
|
|
padding: 0 0 3px 3px;
|
|
max-height: 25px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.payments-sdk-contingency-handler {
|
|
z-index: 1000 !important;
|
|
}
|
|
|
|
.ppcp-credit-card-gateway-form-field-disabled {
|
|
opacity: .5 !important;
|
|
}
|
|
|
|
.ppcp-dcc-order-button {
|
|
float: right;
|
|
}
|
|
|
|
iframe[id^="hosted-fields-tokenization-frame_"] {
|
|
display: none;
|
|
}
|