康巴易测肤/伤疤uniapp小程序类
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

u-button.wxss 4.5KB

před 1 měsícem
před 1 měsícem
před 3 týdny
před 1 měsícem
před 1 měsícem
před 1 měsícem
před 1 měsícem
před 1 měsícem
před 1 měsícem
před 1 měsícem
před 1 měsícem
před 1 měsícem
před 1 měsícem
před 1 měsícem
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .safe-area-bottom.data-v-3bf2dba7 {
  28. padding-bottom: env(safe-area-inset-bottom);
  29. }
  30. text.data-v-3bf2dba7 {
  31. font-family: Source Han Sans CN;
  32. }
  33. view.data-v-3bf2dba7, scroll-view.data-v-3bf2dba7, swiper-item.data-v-3bf2dba7 {
  34. display: flex;
  35. flex-direction: column;
  36. flex-shrink: 0;
  37. flex-grow: 0;
  38. flex-basis: auto;
  39. align-items: stretch;
  40. align-content: flex-start;
  41. }
  42. .u-button.data-v-3bf2dba7 {
  43. width: 100%;
  44. }
  45. .u-button__text.data-v-3bf2dba7 {
  46. white-space: nowrap;
  47. line-height: 1;
  48. }
  49. .u-button.data-v-3bf2dba7:before {
  50. position: absolute;
  51. top: 50%;
  52. left: 50%;
  53. width: 100%;
  54. height: 100%;
  55. border: inherit;
  56. border-radius: inherit;
  57. -webkit-transform: translate(-50%, -50%);
  58. transform: translate(-50%, -50%);
  59. opacity: 0;
  60. content: " ";
  61. background-color: #000;
  62. border-color: #000;
  63. }
  64. .u-button--active.data-v-3bf2dba7:before {
  65. opacity: 0.15;
  66. }
  67. .u-button__icon + .u-button__text.data-v-3bf2dba7:not(:empty), .u-button__loading-text.data-v-3bf2dba7 {
  68. margin-left: 4px;
  69. }
  70. .u-button--plain.u-button--primary.data-v-3bf2dba7 {
  71. color: #3c9cff;
  72. }
  73. .u-button--plain.u-button--info.data-v-3bf2dba7 {
  74. color: #909399;
  75. }
  76. .u-button--plain.u-button--success.data-v-3bf2dba7 {
  77. color: #5ac725;
  78. }
  79. .u-button--plain.u-button--error.data-v-3bf2dba7 {
  80. color: #f56c6c;
  81. }
  82. .u-button--plain.u-button--warning.data-v-3bf2dba7 {
  83. color: #f56c6c;
  84. }
  85. .u-button.data-v-3bf2dba7 {
  86. height: 40px;
  87. position: relative;
  88. align-items: center;
  89. justify-content: center;
  90. display: flex;
  91. flex-direction: row;
  92. box-sizing: border-box;
  93. flex-direction: row;
  94. }
  95. .u-button__text.data-v-3bf2dba7 {
  96. font-size: 15px;
  97. }
  98. .u-button__loading-text.data-v-3bf2dba7 {
  99. font-size: 15px;
  100. margin-left: 4px;
  101. }
  102. .u-button--large.data-v-3bf2dba7 {
  103. width: 100%;
  104. height: 50px;
  105. padding: 0 15px;
  106. }
  107. .u-button--normal.data-v-3bf2dba7 {
  108. padding: 0 12px;
  109. font-size: 14px;
  110. }
  111. .u-button--small.data-v-3bf2dba7 {
  112. min-width: 60px;
  113. height: 30px;
  114. padding: 0px 8px;
  115. font-size: 12px;
  116. }
  117. .u-button--mini.data-v-3bf2dba7 {
  118. height: 22px;
  119. font-size: 10px;
  120. min-width: 50px;
  121. padding: 0px 8px;
  122. }
  123. .u-button--disabled.data-v-3bf2dba7 {
  124. opacity: 0.5;
  125. }
  126. .u-button--info.data-v-3bf2dba7 {
  127. color: #323233;
  128. background-color: #fff;
  129. border-color: #ebedf0;
  130. border-width: 1px;
  131. border-style: solid;
  132. }
  133. .u-button--success.data-v-3bf2dba7 {
  134. color: #fff;
  135. background-color: #5ac725;
  136. border-color: #5ac725;
  137. border-width: 1px;
  138. border-style: solid;
  139. }
  140. .u-button--primary.data-v-3bf2dba7 {
  141. color: #fff;
  142. background-color: #3c9cff;
  143. border-color: #3c9cff;
  144. border-width: 1px;
  145. border-style: solid;
  146. }
  147. .u-button--error.data-v-3bf2dba7 {
  148. color: #fff;
  149. background-color: #f56c6c;
  150. border-color: #f56c6c;
  151. border-width: 1px;
  152. border-style: solid;
  153. }
  154. .u-button--warning.data-v-3bf2dba7 {
  155. color: #fff;
  156. background-color: #f9ae3d;
  157. border-color: #f9ae3d;
  158. border-width: 1px;
  159. border-style: solid;
  160. }
  161. .u-button--block.data-v-3bf2dba7 {
  162. display: flex;
  163. flex-direction: row;
  164. width: 100%;
  165. }
  166. .u-button--circle.data-v-3bf2dba7 {
  167. border-top-right-radius: 100px;
  168. border-top-left-radius: 100px;
  169. border-bottom-left-radius: 100px;
  170. border-bottom-right-radius: 100px;
  171. }
  172. .u-button--square.data-v-3bf2dba7 {
  173. border-bottom-left-radius: 3px;
  174. border-bottom-right-radius: 3px;
  175. border-top-left-radius: 3px;
  176. border-top-right-radius: 3px;
  177. }
  178. .u-button__icon.data-v-3bf2dba7 {
  179. min-width: 1em;
  180. line-height: inherit !important;
  181. vertical-align: top;
  182. }
  183. .u-button--plain.data-v-3bf2dba7 {
  184. background-color: #fff;
  185. }
  186. .u-button--hairline.data-v-3bf2dba7 {
  187. border-width: 0.5px !important;
  188. }