u-input.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  5. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  6. */
  7. .u-input.data-v-460c1d26 {
  8. position: relative;
  9. -webkit-box-flex: 1;
  10. -webkit-flex: 1;
  11. flex: 1;
  12. display: -webkit-box;
  13. display: -webkit-flex;
  14. display: flex;
  15. -webkit-box-orient: horizontal;
  16. -webkit-box-direction: normal;
  17. -webkit-flex-direction: row;
  18. flex-direction: row;
  19. }
  20. .u-input__input.data-v-460c1d26 {
  21. font-size: 28rpx;
  22. color: #303133;
  23. -webkit-box-flex: 1;
  24. -webkit-flex: 1;
  25. flex: 1;
  26. }
  27. .u-input__textarea.data-v-460c1d26 {
  28. width: auto;
  29. font-size: 28rpx;
  30. color: #303133;
  31. padding: 10rpx 0;
  32. line-height: normal;
  33. -webkit-box-flex: 1;
  34. -webkit-flex: 1;
  35. flex: 1;
  36. }
  37. .u-input--border.data-v-460c1d26 {
  38. border-radius: 6rpx;
  39. border-radius: 4px;
  40. border: 1px solid #dcdfe6;
  41. }
  42. .u-input--error.data-v-460c1d26 {
  43. border-color: #fa3534 !important;
  44. }
  45. .u-input__right-icon__item.data-v-460c1d26 {
  46. margin-left: 10rpx;
  47. }
  48. .u-input__right-icon--select.data-v-460c1d26 {
  49. -webkit-transition: -webkit-transform .4s;
  50. transition: -webkit-transform .4s;
  51. transition: transform .4s;
  52. transition: transform .4s, -webkit-transform .4s;
  53. }
  54. .u-input__right-icon--select--reverse.data-v-460c1d26 {
  55. -webkit-transform: rotate(-180deg);
  56. transform: rotate(-180deg);
  57. }