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