forked from FormstoneClassic/Dropper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery.fs.dropper.css
More file actions
42 lines (41 loc) · 803 Bytes
/
jquery.fs.dropper.css
File metadata and controls
42 lines (41 loc) · 803 Bytes
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
/*
* Dropper v1.0.1 - 2015-04-04
* A jQuery plugin for simple drag and drop uploads. Part of the Formstone Library.
* http://classic.formstone.it/dropper/
*
* Copyright 2015 Ben Plum; MIT Licensed
*/
.dropper {
overflow: hidden;
}
.dropper,
.dropper *,
.dropper *:before,
.dropper *:after {
box-sizing: border-box;
}
.dropper-dropzone {
background: #ffffff;
border: 3px dashed #cccccc;
border-radius: 0;
color: #666666;
cursor: pointer;
font-size: 14px;
margin: 0;
padding: 25px;
text-align: center;
}
.dropper.dropping .dropper-dropzone,
.no-touch .dropper:hover .dropper-dropzone {
background: #eeeeee;
border-color: #999999;
color: #333333;
}
.dropper-input {
position: absolute;
left: 100%;
opacity: 0;
}
.no-opacity .dropper-input {
left: -999px;
}