-
Notifications
You must be signed in to change notification settings - Fork 0
/
braintree_payment.css
57 lines (55 loc) · 1.33 KB
/
braintree_payment.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* Braintree hosted fields */
.braintree-hosted-fields-wrapper iframe {
display: none;
}
.braintree-hosted-fields-wrapper.braintree-hosted-fields-processed iframe {
display: block;
}
.braintree-hosted-fields-wrapper select,
.braintree-hosted-fields-wrapper input {
visibility: hidden;
}
.braintree-hosted-fields-wrapper.braintree-hosted-fields-processed select,
.braintree-hosted-fields-wrapper.braintree-hosted-fields-processed input {
display: none !important;
}
.braintree-hosted-fields-processed {
border: 1px solid #ccc;
padding: 4px;
margin: 2px 0;
}
.braintree-hosted-fields-processed.invalid,
.braintree-hosted-fields-processed.braintree-hosted-fields-invalid {
color: #8c2e0b;
border: 2px solid red;
}
.braintree-hosted-fields-processed.focused,
.braintree-hosted-fields-processed.braintree-hosted-fields-focused {
outline-offset: -2px;
}
.loading > .fieldset-wrapper {
position: relative;
}
.loading-wrapper {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: white;
opacity: 0.6;
margin-bottom: -16px;
}
/* Braintree Apple Pay */
button.braintree.apple-pay {
width: 100%;
min-height: 40px;
}
@supports (-webkit-appearance: -apple-pay-button) {
button.braintree.apple-pay {
-webkit-appearance: -apple-pay-button;
}
button.braintree.apple-pay span {
visibility: hidden;
}
}