Tree.css
787 Bytes
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
.tree {
background: #fff;
border: 1px solid #e9e9e9;
margin-right: 15px;
width: 200px;
min-height: 315px;
}
.treeNode {
background: #f7f7f7;
transition: background .3s ease;
padding: 4px 0!important;
margin-bottom: 3px!important;
}
.treeNode:before {
width: 0!important;
border-left: 0!important;
}
.treeNode ul {
background: #fbfbfb;
}
.treeNode ul .treeNode {
background: #fbfbfb;
}
.advCol{
padding-left: 10px;
}
.advCol button{margin-left: 10px}
.advColTitle{
background-color: #f0f0f0;
width: 100%;
height: 30px;
line-height: 30px;
display: flex;
}
.advColExpand{
margin-top: 11px;
padding-left: 15px;
font-size: 12px;
font-weight: 600;
}
.advColCt{
margin-top: 4px;
padding-left: 21px;
font-size: 12px;
font-weight: 600;
}