summaryrefslogtreecommitdiff
path: root/addons/hr_recruitment/static/src/scss/hr_job.scss
blob: 3025c1bdb71cb5ec800509cae64c16d40af982a6 (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
.o_kanban_view.o_kanban_dashboard {
    &.o_hr_recruitment_kanban {
        &.o_kanban_ungrouped .o_kanban_record {
            width: 350px;
            &:not(.o_kanban_ghost) {
                height: 180px;
            }
        }

        .ribbon {
            &::before, &::after {
                display: none;
            }

            span {
                background-color: $o-brand-odoo;
                padding: 5px;
                font-size: small;
                z-index: unset;
                height: auto;
            }
        }
        .ribbon-top-right {
            margin-top: -$o-kanban-dashboard-vpadding;

            span {
                left: 0px;
                right: 30px;
            }
        }
    }

    .o_kanban_record_subtitle {
        height: 1em;
    }

    .o_recruitment_kanban_boxes {
        display: flex;
        flex-flow: row nowrap;

        .o_recruitment_kanban_box {
            position: relative;
            padding: 0 0 0 0;
            flex: 1 1 auto;
            display: flex;
            flex-flow: row nowrap;
            justify-content: center;

            &:first-child {
                justify-content: flex-start;
                padding-left: 16px;
            }
            div:last-child {
                justify-content: flex-end;
                text-align: right;
            }
            .o_link_trackers{
                .fa{
                    color: $o-brand-primary;
                } 
            }
            .o_value {
                font-weight: 800;
            }

            > a {
                font-weight: 500;

                &.o_needaction{
                    font-size: small;
                    font-weight: 400;
                    margin-left: 4px;
                    @include o-hover-opacity(0.5, 1);

                    &:before {
                        content: "/ ";
                    }

                    &:after {
                        content: "\f086";
                        font: normal normal normal 14px/1 FontAwesome;
                    }
                }
            }
        }
    }
}

.o_kanban_view .oe_kanban_card {
    .o_kanban_state_with_padding {
        padding-left:7%;
        padding-bottom:5%;
        width: 12px;
    }
}

.o_recruitment_list {
    .o_list_button {
        text-align: right;
    }
}