sortable-dnd-uploader
Version:
Drag and Drop media uploader with sorting and titles
52 lines (48 loc) • 850 B
CSS
.sortable-dnd-uploader {
border: 2px dashed #ccc;
min-height: 150px;
padding: 10px;
display: flex;
flex-wrap: wrap;
gap: 10px;
background-color: #fafafa;
}
.sdu-block {
position: relative;
width: 200px;
border: 1px solid #ddd;
background: white;
border-radius: 4px;
padding: 5px;
cursor: move;
display: flex;
flex-direction: column;
align-items: center;
}
.sdu-media {
max-width: 100%;
max-height: 150px;
object-fit: contain;
border-radius: 3px;
user-select: none;
pointer-events: none;
}
.sdu-title {
width: 100%;
margin-top: 5px;
padding: 5px;
border: 1px solid #ccc;
border-radius: 3px;
font-size: 14px;
}
.sdu-delete {
position: absolute;
top: 2px;
right: 4px;
background: transparent;
border: none;
color: red;
font-size: 20px;
cursor: pointer;
user-select: none;
}