tom
2023-12-06 9e968679ed2e6937aeb7b50a6c450d5d19251f42
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
.band-tree {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}
 
.band-tree-bucket {
    background-color: #f6f6f6;
}
 
.band-tree-band {
    background-color: white;
}
 
.band-tree-bucket {
    position: relative;
    line-height: 32px;
    font-weight: normal;
    cursor: pointer;
}
 
.band-tree-band {
    position: relative;
    line-height: 32px;
    font-weight: normal;
    cursor: pointer;    
}
 
.band-tree-field {
    position: relative;
    line-height: 26px;
    font-weight: normal;
    cursor: pointer;
}
 
.band-tree-field:hover {
    background-color: #fff8f8;    
}
 
.bucket-header {
    padding-left: 25px;
    border-bottom: 1px solid #eaeaea;
}
 
.band-header {
    padding-left: 35px;
    background-color: #fffafa;
    border-bottom: 1px solid #eaeaea;
}
 
.band-tree-field {
    font-size: 12px;
    border: 1px solid white;
}
 
.used-flag {
    position: absolute;
    left: 25px;
    top: 0px;
    width: 20px;
    height: 20px;
    display: none;
}
 
.field-body {
    padding-left: 50px;
}
 
.band-tree-holder {
    position: relative;
    width: 150px;
    line-height: 24px;
    font-weight: normal;
    cursor: pointer;
    border-radius: 13px;
    box-sizing: border-box;
    background-color: #fff8f8;
    border: 1px solid gray;
    z-index: 10;
}
 
.holder-body {
    padding-left: 22px;
}
 
.band-tree-itemBody {
    background-color: #016985;
    color: #ddd;
}
 
.band-tree-itemBody:HOVER {
    background-color: #1a9182;
    color: white;
}
 
.band-tree-activeBody {
    background-color: #796161;
    color: white;
    font-weight: bold;
    border-left: 5px solid #33aecc; 
}
 
.band-tree-body-arrow {
    float: right;
    margin-right: 20px;
}
 
.band-tree-text {
    margin-left: 2px;
}
 
.band-arrow {
    float: right;
    margin-right: 15px;
    font-size: 12px;
    color: #9d9b9b;
}