index.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. @import '../common/index.css';
  2. .van-picker {
  3. position: relative;
  4. overflow: hidden;
  5. -webkit-text-size-adjust: 100%;
  6. -webkit-user-select: none;
  7. user-select: none;
  8. background-color: #fff;
  9. background-color: var(--picker-background-color, #fff);
  10. }
  11. .van-picker__toolbar {
  12. display: -webkit-flex;
  13. display: flex;
  14. -webkit-justify-content: space-between;
  15. justify-content: space-between;
  16. height: 44px;
  17. height: var(--picker-toolbar-height, 44px);
  18. line-height: 44px;
  19. line-height: var(--picker-toolbar-height, 44px);
  20. }
  21. .van-picker__cancel,
  22. .van-picker__confirm {
  23. padding: 0 16px;
  24. padding: var(--picker-action-padding, 0 16px);
  25. font-size: 14px;
  26. font-size: var(--picker-action-font-size, 14px);
  27. color: #1989fa;
  28. color: var(--picker-action-text-color, #1989fa);
  29. }
  30. .van-picker__cancel--hover,
  31. .van-picker__confirm--hover {
  32. background-color: #f2f3f5;
  33. background-color: var(--picker-action-active-color, #f2f3f5);
  34. }
  35. .van-picker__title {
  36. max-width: 50%;
  37. text-align: center;
  38. font-weight: 500;
  39. font-weight: var(--font-weight-bold, 500);
  40. font-size: 16px;
  41. font-size: var(--picker-option-font-size, 16px);
  42. }
  43. .van-picker__columns {
  44. position: relative;
  45. display: -webkit-flex;
  46. display: flex;
  47. }
  48. .van-picker__column {
  49. -webkit-flex: 1 1;
  50. flex: 1 1;
  51. width: 0;
  52. }
  53. .van-picker__loading {
  54. position: absolute;
  55. top: 0;
  56. right: 0;
  57. bottom: 0;
  58. left: 0;
  59. z-index: 4;
  60. display: -webkit-flex;
  61. display: flex;
  62. -webkit-align-items: center;
  63. align-items: center;
  64. -webkit-justify-content: center;
  65. justify-content: center;
  66. background-color: hsla(0, 0%, 100%, 0.9);
  67. background-color: var(--picker-loading-mask-color, hsla(0, 0%, 100%, 0.9));
  68. }
  69. .van-picker__mask {
  70. position: absolute;
  71. top: 0;
  72. left: 0;
  73. z-index: 2;
  74. width: 100%;
  75. height: 100%;
  76. background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.4)), linear-gradient(0deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.4));
  77. background-repeat: no-repeat;
  78. background-position: top, bottom;
  79. -webkit-backface-visibility: hidden;
  80. backface-visibility: hidden;
  81. pointer-events: none;
  82. }
  83. .van-picker__frame,
  84. .van-picker__loading .van-loading {
  85. position: absolute;
  86. top: 50%;
  87. left: 0;
  88. z-index: 1;
  89. width: 100%;
  90. -webkit-transform: translateY(-50%);
  91. transform: translateY(-50%);
  92. pointer-events: none;
  93. }