| 1 |
/* Hack to disable yellow bg color on filled fields and allow js to listen for it */ |
| 2 |
@keyframes onAutoFillStart {} |
| 3 |
input:-webkit-autofill { |
| 4 |
animation-name: onAutoFillStart; |
| 5 |
-webkit-transition: background-color 50000s ease-in-out 0s; |
| 6 |
transition: background-color 50000s ease-in-out 0s; |
| 7 |
} |
| 8 |
|
| 9 |
/* End of hack */ |
| 10 |
#mypabe-load, |
| 11 |
#mypabe-delivery-date-text, |
| 12 |
#header-delivery-options-title, |
| 13 |
#mypabe-delivery-option-form, |
| 14 |
#mypabe-location-details, |
| 15 |
.mypabe-message-model, |
| 16 |
.woocommerce form .optional { |
| 17 |
display: none; |
| 18 |
} |
| 19 |
|
| 20 |
.woocommerce-page form .form-row-third { |
| 21 |
float: left; |
| 22 |
width: 16%; |
| 23 |
overflow: visible; |
| 24 |
} |
| 25 |
|
| 26 |
.woocommerce form .form-row-third { |
| 27 |
margin-right: 4%; |
| 28 |
} |
| 29 |
|
| 30 |
.woocommerce form .form-row-third.first { |
| 31 |
width: 60%; |
| 32 |
} |
| 33 |
|
| 34 |
.woocommerce-page form .form-row-third.last { |
| 35 |
margin-right: 0 !important; |
| 36 |
} |
| 37 |
|
| 38 |
@media screen and (max-width: 450px) { |
| 39 |
.woocommerce-page form .form-row-third.first { |
| 40 |
width: 100%; |
| 41 |
} |
| 42 |
|
| 43 |
.woocommerce-page form .form-row-third { |
| 44 |
width: 48%; |
| 45 |
} |
| 46 |
} |
| 47 |
#billing_house_number::-webkit-outer-spin-button, |
| 48 |
#billing_house_number::-webkit-inner-spin-button, |
| 49 |
#shipping_house_number::-webkit-outer-spin-button, |
| 50 |
#shipping_house_number::-webkit-inner-spin-button { |
| 51 |
-webkit-appearance: none; |
| 52 |
margin: 0; |
| 53 |
} |
| 54 |
|
| 55 |
#billing_house_number, #shipping_house_number { |
| 56 |
-moz-appearance: textfield; |
| 57 |
} |