blob: 8d94dad9f43e629871fd919f745c4dcac934d98e (
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
|
/*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{
border-bottom: 1px solid black;
}
#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;
}
#progress-head{
text-align: right;
padding-right: 22px;
}
td.filenameCol{
max-width: 190px;
overflow: hidden;
}
td.filesizeCol{
width: 55px;
text-align: right;
}
td.publicCol{
width: 40px;
text-align: center;
vertical-align: middle;
}
td.progressCol{
width: 100px;
height: 20px;
text-align:right;
padding-right: 22px;
}
.progressBar{
width: 100px;
height: 20px;
background-color: #f3f3f3;
border: 0;
height: 18px;
border-radius: 9px;
vertical-align: middle;
}
|