index.less
1.59 KB
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
@import "~@/mixins.less";
.commonPartsInfo {
width: 100%;
height: 100%;
display: flex;
background-color: #FFF;
padding: 10px;
:global {
.leftTree {
flex: 0 0 250px;
background-color: #f5f5f5;
border: 1px solid #AAA;
padding: 10px;
.ant-tree {
width: 100%;
height: 100%;
background-color: transparent;
overflow: auto;
font-size: 18px;
.ant-tree-treenode {
padding-bottom: 8px;
}
.ant-tree-title {
padding-left: 8px;
}
}
.ant-tree-show-line .ant-tree-switcher {
background-color: transparent;
}
}
.rightContent {
flex: 1;
padding-left: 10px;
.ant-divider {
margin-top: 0;
margin-bottom: 0;
color: #000000;
display: none;
&::before,
&::after {
border-color: rgba(0, 0, 0, 0.2);
}
}
.ant-tabs {
height: 100%;
.ant-tabs-content-holder {
height: calc(100% - 50px);
}
}
.ant-tabs-tabpane {
width: 100%;
height: 100%;
overflow: auto;
overflow-x: hidden;
.tabPaneComponent {
>div {
overflow-y: hidden !important;
}
}
}
}
.ant-form-item[class*="formItemMargin"] {
border: 1px solid #AAA;
}
.ant-form-item-label {
label {
span {
.flex(center, center);
}
}
}
input[disabled],
.ant-select-selection-item {
color: #096dd9 !important;
}
}
}