forked from blueimp/jQuery-File-Upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.fileupload-ui.css
74 lines (65 loc) · 1.29 KB
/
jquery.fileupload-ui.css
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
.file_upload {
position: relative;
overflow: hidden;
direction: ltr;
cursor: pointer;
text-align: center;
color: #333;
font-weight: bold;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
width: 200px;
height: 30px;
line-height: 30px;
background: palegreen;
border: 1px solid limegreen;
}
.file_upload_small {
width: 200px;
height: 30px;
line-height: 30px;
font-size: auto;
background: palegreen;
border: 1px solid limegreen;
}
.file_upload_large {
width: 100%;
height: 150px;
line-height: 150px;
font-size: 20px;
background: palegreen;
border: 1px solid limegreen;
}
.file_upload_highlight {
background: lawngreen;
}
.file_upload input {
position: absolute;
top: 0;
right: 0;
margin: 0;
border: 300px solid transparent;
opacity: 0;
-ms-filter: 'alpha(opacity=0)';
filter: alpha(opacity=0);
-o-transform: translate(-300px, -300px) scale(10);
-moz-transform: translate(-800px, 0) scale(10);
cursor: pointer;
}
.file_upload iframe, .file_upload button {
display: none;
}
.file_upload_preview img {
width: 80px;
}
.file_upload_progress .ui-progressbar-value {
background: url(pbar-ani.gif);
}
.file_upload_progress div {
width: 150px;
height: 15px;
}
.file_upload_cancel button {
cursor: pointer;
}