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
:root {
font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
label {
margin-bottom: 0;
}
.filetree {
padding-left: 20px;
}
.filetree input[type="checkbox"] {
display: none;
}
.filetree input[type=checkbox] + label:before {
font-family: FontAwesome;
display: inline-block;
}
.filetree input[type=checkbox] + label:before {
content: "\f114";
letter-spacing: 10px;
width: 30px;
}
.filetree input[type=checkbox]:checked + label:before {
content: "\f115";
}
.filetree ul {
height: 0;
overflow: hidden;
}
.filetree > li input:checked ~ ul, .filetree > li ul.insearch {
height: auto;
}
.filetree li {
list-style: none;
cursor: pointer;
color: #ffffff;
}
.filetree label {
line-height: 33px;
display: inline-block;
}
.search {
border-left-width: 0;
border-bottom: #19aa8d 2px inset;
}
.left-search {
padding-left: 14px;
width: 100%;
border: none;
height: 28px;
background: #2f2a2a;
color: #ffffff;
}
.footer {
background: #2f2a2a;
font-size: 9pt;
border-top-width: 1px;
left: 0;
padding: 1px 20px 0 20px;
position: absolute;
}
.fa.fa-undefined:before {
content: "\f26c";
}