summaryrefslogtreecommitdiff
path: root/addons/payment/static/src/scss/payment_form.scss
blob: de1e010224cbf73555f42262738c6477c399a697 (plain)
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
.o_payment_form {
    label > input[type="radio"], input[type="checkbox"]{
        vertical-align: middle;
        margin-right: 5px;
    }

    .payment_option_name {
        font-size: 14px;
        font-weight: normal !important;
        font-family: Helvetica Neue, sans-serif;
        line-height: 1.3em;
        color: #4d4d4d;
    }

    label {
        font-weight: normal;
        margin-top: 5px;
    }

    .card-body:first-child {
        border-top: 0px;
    }

    .card {
        border-radius: 10px;
    }

    .card-footer:last-child {
        border-bottom-right-radius: 10px !important;
        border-bottom-left-radius: 10px !important;
    }

    .card-body {
        border-top: 1px solid #ddd;
        padding: 1.14em !important;
        &.o_payment_acquirer_select:hover {
            cursor: pointer;
        }
    }

    .payment_icon_list {
        position: relative;
        li {
            padding-left: 5px !important;
            padding-right: 0px !important;
        }

        .more_option {
            @include o-position-absolute($right: 10px);
            font-size:10px;
        }

        margin-top: 0px !important;
        margin-bottom: -5px !important;
    }
}