summaryrefslogtreecommitdiff
path: root/addons/web/static/src/scss/modal.scss
blob: d5faa77177d5ed6e1628bf1de2e9fb42ab3ca0c7 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
.modal.o_technical_modal {

    .modal-content {
        border-radius: 0;

        .modal-header .o_subtitle {
            margin-left: 10px;
        }

        .modal-header .modal-title {
            word-break: break-word;
        }

        .modal-body {
            &.o_act_window {
                padding: 0;
            }

            .o_modal_header {
                @include o-webclient-padding($top: 10px, $bottom: 10px);
                @include clearfix;

                .o_search_options {
                    display: inline-block;
                }
                .o_pager {
                    float: right;
                }
            }

            > :not(.o_view_sample_data) .o_view_nocontent {
                position: unset;
            }

            .o_modal_changes td {
                &:first-child {
                    padding-right: 10px;
                    vertical-align: top;
                    white-space: nowrap;
                }
                &:not(:first-child) {
                    width: 100%;
                }
            }
        }

        .modal-footer {
            flex-wrap: wrap;
            text-align: left;
            justify-content: flex-start;

            // TODO These rules should not be necessary if we used buttons
            // as direct children of the modal-footer as normally required
            > div, > footer {
                flex: 1 1 auto;
            }

            footer {
                > :not(:first-child) { margin-left: .25rem; }
                > :not(:last-child) { margin-right: .25rem; }
                button {
                    margin-bottom: .5rem;
                }
            }
        }
    }

    @include media-breakpoint-up(sm) {
        .modal-dialog .modal-content .modal-body.o_dialog_error {
            overflow: visible;
            display: flex;
            flex-flow: column nowrap;

            > .alert, > button {
                flex: 0 0 auto;
            }

            > .o_error_detail {
                flex: 1 1 auto;
                min-height: 0;
                overflow: auto;
            }
        }
    }

    @include media-breakpoint-down(xs) {
        &.o_modal_full {
            .modal-dialog {
                margin: 0px;
                height: 100%;

                .modal-content {
                    height: 100%;
                    border: none;

                    .modal-header {
                        background: $o-brand-odoo;
                        .modal-title, .o_subtitle, button.close {
                            color: white;
                        }
                    }

                    .modal-body {
                        height: 100%;
                        overflow-y: auto;
                    }
                }
            }
        }
    }
}

.modal.o_inactive_modal {
    z-index: $zindex-modal-backdrop - 1;
}

.o_dialog {

    > .modal {
        display: block;
    }
}

// Temporary fix for modals which are not instantiated thanks to the Dialog
// JS classes (deprecated case) (see bootstrap_overridden.scss) + Frontend.
//
// TODO the following code was disabled because it is saas-incompatible
//
// :not(body) > .modal {
//     z-index: $zindex-modal-background + 1;
// }