blob: 01649de63379617504a64f164b7b25d392007164 (
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
|
/*Dropzone field*/
#dropzone{
width: 400px;
height: 150px;
border: 1px solid black;
text-align: center;
display: table;
}
/*Dropzone description text*/
#dropzone p{
display: table-cell;
vertical-align:middle;
font-size: 16pt;
color: grey;
}
/* wraps the upload queue table*/
#filelist-wrapper{
height: 120px;
overflow-y: auto;
overflow-x: hidden;
margin-top: 10px;
}
#filelist {
width: 400px;
border-collapse: collapse;
}
#filelist th{
background: green;
}
#filelist tr{
background: white;
width: 400px;
}
/*Set upload queue header alignment*/
#filename-head{
text-align: left;
}
#filesize-head{
text-align:right;
}
#public-head{
text-align: center;
}
td.publicCol{
width: 80px;
text-align: center;
vertical-align: middle;
}
td.filenameCol{
width: 130px;
overflow: hidden;
}
.progressBar{
width: 100px;
height: 20px;
background-color: #f3f3f3;
border: 0;
height: 18px;
border-radius: 9px;
vertical-align: middle;
}
.progressCol{
width: 100px;
height: 20px;
}
.filesize{
text-align: right;
}
|