style.css 674 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .UppyDragDrop {
  2. width: 300px;
  3. /*height: 200px;*/
  4. text-align: center;
  5. /*background-color: #f6fbfb;*/
  6. padding: 100px 10px;
  7. }
  8. /* http://tympanus.net/codrops/2015/09/15/styling-customizing-file-inputs-smart-way/ */
  9. .UppyDragDrop-input {
  10. width: 0.1px;
  11. height: 0.1px;
  12. opacity: 0;
  13. overflow: hidden;
  14. position: absolute;
  15. z-index: -1;
  16. }
  17. .UppyDragDrop.is-dragdrop-supported {
  18. border: 2px dashed;
  19. border-color: #ccc;
  20. }
  21. .UppyDragDrop-label {
  22. cursor: pointer;
  23. }
  24. .UppyDragDrop-dragText {
  25. display: none;
  26. }
  27. .is-dragdrop-supported .UppyDragDrop-dragText {
  28. display: inline;
  29. }
  30. .UppyDragDrop.is-dragover {
  31. border-color: #d2ecea;
  32. background-color: #dbf5f3;
  33. }