summaryrefslogtreecommitdiff
path: root/web_responsive/static/src/css/kanban_view_mobile.scss
blob: 76d86d09d00b22fe5d4730aceea72d61f7a998ca (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
@include media-breakpoint-down(sm) {
    .o_kanban_view.o_kanban_grouped {
        display: block;
        position: relative;
        overflow-x: hidden;
        &.o_renderer_with_searchpanel {
            width: 100%;
        }

        .o_kanban_mobile_tabs_container {
            position: sticky;
            display: flex;
            justify-content: space-between;
            width: 100%;
            top: 0;
            z-index: 1;
            background-color: #5e5e5e;

            .o_kanban_mobile_add_column {
                height: $o-kanban-mobile-tabs-height;
                padding: 10px;
                border-left: grey 1px solid;
                color: white;
                font-size: 14px;
            }

            .o_kanban_mobile_tabs {
                position: relative;
                display: flex;
                width: 100%;
                height: $o-kanban-mobile-tabs-height;
                overflow-x: auto;

                .o_kanban_mobile_tab {
                    height: $o-kanban-mobile-tabs-height;
                    padding: 10px 20px;
                    font-size: 14px;
                    color: white;

                    &.o_current {
                        font-weight: bold;
                        border-bottom: 3px solid $o-brand-primary;
                    }

                    .o_column_title {
                        white-space: nowrap;
                        text-transform: uppercase;
                    }
                }
            }
        }
        .o_kanban_columns_content {
            position: relative;
        }
        // [class] to get same specificity as elsewhere (kanban_view.less)
        &[class] .o_kanban_group:not(.o_column_folded) {
            @include o-position-absolute(
                $top: $o-kanban-mobile-tabs-height,
                $left: 0,
                $bottom: 0
            );
            width: 100%;
            padding: 0;
            margin-left: 0; // override the margin-left: -1px of the desktop mode
            border: none;

            &.o_current {
                position: inherit;
                top: 0;

                &.o_kanban_no_records {
                    // set a default height for clarity when embedded in another view
                    min-height: $o-kanban-mobile-empty-height;
                }
            }

            .o_kanban_header {
                display: none;
            }
            .o_kanban_record,
            .o_kanban_quick_create {
                border: none;
                border-bottom: 1px solid lightgray;
                padding: 10px 16px;
                margin: 0;
            }
        }
    }
    .o_kanban_view .o_column_quick_create {
        .o_quick_create_folded {
            display: none !important;
        }
        .o_quick_create_unfolded {
            width: 100%;
        }
    }
}