edit.wxss 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. .shake.data-v-1891008f {
  27. animation: shake-1891008f 0.05s linear 4 alternate;
  28. }
  29. @keyframes shake-1891008f {
  30. from {
  31. transform: translateX(-10rpx);
  32. }
  33. to {
  34. transform: translateX(10rpx);
  35. }
  36. }
  37. .data-v-1891008f .uni-forms-item__label .label-text {
  38. font-size: 28rpx !important;
  39. color: #333333 !important;
  40. line-height: normal !important;
  41. }
  42. .data-v-1891008f .uni-forms-item__content {
  43. display: flex;
  44. align-items: center;
  45. }
  46. .data-v-1891008f .uni-easyinput__content-input {
  47. font-size: 28rpx !important;
  48. color: #333333 !important;
  49. line-height: normal !important;
  50. padding-left: 0 !important;
  51. }
  52. .data-v-1891008f .uni-easyinput__content-textarea {
  53. font-size: 28rpx !important;
  54. color: #333333 !important;
  55. line-height: normal !important;
  56. margin-top: 8rpx !important;
  57. }
  58. .data-v-1891008f .uni-icons {
  59. font-size: 40rpx !important;
  60. }
  61. .data-v-1891008f .is-textarea-icon {
  62. margin-top: 22rpx;
  63. }
  64. .data-v-1891008f .is-disabled {
  65. color: #333333;
  66. }
  67. .default-box.data-v-1891008f {
  68. width: 100%;
  69. box-sizing: border-box;
  70. height: 100rpx;
  71. }
  72. .default-box .default-box-title.data-v-1891008f {
  73. font-size: 28rpx;
  74. color: #333333;
  75. line-height: normal;
  76. }
  77. .tcp-text.data-v-1891008f {
  78. color: var(--ui-BG-Main);
  79. }
  80. .footer-box .save-btn.data-v-1891008f {
  81. width: 710rpx;
  82. height: 80rpx;
  83. border-radius: 40rpx;
  84. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  85. color: #ffffff;
  86. }
  87. .footer-box .cancel-btn.data-v-1891008f {
  88. width: 710rpx;
  89. height: 80rpx;
  90. border-radius: 40rpx;
  91. background: var(--ui-BG);
  92. }