blob: f52bcf10383efcbdabfd51cbc91dde6eaeac4e54 (
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
|
.o_web_client .o_export {
padding: 20px;
.o-export-panel {
height: 100%;
}
.o_left_panel {
padding-right: 10px;
flex-flow: column nowrap;
height: 100%;
.o_left_field_panel {
flex: 1;
overflow: auto;
}
.o_export_tree_item {
cursor: pointer;
position: relative;
padding-left: 20px;
&.o_selected > .o_tree_column {
background-color: $o-brand-odoo;
color: white;
}
.o_expand_parent {
@include o-position-absolute($top: 4px, $left: 5px);
font-size: 10px;
}
.o_required {
border-bottom: 2px solid $o-main-text-color;
}
}
}
.o_right_panel {
padding-left: 10px;
flex-flow: column nowrap;
height: 100%;
.o_save_list {
display: none;
}
.o_right_field_panel {
flex: 1;
overflow: auto;
.o_short_field {
cursor: ns-resize;
}
.o-field-placeholder {
border: 1px dashed $o-brand-primary;
}
.o_remove_field {
cursor: pointer;
}
}
}
}
|