native-core.css 993 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. a {
  2. -webkit-user-drag: none;
  3. -webkit-app-region: no-drag;
  4. }
  5. .dropzone {
  6. background: rgba(255, 255, 255, 0.85);
  7. display: none;
  8. position: fixed;
  9. width: 100%;
  10. height: 100%;
  11. left: 0;
  12. top: 0;
  13. box-sizing: border-box;
  14. z-index: 10000;
  15. }
  16. .dropzone .dropzone-filezone {
  17. position: absolute;
  18. width: 100%;
  19. height: 100%;
  20. z-index: 10009;
  21. }
  22. .dropzone .dropzone-tip-container {
  23. position: absolute;
  24. width: 100%;
  25. height: 100%;
  26. padding: 12px;
  27. }
  28. .dropzone .dropzone-tip-container .dropzone-tip-wrapper {
  29. width: 100%;
  30. height: 100%;
  31. border: 6px dashed #ccc;
  32. border-radius: 8px;
  33. }
  34. .dropzone .dropzone-tip-container .dropzone-tip-wrapper .dropzone-tip {
  35. display: inline-block;
  36. position: absolute;
  37. padding-right: 18px;
  38. width: 100%;
  39. top: 50%;
  40. transform: translateY(-50%);
  41. text-align: center;
  42. }
  43. .dropzone .dropzone-tip-container .dropzone-tip-wrapper .dropzone-tip i.fa {
  44. font-size: 96px;
  45. }