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
|
.dropzone .dz-preview .dz-remove-mark {
z-index: 500;
position: absolute;
display: block;
top: 0%;
left: 100%;
margin-left: -14px;
margin-top: -14px;
color: red;
}
.dropzone .dz-preview .dz-remove-mark svg {
display: block;
width: 28px;
height: 28px;
cursor: pointer;
}
.dropzone .dz-preview .dz-remove-mark svg path {
cursor: pointer;
}
.dropzone {
background: #eee;
border: none !important;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
background: #aaa;
}
.dropzone .dz-preview .dz-details .dz-filename {
white-space: pre-wrap;
height: 60px;
}
.dropzone .dz-preview .dz-progress {
margin-top: 0;
top: 90px;
}
.dropzone .dz-preview .dz-progress .dz-upload {
background: #444;
}
.dropzone.scaled {
min-height: 150px;
}
.dropzone {
min-height: 60px;
padding: 2px;
}
.dropzone.scaled .dz-message {
margin-top: 65px;
}
.dropzone {
transition: min-height 0.3s;
}
.dropzone .dz-message {
transition: margin-top 0.3s;
}
.dropzone div {
pointer-events: none;
}
.dropzone .pointer-events {
pointer-events: auto;
}
.dropzone .dz-preview.dz-image-preview {
background-color: #eee;
}
|