upload-file.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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__files {
  27. display: flex;
  28. flex-direction: column;
  29. justify-content: flex-start;
  30. }
  31. .uni-file-picker__lists {
  32. position: relative;
  33. margin-top: 5px;
  34. overflow: hidden;
  35. }
  36. .file-picker__mask {
  37. display: flex;
  38. justify-content: center;
  39. align-items: center;
  40. position: absolute;
  41. right: 0;
  42. top: 0;
  43. bottom: 0;
  44. left: 0;
  45. color: #fff;
  46. font-size: 14px;
  47. background-color: rgba(0, 0, 0, 0.4);
  48. }
  49. .uni-file-picker__lists-box {
  50. position: relative;
  51. }
  52. .uni-file-picker__item {
  53. display: flex;
  54. align-items: center;
  55. padding: 8px 10px;
  56. padding-right: 5px;
  57. padding-left: 10px;
  58. }
  59. .files-border {
  60. border-top: 1px #eee solid;
  61. }
  62. .files__name {
  63. flex: 1;
  64. font-size: 14px;
  65. color: #666;
  66. margin-right: 25px;
  67. word-break: break-all;
  68. word-wrap: break-word;
  69. }
  70. .icon-files {
  71. position: static;
  72. background-color: initial;
  73. }
  74. .is-list-card {
  75. border: 1px #eee solid;
  76. margin-bottom: 5px;
  77. border-radius: 5px;
  78. box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.1);
  79. padding: 5px;
  80. }
  81. .files__image {
  82. width: 40px;
  83. height: 40px;
  84. margin-right: 10px;
  85. }
  86. .header-image {
  87. width: 100%;
  88. height: 100%;
  89. }
  90. .is-text-box {
  91. border: 1px #eee solid;
  92. border-radius: 5px;
  93. }
  94. .is-text-image {
  95. width: 25px;
  96. height: 25px;
  97. margin-left: 5px;
  98. }
  99. .rotate {
  100. position: absolute;
  101. transform: rotate(90deg);
  102. }
  103. .icon-del-box {
  104. display: flex;
  105. margin: auto 0;
  106. align-items: center;
  107. justify-content: center;
  108. position: absolute;
  109. top: 0px;
  110. bottom: 0;
  111. right: 5px;
  112. height: 26px;
  113. width: 26px;
  114. z-index: 2;
  115. transform: rotate(-45deg);
  116. }
  117. .icon-del {
  118. width: 15px;
  119. height: 1px;
  120. background-color: #333;
  121. }