blob: b2a9c989b805e9b9c89b6d8acf345d8c4a02520d (
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
|
.dojoxUploaderFileList{
border:1px solid #ccc;
min-height:50px;
}
.dojoxUploaderFileListTable{
width:100%;
border-collapse:collapse;
margin-top:5px;
}
.dojoxUploaderFileListHeader th{
background-color:#eee;
padding:3px;
}
.dojoxUploaderFileListRow{
}
.dojoxUploaderIndex{
width:20px;
}
.dojoxUploaderIcon{
width:50px;
}
.dojoxUploaderFileName{
}
.dojoxUploaderSize{
width:70px;
}
.dojoxUploaderFileListContent{
width:100%;
}
.dojoxUploaderFileListProgress{
border:1px solid #666;
height:15px;
position:relative;
background:#fff;
overflow:hidden;
}
.dojoxUploaderFileListPercentText{
position:absolute;
right:3px;
top:3px;
font-size:10px;
text-align:right;
}
.dojoxUploaderFileListProgressBar{
position:absolute;
top:0px;
left:0px;
height:15px;
width:0%;
background:#bfe1fd;
}
|