u-picker.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /**
  2. * uni-app内置的常用样式变量
  3. */
  4. /* 行为相关颜色 */
  5. /* 文字基本颜色 */
  6. /* 背景颜色 */
  7. /* 边框颜色 */
  8. /* 尺寸变量 */
  9. /* 文字尺寸 */
  10. /* 图片尺寸 */
  11. /* Border Radius */
  12. /* 水平间距 */
  13. /* 垂直间距 */
  14. /* 透明度 */
  15. /* 文章场景相关 */
  16. .u-empty.data-v-1500ce68,
  17. .u-empty__wrap.data-v-1500ce68,
  18. .u-tabs.data-v-1500ce68,
  19. .u-tabs__wrapper.data-v-1500ce68,
  20. .u-tabs__wrapper__scroll-view-wrapper.data-v-1500ce68,
  21. .u-tabs__wrapper__scroll-view.data-v-1500ce68,
  22. .u-tabs__wrapper__nav.data-v-1500ce68,
  23. .u-tabs__wrapper__nav__line.data-v-1500ce68,
  24. .up-empty.data-v-1500ce68,
  25. .up-empty__wrap.data-v-1500ce68,
  26. .up-tabs.data-v-1500ce68,
  27. .up-tabs__wrapper.data-v-1500ce68,
  28. .up-tabs__wrapper__scroll-view-wrapper.data-v-1500ce68,
  29. .up-tabs__wrapper__scroll-view.data-v-1500ce68,
  30. .up-tabs__wrapper__nav.data-v-1500ce68,
  31. .up-tabs__wrapper__nav__line.data-v-1500ce68 {
  32. display: flex;
  33. flex-direction: column;
  34. flex-shrink: 0;
  35. flex-grow: 0;
  36. flex-basis: auto;
  37. align-items: stretch;
  38. align-content: flex-start;
  39. }
  40. .u-picker.data-v-1500ce68 {
  41. position: relative;
  42. }
  43. .u-picker-input.data-v-1500ce68 {
  44. position: relative;
  45. }
  46. .u-picker-input .input-cover.data-v-1500ce68 {
  47. opacity: 0;
  48. position: absolute;
  49. top: 0;
  50. bottom: 0;
  51. left: 0;
  52. right: 0;
  53. z-index: 1;
  54. }
  55. .u-picker__view__column.data-v-1500ce68 {
  56. display: flex;
  57. flex-direction: row;
  58. flex: 1;
  59. justify-content: center;
  60. }
  61. .u-picker__view__column__item.data-v-1500ce68 {
  62. display: flex;
  63. flex-direction: row;
  64. justify-content: center;
  65. align-items: center;
  66. font-size: 16px;
  67. text-align: center;
  68. display: block;
  69. color: #303133;
  70. }
  71. .u-picker__view__column__item--disabled.data-v-1500ce68 {
  72. cursor: not-allowed;
  73. opacity: 0.35;
  74. }
  75. .u-picker--loading.data-v-1500ce68 {
  76. position: absolute;
  77. top: 0;
  78. right: 0;
  79. left: 0;
  80. bottom: 0;
  81. display: flex;
  82. flex-direction: row;
  83. justify-content: center;
  84. align-items: center;
  85. background-color: rgba(255, 255, 255, 0.87);
  86. z-index: 1000;
  87. }