index.css 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. @import '../common/index.css';
  2. .van-dropdown-menu {
  3. display: -webkit-flex;
  4. display: flex;
  5. -webkit-user-select: none;
  6. user-select: none;
  7. height: 50px;
  8. height: var(--dropdown-menu-height, 50px);
  9. background-color: #fff;
  10. background-color: var(--dropdown-menu-background-color, #fff);
  11. }
  12. .van-dropdown-menu__item {
  13. display: -webkit-flex;
  14. display: flex;
  15. -webkit-flex: 1;
  16. flex: 1;
  17. -webkit-align-items: center;
  18. align-items: center;
  19. -webkit-justify-content: center;
  20. justify-content: center;
  21. min-width: 0;
  22. }
  23. .van-dropdown-menu__item:active {
  24. opacity: 0.7;
  25. }
  26. .van-dropdown-menu__item--disabled:active {
  27. opacity: 1;
  28. }
  29. .van-dropdown-menu__item--disabled .van-dropdown-menu__title {
  30. color: #969799;
  31. color: var(--dropdown-menu-title-disabled-text-color, #969799);
  32. }
  33. .van-dropdown-menu__title {
  34. position: relative;
  35. box-sizing: border-box;
  36. max-width: 100%;
  37. padding: 0 8px;
  38. padding: var(--dropdown-menu-title-padding, 0 8px);
  39. color: #323233;
  40. color: var(--dropdown-menu-title-text-color, #323233);
  41. font-size: 15px;
  42. font-size: var(--dropdown-menu-title-font-size, 15px);
  43. line-height: 18px;
  44. line-height: var(--dropdown-menu-title-line-height, 18px);
  45. }
  46. .van-dropdown-menu__title:after {
  47. position: absolute;
  48. top: 50%;
  49. right: -4px;
  50. margin-top: -5px;
  51. border-color: transparent transparent currentcolor currentcolor;
  52. border-style: solid;
  53. border-width: 3px;
  54. -webkit-transform: rotate(-45deg);
  55. transform: rotate(-45deg);
  56. opacity: 0.8;
  57. content: '';
  58. }
  59. .van-dropdown-menu__title--active {
  60. color: #1989fa;
  61. color: var(--dropdown-menu-title-active-text-color, #1989fa);
  62. }
  63. .van-dropdown-menu__title--down:after {
  64. margin-top: -1px;
  65. -webkit-transform: rotate(135deg);
  66. transform: rotate(135deg);
  67. }