blob: 7055e6c22fff6f408aaddba1f9fbcfb14feac7ab (
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
|
#dropzone{
width: 400px;
height: 150px;
border: 1px solid black;
text-align: center;
display: table;
}
#dropzone p{
display: table-cell;
color: red;
vertical-align:middle;
font-size: 16pt;
color: grey;
}
#filelist tr{
background: white;
width: 400px;
}
#filelist tr:nth-child(odd){
background: #E6E6FF;
}
#filelist-wrapper{
height: 120px;
overflow-y: auto;
overflow-x: hidden;
margin-top: 10px;
}
#filelist {
width: 400px;
}
.progressBar{
width: 100px;
height: 20px;
}
.progressCol{
width: 100px;
height: 20px;
}
.filesize{
text-align: right;
}
|