summaryrefslogtreecommitdiff
path: root/addons/stock/static/src/scss/report_stock_rule.scss
blob: 2e5547621a56b4167ce87fc7b7b4ab5a0dec099f (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
.o_report_stock_rule{
    .o_report_stock_rule_rule {
        display: flex;
        flex-flow: row nowrap;
    }
    .o_report_stock_rule_legend {
        display: flex;
        flex-flow: row wrap;
        max-width: 1000px;
    }

    .o_report_stock_rule_legend_line {
        flex: 0 1 auto;
        display: flex;
        flex-flow: row nowrap;
        width: 29%;
        margin-right: 20px;
        margin-left: 20px;
        margin-top: 15px;
        min-width: 200px;
        >.o_report_stock_rule_legend_label {
            flex: 1 1 auto;
            width: 30%;
            min-width: 100px;
        }
        >.o_report_stock_rule_legend_symbol {
            flex: 1 1 auto;
            width: 70%;
        }
    }


    .o_report_stock_rule_putaway {
        >p {
            text-align: center;
            color: black;
            font-weight: normal;
            font-size: 12px
        }
    }

    .o_report_stock_rule_line {
        flex: 1 1 auto;
        height: 20px;
        >line {
            stroke: black;
            stroke-width: 1;
        }
    }

    .o_report_stock_rule_arrow {
        flex: 0 0 auto;
        height: 20px;
        width: 20px;
        >svg {
            >line {
                stroke: black;
                stroke-width: 1;
            }
            >polygon {
                fill: black;
                fill-opacity: 0.5;
                stroke: black;
                stroke-width: 1;
            }
        }
    }

    .o_report_stock_rule_vertical_bar {
        flex: 0 0 auto;
        height: 20px;
        width: 2px;
        >svg {
            >line {
                stroke: black;
                stroke-width: 2;
            }
        }
    }

    .o_report_stock_rule_rule_name {
        text-align: center;
    }

    .o_report_stock_rule_symbol_cell {
        border: none !important;
        >div {
            max-width: 200px;
            height: 20px;
        }
    }

    .o_report_stock_rule_rule_main {
        height: 100%;
        padding-top: 2px;
    }
    .o_report_stock_rule_location_header {
        text-align: center;
        >a {
            display: block;
            &:hover {
                text-decoration: none;
                cursor: pointer;
                background-color: #efefef;
            }
            >div {
                color: black;
            }
        }
    }
    .o_report_stock_rule_rule_cell {
        padding:0 !important;
        >a {
            display: block;
            &:hover {
                text-decoration: none;
                cursor: pointer;
                background-color: #efefef;
            }
        }
    }
}