u-upload.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  5. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  6. */
  7. .u-upload.data-v-0d33af60 {
  8. display: flex;
  9. flex-direction: row;
  10. flex-wrap: wrap;
  11. align-items: center;
  12. }
  13. .u-list-item.data-v-0d33af60 {
  14. width: 200rpx;
  15. height: 200rpx;
  16. overflow: hidden;
  17. margin: 10rpx;
  18. background: #f4f5f6;
  19. position: relative;
  20. border-radius: 10rpx;
  21. display: flex;
  22. align-items: center;
  23. justify-content: center;
  24. }
  25. .u-preview-wrap.data-v-0d33af60 {
  26. border: 1px solid #ebecee;
  27. }
  28. .u-add-wrap.data-v-0d33af60 {
  29. flex-direction: column;
  30. color: #606266;
  31. font-size: 26rpx;
  32. }
  33. .u-add-tips.data-v-0d33af60 {
  34. margin-top: 20rpx;
  35. line-height: 40rpx;
  36. }
  37. .u-add-wrap__hover.data-v-0d33af60 {
  38. background-color: #ebecee;
  39. }
  40. .u-preview-image.data-v-0d33af60 {
  41. display: block;
  42. width: 100%;
  43. height: 100%;
  44. border-radius: 10rpx;
  45. }
  46. .u-delete-icon.data-v-0d33af60 {
  47. position: absolute;
  48. top: 10rpx;
  49. right: 10rpx;
  50. z-index: 10;
  51. background-color: #fa3534;
  52. border-radius: 100rpx;
  53. width: 44rpx;
  54. height: 44rpx;
  55. display: flex;
  56. flex-direction: row;
  57. align-items: center;
  58. justify-content: center;
  59. }
  60. .u-icon.data-v-0d33af60 {
  61. display: flex;
  62. flex-direction: row;
  63. align-items: center;
  64. justify-content: center;
  65. }
  66. .u-progress.data-v-0d33af60 {
  67. position: absolute;
  68. bottom: 10rpx;
  69. left: 8rpx;
  70. right: 8rpx;
  71. z-index: 9;
  72. width: auto;
  73. }
  74. .u-error-btn.data-v-0d33af60 {
  75. color: #ffffff;
  76. background-color: #fa3534;
  77. font-size: 20rpx;
  78. padding: 4px 0;
  79. text-align: center;
  80. position: absolute;
  81. bottom: 0;
  82. left: 0;
  83. right: 0;
  84. z-index: 9;
  85. line-height: 1;
  86. }