index.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. @import '../common/index.css';
  2. .van-action-sheet {
  3. max-height: 90% !important;
  4. max-height: var(--action-sheet-max-height, 90%) !important;
  5. color: #323233;
  6. color: var(--action-sheet-item-text-color, #323233);
  7. }
  8. .van-action-sheet__cancel,
  9. .van-action-sheet__item {
  10. text-align: center;
  11. font-size: 16px;
  12. font-size: var(--action-sheet-item-font-size, 16px);
  13. line-height: 50px;
  14. line-height: var(--action-sheet-item-height, 50px);
  15. background-color: #fff;
  16. background-color: var(--action-sheet-item-background, #fff);
  17. }
  18. .van-action-sheet__cancel--hover,
  19. .van-action-sheet__item--hover {
  20. background-color: #f2f3f5;
  21. background-color: var(--active-color, #f2f3f5);
  22. }
  23. .van-action-sheet__cancel:before {
  24. display: block;
  25. content: ' ';
  26. height: 8px;
  27. height: var(--action-sheet-cancel-padding-top, 8px);
  28. background-color: #f7f8fa;
  29. background-color: var(--action-sheet-cancel-padding-color, #f7f8fa);
  30. }
  31. .van-action-sheet__item--disabled {
  32. color: #c8c9cc;
  33. color: var(--action-sheet-item-disabled-text-color, #c8c9cc);
  34. }
  35. .van-action-sheet__item--disabled.van-action-sheet__item--hover {
  36. background-color: #fff;
  37. background-color: var(--action-sheet-item-background, #fff);
  38. }
  39. .van-action-sheet__subname {
  40. margin-left: 4px;
  41. margin-left: var(--padding-base, 4px);
  42. font-size: 12px;
  43. font-size: var(--action-sheet-subname-font-size, 12px);
  44. color: #646566;
  45. color: var(--action-sheet-subname-color, #646566);
  46. }
  47. .van-action-sheet__header {
  48. text-align: center;
  49. font-weight: 500;
  50. font-weight: var(--font-weight-bold, 500);
  51. font-size: 16px;
  52. font-size: var(--action-sheet-header-font-size, 16px);
  53. line-height: 44px;
  54. line-height: var(--action-sheet-header-height, 44px);
  55. }
  56. .van-action-sheet__description {
  57. text-align: center;
  58. padding: 16px;
  59. padding: var(--padding-md, 16px);
  60. color: #646566;
  61. color: var(--action-sheet-description-color, #646566);
  62. font-size: 14px;
  63. font-size: var(--action-sheet-description-font-size, 14px);
  64. line-height: 20px;
  65. line-height: var(--action-sheet-description-line-height, 20px);
  66. }
  67. .van-action-sheet__close {
  68. position: absolute !important;
  69. top: 0;
  70. right: 0;
  71. line-height: inherit !important;
  72. padding: 0 12px;
  73. padding: var(--action-sheet-close-icon-padding, 0 12px);
  74. font-size: 18px !important;
  75. font-size: var(--action-sheet-close-icon-size, 18px) !important;
  76. color: #969799;
  77. color: var(--action-sheet-close-icon-color, #969799);
  78. }
  79. .van-action-sheet__loading {
  80. display: -webkit-flex !important;
  81. display: flex !important;
  82. height: 50px;
  83. height: var(--action-sheet-item-height, 50px);
  84. }