index.less 568 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. @import '../style/var';
  2. .van-dropdown-item {
  3. position: fixed;
  4. right: 0;
  5. left: 0;
  6. z-index: @dropdown-item-z-index;
  7. overflow: hidden;
  8. &__icon {
  9. display: block;
  10. line-height: inherit;
  11. }
  12. &__option {
  13. text-align: left;
  14. &--active {
  15. color: @dropdown-menu-option-active-color;
  16. .van-dropdown-item__icon {
  17. color: @dropdown-menu-option-active-color;
  18. }
  19. }
  20. }
  21. &--up {
  22. top: 0;
  23. }
  24. &--down {
  25. bottom: 0;
  26. }
  27. &__content {
  28. position: absolute;
  29. max-height: @dropdown-menu-content-max-height;
  30. }
  31. }