index.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. @import '../common/index.css';
  2. .van-uploader {
  3. position: relative;
  4. display: inline-block;
  5. }
  6. .van-uploader__wrapper {
  7. display: -webkit-flex;
  8. display: flex;
  9. -webkit-flex-wrap: wrap;
  10. flex-wrap: wrap;
  11. }
  12. .van-uploader__slot:empty {
  13. display: none;
  14. }
  15. .van-uploader__slot:not(:empty) + .van-uploader__upload {
  16. display: none !important;
  17. }
  18. .van-uploader__upload {
  19. position: relative;
  20. display: -webkit-flex;
  21. display: flex;
  22. -webkit-flex-direction: column;
  23. flex-direction: column;
  24. -webkit-align-items: center;
  25. align-items: center;
  26. -webkit-justify-content: center;
  27. justify-content: center;
  28. box-sizing: border-box;
  29. width: 80px;
  30. height: 80px;
  31. margin: 0 8px 8px 0;
  32. background-color: #f7f8fa;
  33. border-radius: 8px;
  34. }
  35. .van-uploader__upload:active {
  36. background-color: #f2f3f5;
  37. }
  38. .van-uploader__upload-icon {
  39. color: #dcdee0;
  40. font-size: 24px;
  41. }
  42. .van-uploader__upload-text {
  43. margin-top: 8px;
  44. color: #969799;
  45. font-size: 12px;
  46. }
  47. .van-uploader__upload--disabled {
  48. opacity: 0.5;
  49. opacity: var(--uploader-disabled-opacity, 0.5);
  50. }
  51. .van-uploader__preview {
  52. position: relative;
  53. margin: 0 8px 8px 0;
  54. cursor: pointer;
  55. }
  56. .van-uploader__preview-image {
  57. display: block;
  58. width: 80px;
  59. height: 80px;
  60. overflow: hidden;
  61. border-radius: 8px;
  62. }
  63. .van-uploader__preview-delete {
  64. position: absolute;
  65. top: 0;
  66. right: 0;
  67. z-index: 1;
  68. display: -webkit-flex;
  69. display: flex;
  70. padding: 10px;
  71. border-radius: 50%;
  72. -webkit-transform: translate(50%, -50%);
  73. transform: translate(50%, -50%);
  74. }
  75. .van-uploader__preview-delete__icon {
  76. color: #969799;
  77. font-size: 18px;
  78. background-color: #fff;
  79. border-radius: 50%;
  80. }
  81. .van-uploader__file {
  82. display: -webkit-flex;
  83. display: flex;
  84. -webkit-flex-direction: column;
  85. flex-direction: column;
  86. -webkit-align-items: center;
  87. align-items: center;
  88. -webkit-justify-content: center;
  89. justify-content: center;
  90. width: 80px;
  91. height: 80px;
  92. background-color: #f7f8fa;
  93. border-radius: 8px;
  94. }
  95. .van-uploader__file-icon {
  96. color: #646566;
  97. font-size: 20px;
  98. }
  99. .van-uploader__file-name {
  100. box-sizing: border-box;
  101. width: 100%;
  102. margin-top: 8px;
  103. padding: 0 4px;
  104. color: #646566;
  105. font-size: 12px;
  106. text-align: center;
  107. }
  108. .van-uploader__mask {
  109. position: absolute;
  110. top: 0;
  111. right: 0;
  112. bottom: 0;
  113. left: 0;
  114. display: -webkit-flex;
  115. display: flex;
  116. -webkit-flex-direction: column;
  117. flex-direction: column;
  118. -webkit-align-items: center;
  119. align-items: center;
  120. -webkit-justify-content: center;
  121. justify-content: center;
  122. color: #fff;
  123. background-color: rgba(50, 50, 51, 0.88);
  124. border-radius: 8px;
  125. }
  126. .van-uploader__mask-icon {
  127. font-size: 22px;
  128. }
  129. .van-uploader__mask-message {
  130. margin-top: 6px;
  131. padding: 0 4px;
  132. font-size: 12px;
  133. line-height: 14px;
  134. }
  135. .van-uploader__loading {
  136. width: 22px;
  137. height: 22px;
  138. color: #fff;
  139. }