-
Notifications
You must be signed in to change notification settings - Fork 0
/
webuploader.css
84 lines (83 loc) · 1.76 KB
/
webuploader.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
75
76
77
78
79
80
81
82
83
84
@charset "utf-8";
#uploader-demo {
width: 100%;
height: 100%;
box-sizing:border-box;
margin: 0;
padding: 0;
text-align: left;
}
#uploader-demo .webuploader-container {
position: relative;
display: inline-block;
width: 111px;
height: 111px;
box-sizing: border-box;
padding: 0;
margin: 0;
}
#uploader-demo .webuploader-element-invisible {
position: absolute !important;
width: 111px;
height: 111px;
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
clip: rect(1px,1px,1px,1px);
}
#uploader-demo .webuploader-pick {
display: inline-block;
width: 111px;
height: 111px;
line-height: 111px;
padding: 0;
margin: 0;
cursor: pointer;
background: #aaa;
text-align: center;
overflow: hidden;
font-size: 20px;
color: #fff;
font-weight: bold;
}
#uploader-demo .webuploader-pick-hover {
}
#uploader-demo .webuploader-pick-disable {
opacity: 0.6;
pointer-events:none;
}
#uploader-demo .uploader-list,
#uploader-demo .uploader-list .file-item{
width: auto;
height: auto;
display: inline-block;
margin: 0;
text-align: left;
padding: 0;
vertical-align: top;
}
#uploader-demo .uploader-list .file-item{
margin: 0 10px 10px 0;
padding: 0;
position: relative;
}
#uploader-demo .uploader-list .file-item .info,
#uploader-demo .uploader-list .file-item .error{
display: none;
}
#uploader-demo .uploader-list .file-item .upload_delete{
width: 20px;
height: 20px;
line-height: 20px;
background: #555;
position: absolute;
right: 0;
top: 0;
margin: 0;
padding: 0;
color: #fff;
text-align: center;
font-weight: bold;
}
#uploader-demo .uploader-list .file-item img{
width: 111px;
display: inline-block;
}