You are here

dropzone.widget.css in DropzoneJS 8

Same filename and directory in other branches
  1. 8.2 css/dropzone.widget.css

File

css/dropzone.widget.css
View source
  1. /**
  2. * @file file_browser.dropzone.css
  3. */
  4. .dropzone .dz-preview .dropzonejs-remove-icon {
  5. width: 24px;
  6. height: 24px;
  7. cursor: pointer;
  8. position: absolute;
  9. top: -8px;
  10. right: -8px;
  11. z-index: 500;
  12. background-image: url("../icons/remove.svg");
  13. background-size: cover;
  14. }
  15. .dropzone .dz-preview .dropzonejs-remove-icon:hover {
  16. background-image: url("../icons/remove-hover.svg");
  17. background-size: cover;
  18. }
  19. .dropzone .dz-preview.dz-file-preview .dz-image,
  20. .dropzone .dz-preview .dz-image {
  21. border-radius: 0;
  22. }
  23. .dropzone {
  24. margin: .5em;
  25. background: #f5f5f2;
  26. border: 3px dashed hsla(0, 0%, 42%, 0.65);
  27. border-radius: 5px;
  28. }
  29. .dropzone.dz-drag-hover {
  30. border: dashed #40b6ff;
  31. }
  32. .dropzone.dz-started {
  33. padding: 16px;
  34. }