upload-image.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .uni-file-picker__container {
  27. display: flex;
  28. box-sizing: border-box;
  29. flex-wrap: wrap;
  30. margin: -5px;
  31. }
  32. .file-picker__box {
  33. position: relative;
  34. width: 33.3%;
  35. height: 0;
  36. padding-top: 33.33%;
  37. box-sizing: border-box;
  38. }
  39. .file-picker__box-content {
  40. position: absolute;
  41. top: 0;
  42. right: 0;
  43. bottom: 0;
  44. left: 0;
  45. margin: 5px;
  46. border: 1px #eee solid;
  47. border-radius: 5px;
  48. overflow: hidden;
  49. }
  50. .file-picker__progress {
  51. position: absolute;
  52. bottom: 0;
  53. left: 0;
  54. right: 0;
  55. /* border: 1px red solid; */
  56. z-index: 2;
  57. }
  58. .file-picker__progress-item {
  59. width: 100%;
  60. }
  61. .file-picker__mask {
  62. display: flex;
  63. justify-content: center;
  64. align-items: center;
  65. position: absolute;
  66. right: 0;
  67. top: 0;
  68. bottom: 0;
  69. left: 0;
  70. color: #fff;
  71. font-size: 12px;
  72. background-color: rgba(0, 0, 0, 0.4);
  73. }
  74. .file-image {
  75. width: 100%;
  76. height: 100%;
  77. }
  78. .is-add {
  79. display: flex;
  80. align-items: center;
  81. justify-content: center;
  82. }
  83. .icon-add {
  84. width: 50px;
  85. height: 5px;
  86. background-color: #f1f1f1;
  87. border-radius: 2px;
  88. }
  89. .rotate {
  90. position: absolute;
  91. transform: rotate(90deg);
  92. }
  93. .icon-del-box {
  94. display: flex;
  95. align-items: center;
  96. justify-content: center;
  97. position: absolute;
  98. top: 3px;
  99. right: 3px;
  100. height: 26px;
  101. width: 26px;
  102. border-radius: 50%;
  103. background-color: rgba(0, 0, 0, 0.5);
  104. z-index: 2;
  105. transform: rotate(-45deg);
  106. }
  107. .icon-del {
  108. width: 15px;
  109. height: 2px;
  110. background-color: #fff;
  111. border-radius: 2px;
  112. }