blob: 2f3ed86934e46c68ef155bda75055a529d11efb6 (
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
|
.image-thumbnail {
display: inline-block;
vertical-align: top;
width: 128px;
height: 128px;
margin: .5em;
}
.glyphicon.spinner {
animation: glyphicon-spin-r 3s infinite linear;
}
@keyframes glyphicon-spin-r {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
#dropzone {
border-radius: 5px;
border: 2px dashed #f0f0f0;
}
#dropzone.drop-active {
border: 2px dashed #808080;
}
#dropzone.drop-invalid {
border: 2px dashed #e00000;
}
/* Fix form group spilling outside the dropzone. */
#dropzone .form-group {
margin: 5px;
}
|