u-input.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. view.data-v-fdbb9fe6, scroll-view.data-v-fdbb9fe6, swiper-item.data-v-fdbb9fe6 {
  28. display: flex;
  29. flex-direction: column;
  30. flex-shrink: 0;
  31. flex-grow: 0;
  32. flex-basis: auto;
  33. align-items: stretch;
  34. align-content: flex-start;
  35. }
  36. .u-input.data-v-fdbb9fe6 {
  37. display: flex;
  38. flex-direction: row;
  39. align-items: center;
  40. justify-content: space-between;
  41. flex: 1;
  42. }
  43. .u-input--radius.data-v-fdbb9fe6, .u-input--square.data-v-fdbb9fe6 {
  44. border-radius: 4px;
  45. }
  46. .u-input--no-radius.data-v-fdbb9fe6 {
  47. border-radius: 0;
  48. }
  49. .u-input--circle.data-v-fdbb9fe6 {
  50. border-radius: 100px;
  51. }
  52. .u-input__content.data-v-fdbb9fe6 {
  53. flex: 1;
  54. display: flex;
  55. flex-direction: row;
  56. align-items: center;
  57. justify-content: space-between;
  58. }
  59. .u-input__content__field-wrapper.data-v-fdbb9fe6 {
  60. position: relative;
  61. display: flex;
  62. flex-direction: row;
  63. margin: 0;
  64. flex: 1;
  65. }
  66. .u-input__content__field-wrapper__field.data-v-fdbb9fe6 {
  67. line-height: 26px;
  68. text-align: left;
  69. color: #303133;
  70. height: 24px;
  71. font-size: 15px;
  72. flex: 1;
  73. }
  74. .u-input__content__clear.data-v-fdbb9fe6 {
  75. width: 20px;
  76. height: 20px;
  77. border-radius: 100px;
  78. background-color: #c6c7cb;
  79. display: flex;
  80. flex-direction: row;
  81. align-items: center;
  82. justify-content: center;
  83. -webkit-transform: scale(0.82);
  84. transform: scale(0.82);
  85. margin-left: 4px;
  86. }
  87. .u-input__content__subfix-icon.data-v-fdbb9fe6 {
  88. margin-left: 4px;
  89. }
  90. .u-input__content__prefix-icon.data-v-fdbb9fe6 {
  91. margin-right: 4px;
  92. }