u-input.css 1.5 KB

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