u-cell.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. /* uni.scss */
  16. /* 行为相关颜色 */
  17. /* 文字基本颜色 */
  18. /* 背景颜色 */
  19. /* 边框颜色 */
  20. /* 尺寸变量 */
  21. /* 文字尺寸 */
  22. /* 图片尺寸 */
  23. /* Border Radius */
  24. /* 水平间距 */
  25. /* 垂直间距 */
  26. /* 透明度 */
  27. /* 文章场景相关 */
  28. view.data-v-1c4434ae, scroll-view.data-v-1c4434ae, swiper-item.data-v-1c4434ae {
  29. display: flex;
  30. flex-direction: column;
  31. flex-shrink: 0;
  32. flex-grow: 0;
  33. flex-basis: auto;
  34. align-items: stretch;
  35. align-content: flex-start;
  36. }
  37. .u-cell__body.data-v-1c4434ae {
  38. display: flex;
  39. flex-direction: row;
  40. box-sizing: border-box;
  41. padding: 10px 15px;
  42. font-size: 15px;
  43. color: #303133;
  44. align-items: center;
  45. }
  46. .u-cell__body__content.data-v-1c4434ae {
  47. display: flex;
  48. flex-direction: row;
  49. align-items: center;
  50. flex: 1;
  51. }
  52. .u-cell__body--large.data-v-1c4434ae {
  53. padding-top: 13px;
  54. padding-bottom: 13px;
  55. }
  56. .u-cell__left-icon-wrap.data-v-1c4434ae, .u-cell__right-icon-wrap.data-v-1c4434ae {
  57. display: flex;
  58. flex-direction: row;
  59. align-items: center;
  60. font-size: 16px;
  61. }
  62. .u-cell__left-icon-wrap.data-v-1c4434ae {
  63. margin-right: 4px;
  64. }
  65. .u-cell__right-icon-wrap.data-v-1c4434ae {
  66. margin-left: 4px;
  67. transition: -webkit-transform 0.3s;
  68. transition: transform 0.3s;
  69. transition: transform 0.3s, -webkit-transform 0.3s;
  70. }
  71. .u-cell__right-icon-wrap--up.data-v-1c4434ae {
  72. -webkit-transform: rotate(-90deg);
  73. transform: rotate(-90deg);
  74. }
  75. .u-cell__right-icon-wrap--down.data-v-1c4434ae {
  76. -webkit-transform: rotate(90deg);
  77. transform: rotate(90deg);
  78. }
  79. .u-cell__title.data-v-1c4434ae {
  80. flex: 1;
  81. }
  82. .u-cell__title-text.data-v-1c4434ae {
  83. font-size: 15px;
  84. line-height: 22px;
  85. color: #303133;
  86. }
  87. .u-cell__title-text--large.data-v-1c4434ae {
  88. font-size: 16px;
  89. }
  90. .u-cell__label.data-v-1c4434ae {
  91. margin-top: 5px;
  92. font-size: 12px;
  93. color: #909193;
  94. line-height: 18px;
  95. }
  96. .u-cell__label--large.data-v-1c4434ae {
  97. font-size: 14px;
  98. }
  99. .u-cell__value.data-v-1c4434ae {
  100. text-align: right;
  101. font-size: 14px;
  102. line-height: 24px;
  103. color: #606266;
  104. }
  105. .u-cell__value--large.data-v-1c4434ae {
  106. font-size: 15px;
  107. }
  108. .u-cell--clickable.data-v-1c4434ae {
  109. background-color: #f3f4f6;
  110. }
  111. .u-cell--disabled.data-v-1c4434ae {
  112. color: #c8c9cc;
  113. cursor: not-allowed;
  114. }
  115. .u-cell--center.data-v-1c4434ae {
  116. align-items: center;
  117. }