dm-file-uploader
Version:
A very lightweight and configurable jQuery Plugin for file uploading using ajax(async); includes support for queues, progress tracking and drag and drop.
41 lines (39 loc) • 578 B
CSS
/*
A couple styles to make the demo page look good
*/
body {
padding-bottom: 2rem;
padding-top: 4rem;
}
.row {
margin-bottom: 1rem;
}
[class*="col-"] {
padding-top: 1rem;
padding-bottom: 1rem;
}
hr {
margin-top: 2rem;
margin-bottom: 2rem;
}
#files {
overflow-y: scroll ;
min-height: 320px;
}
@media (min-width: 768px) {
#files {
min-height: 0;
}
}
#debug {
overflow-y: scroll ;
height: 180px;
}
.dm-uploader {
border: 0.25rem dashed #A5A5C7;
text-align: center;
}
.dm-uploader.active {
border-color: red;
border-style: solid;
}