blob: 63615b278fcadb86e52ef46d6d8c0e856c3e43f3 (
plain)
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
|
.treeFolderLink:link
{
color: #000000;
font-size: 16px;
font-weight: normal;
font-family: "arial";
text-decoration: none;
}
.treeFolderLink:visited
{
color: #000000;
font-size: 16px;
font-weight: normal;
font-family: "arial";
text-decoration: none;
}
.treeFolderLink:hover
{
color: #000000;
font-size: 16px;
font-weight: normal;
font-family: "arial";
text-decoration: underline;
}
.treeFolderLink:active
{
color: #000000;
font-size: 16px;
font-weight: normal;
font-family: "arial";
text-decoration: none;
}
ol.tree
{
margin-left: 0px;
padding: 0 0 0 20px;
width: 300px;
}
li
{
position: relative;
margin-left: -15px;
list-style: none;
}
li.file
{
margin-left: -17px !important;
}
li.file a
{
background: url(TreeViewItem.png) 0 0 no-repeat;
color: #000000;
font-size: 16px;
font-weight: normal;
font-family: "arial";
padding-left: 21px;
margin-top: 5px;
text-decoration: none;
display: block;
}
li.file a:hover
{
text-decoration: underline;
}
li input
{
position: absolute;
left: 0;
margin-left: 0;
opacity: 0;
z-index: 2;
cursor: pointer;
height: 1em;
width: 1em;
top: 0;
}
li input + ol
{
background: url(TreeViewExpand.png) 40px 0 no-repeat;
margin: -17px 0 0 -44px;
height: 1em;
}
li input + ol > li { display: none; margin-left: -14px !important; padding-left: 1px; }
li label
{
cursor: pointer;
display: block;
padding-left: 18px;
margin-top: 5px;
}
li input:checked + ol
{
background: url(TreeViewCollapse.png) 40px 5px no-repeat;
margin: -22px 0 0 -44px;
padding: 20px 0 0 80px;
height: auto;
}
li input:checked + ol > li { display: block; margin: 0 0 0.125em; /* 2px */}
li input:checked + ol > li:last-child { margin: 0 0 0.063em; /* 1px */ }
|