mirror of
https://github.com/transloadit/uppy.git
synced 2026-08-03 23:33:57 +00:00
48 lines
748 B
CSS
48 lines
748 B
CSS
.uppy {
|
|
font-family: "Comic Sans MS";
|
|
color: purple;
|
|
border: 1px dashed pink;
|
|
font-size: 32px;
|
|
}
|
|
|
|
/**
|
|
* Drag & Drop
|
|
*/
|
|
|
|
.UppyDragDrop {
|
|
width: 300px;
|
|
text-align: center;
|
|
padding: 100px 10px;
|
|
}
|
|
|
|
/* http://tympanus.net/codrops/2015/09/15/styling-customizing-file-inputs-smart-way/ */
|
|
.UppyDragDrop-input {
|
|
width: 0.1px;
|
|
height: 0.1px;
|
|
opacity: 0;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
z-index: -1;
|
|
}
|
|
|
|
.UppyDragDrop.is-dragdrop-supported {
|
|
border: 2px dashed;
|
|
border-color: #ccc;
|
|
}
|
|
|
|
.UppyDragDrop-label {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.UppyDragDrop-dragText {
|
|
display: none;
|
|
}
|
|
|
|
.is-dragdrop-supported .UppyDragDrop-dragText {
|
|
display: inline;
|
|
}
|
|
|
|
.UppyDragDrop.is-dragover {
|
|
border-color: #d2ecea;
|
|
background-color: #dbf5f3;
|
|
}
|