index.acss 2.1 KB

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