Administrator
2022-09-14 58d006e05dcf2a20d0ec5367dd03d66a61db6849
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
.fuelux .tree {
  position: relative;
  padding: 10px 15px 0 15px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #BBBBBB;
  border-radius: 4px 4px 4px 4px;
}
 
.fuelux .tree .tree-folder {
  width: 100%;
  min-height: 20px;
  margin-top: 1px;
  cursor: pointer;
}
 
.fuelux .tree .tree-folder .tree-folder-header {
  position: relative;
  height: 20px;
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
}
 
.fuelux .tree .tree-folder .tree-folder-header:hover {
  background-color: #dfeef5;
}
 
.fuelux .tree .tree-folder .tree-folder-header i {
  position: absolute;
  top: 1px;
  left: 5px;
  float: left;
}
 
.fuelux .tree .tree-folder .tree-folder-header .tree-folder-name {
  padding-left: 29px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
 
.fuelux .tree .tree-folder .tree-folder-content {
  margin-left: 23px;
}
 
.fuelux .tree .tree-item {
  position: relative;
  width: 100%;
  height: 20px;
  margin-top: 1px;
  cursor: pointer;
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
}
 
.fuelux .tree .tree-item:hover {
  background-color: #dfeef5;
}
 
.fuelux .tree .tree-item .tree-item-name {
  position: absolute;
  left: 29px;
}
 
.fuelux .tree .tree-item .tree-dot {
  position: absolute;
  top: 8px;
  left: 10px;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #333333;
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
}
 
.fuelux .tree .tree-item .icon-ok {
  position: absolute;
  top: 1px;
  left: 5px;
}
 
.fuelux .tree .tree-selected {
  background-color: #b9dff1;
}
 
.fuelux .tree .tree-selected:hover {
  background-color: #b9dff1;
}