s-uploader.wxss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.data-v-82f430bc {
  27. box-sizing: border-box;
  28. overflow: hidden;
  29. /* width: 100%; */
  30. /* flex: 1; */
  31. position: relative;
  32. }
  33. .uni-file-picker__header.data-v-82f430bc {
  34. padding-top: 5px;
  35. padding-bottom: 10px;
  36. display: flex;
  37. justify-content: space-between;
  38. }
  39. .file-title.data-v-82f430bc {
  40. font-size: 14px;
  41. color: #333;
  42. }
  43. .file-count.data-v-82f430bc {
  44. font-size: 14px;
  45. color: #999;
  46. }
  47. .is-add.data-v-82f430bc {
  48. display: flex;
  49. align-items: center;
  50. justify-content: center;
  51. }
  52. .add-icon.data-v-82f430bc {
  53. width: 57rpx;
  54. height: 49rpx;
  55. }
  56. .file-subtitle.data-v-82f430bc {
  57. position: absolute;
  58. left: 50%;
  59. transform: translateX(-50%);
  60. bottom: 0;
  61. width: 140rpx;
  62. height: 36rpx;
  63. z-index: 1;
  64. display: flex;
  65. justify-content: center;
  66. color: #fff;
  67. font-weight: 500;
  68. background: rgba(0, 0, 0, 0.3);
  69. font-size: 24rpx;
  70. }