u-upload.wxss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .u-upload.data-v-0d33af60 {
  28. display: -webkit-box;
  29. display: -webkit-flex;
  30. display: flex;
  31. -webkit-box-orient: horizontal;
  32. -webkit-box-direction: normal;
  33. -webkit-flex-direction: row;
  34. flex-direction: row;
  35. -webkit-flex-wrap: wrap;
  36. flex-wrap: wrap;
  37. -webkit-box-align: center;
  38. -webkit-align-items: center;
  39. align-items: center;
  40. }
  41. .u-list-item.data-v-0d33af60 {
  42. width: 200rpx;
  43. height: 200rpx;
  44. overflow: hidden;
  45. margin: 10rpx;
  46. background: #f4f5f6;
  47. position: relative;
  48. border-radius: 10rpx;
  49. display: -webkit-box;
  50. display: -webkit-flex;
  51. display: flex;
  52. -webkit-box-align: center;
  53. -webkit-align-items: center;
  54. align-items: center;
  55. -webkit-box-pack: center;
  56. -webkit-justify-content: center;
  57. justify-content: center;
  58. }
  59. .u-preview-wrap.data-v-0d33af60 {
  60. border: 1px solid #ebecee;
  61. }
  62. .u-add-wrap.data-v-0d33af60 {
  63. -webkit-box-orient: vertical;
  64. -webkit-box-direction: normal;
  65. -webkit-flex-direction: column;
  66. flex-direction: column;
  67. color: #606266;
  68. font-size: 26rpx;
  69. }
  70. .u-add-tips.data-v-0d33af60 {
  71. margin-top: 20rpx;
  72. line-height: 40rpx;
  73. }
  74. .u-add-wrap__hover.data-v-0d33af60 {
  75. background-color: #ebecee;
  76. }
  77. .u-preview-image.data-v-0d33af60 {
  78. display: block;
  79. width: 100%;
  80. height: 100%;
  81. border-radius: 10rpx;
  82. }
  83. .u-delete-icon.data-v-0d33af60 {
  84. position: absolute;
  85. top: 10rpx;
  86. right: 10rpx;
  87. z-index: 10;
  88. background-color: #fa3534;
  89. border-radius: 100rpx;
  90. width: 44rpx;
  91. height: 44rpx;
  92. display: -webkit-box;
  93. display: -webkit-flex;
  94. display: flex;
  95. -webkit-box-orient: horizontal;
  96. -webkit-box-direction: normal;
  97. -webkit-flex-direction: row;
  98. flex-direction: row;
  99. -webkit-box-align: center;
  100. -webkit-align-items: center;
  101. align-items: center;
  102. -webkit-box-pack: center;
  103. -webkit-justify-content: center;
  104. justify-content: center;
  105. }
  106. .u-icon.data-v-0d33af60 {
  107. display: -webkit-box;
  108. display: -webkit-flex;
  109. display: flex;
  110. -webkit-box-orient: horizontal;
  111. -webkit-box-direction: normal;
  112. -webkit-flex-direction: row;
  113. flex-direction: row;
  114. -webkit-box-align: center;
  115. -webkit-align-items: center;
  116. align-items: center;
  117. -webkit-box-pack: center;
  118. -webkit-justify-content: center;
  119. justify-content: center;
  120. }
  121. .u-progress.data-v-0d33af60 {
  122. position: absolute;
  123. bottom: 10rpx;
  124. left: 8rpx;
  125. right: 8rpx;
  126. z-index: 9;
  127. width: auto;
  128. }
  129. .u-error-btn.data-v-0d33af60 {
  130. color: #ffffff;
  131. background-color: #fa3534;
  132. font-size: 20rpx;
  133. padding: 4px 0;
  134. text-align: center;
  135. position: absolute;
  136. bottom: 0;
  137. left: 0;
  138. right: 0;
  139. z-index: 9;
  140. line-height: 1;
  141. }