style.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. @import '@uppy/core/src/_utils.scss';
  2. @import '@uppy/core/src/_variables.scss';
  3. .uppy-DragDrop-container {
  4. display: flex;
  5. align-items: center;
  6. justify-content: center;
  7. border-radius: 7px;
  8. background-color: $color-white;
  9. // cursor: pointer;
  10. }
  11. .uppy-DragDrop-inner {
  12. margin: 0;
  13. text-align: center;
  14. padding: 80px 20px;
  15. line-height: 1.4;
  16. }
  17. .uppy-DragDrop-arrow {
  18. width: 60px;
  19. height: 60px;
  20. fill: lighten($color-gray, 30%);
  21. margin-bottom: 17px;
  22. }
  23. .uppy-DragDrop--is-dragdrop-supported {
  24. border: 2px dashed;
  25. border-color: lighten($color-gray, 10%);
  26. }
  27. // .uppy-DragDrop-container.is-dragdrop-supported .uppy-DragDrop-dragText {
  28. // display: inline;
  29. // }
  30. .uppy-DragDrop-container.drag {
  31. border-color: $color-gray;
  32. background-color: darken($color-white, 10%);
  33. }
  34. .uppy-DragDrop-container.drag .uppy-DragDrop-arrow {
  35. fill: $color-gray;
  36. }
  37. .uppy-DragDrop-label {
  38. display: block;
  39. cursor: pointer;
  40. font-size: 1.15em;
  41. margin-bottom: 5px;
  42. }
  43. .uppy-DragDrop-note {
  44. font-size: 1em;
  45. color: lighten($color-gray, 10%);
  46. }
  47. .uppy-DragDrop-dragText {
  48. color: $color-cornflower-blue;
  49. }