blob: 65fff8b0f6c68130573533e33f14d6618d02b985 (
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
|
@CHARSET "UTF-8";
#gRearrange {
font-family: Verdana, sans-serif;
font-size: 11px;
}
#gAddAlbum {
background-image: url(../images/folder_add.png);
background-repeat: no-repeat;
padding-left: 20px;
padding-bottom: 5px;
cursor: pointer;
}
#gAddAlbumPopup {
display: none;
position: absolute;
border: 1px solid #6fa5fd;
z-index: 2;
background: #ffffff;
}
#gAddAlbumPopupClose {
font-size:14px;
line-height:14px;
right:6px;
top:4px;
position:absolute;
color:#6fa5fd;
font-weight:700;
display:block;
cursor: pointer;
}
#gDeleteItem {
background-image: url(../images/bin_closed.png);
background-repeat: no-repeat;
padding-left: 20px;
padding-bottom: 5px;
}
UL.jqueryFileTree {
font-family: Verdana, sans-serif;
font-size: 11px;
line-height: 18px;
padding: 0px;
margin: 0px;
}
UL.jqueryFileTree LI {
list-style: none;
padding: 0px;
padding-left: 20px;
margin: 0px;
white-space: nowrap;
}
UL.jqueryFileTree A {
color: #333;
text-decoration: none;
display: block;
padding: 0px 2px;
}
UL.jqueryFileTree A:hover {
background: #BDF;
}
/* Core Styles */
.jqueryFileTree LI.directory { background: url(../images/directory.png) left top no-repeat; }
.jqueryFileTree LI.expanded { background: url(../images/folder_open.png) left top no-repeat; }
.jqueryFileTree LI.file { background: url(../images/file.png) left top no-repeat; }
.jqueryFileTree LI.wait { background: url(../images/spinner.gif) left top no-repeat; }
.jqueryFileTree LI.item { background: url(../images/picture.png) left top no-repeat; }
/*
* File Extensions Support
* If we want to add differnt icons for different file extentions. then we just need to add
* classes for each extension and then add this class to the end of the classes on the 'li' element
* i.e. .jqueryFileTree LI.ext_fla { background: url(../images/flash.png) left top no-repeat; }
*/
|