index.less 423 B

1234567891011121314151617181920212223242526
  1. @import "~@less/variables.less";
  2. .list{
  3. max-height:300px;
  4. overflow-y: auto;
  5. overflow-x: hidden;
  6. .pop;
  7. left: 85px;
  8. padding: 0 0 10px;
  9. li{
  10. width: 200px;
  11. line-height: 35px;
  12. border:1px #fff solid;
  13. padding: 0 20px 0 30px;
  14. white-space: nowrap;
  15. text-overflow: ellipsis;
  16. overflow: hidden;
  17. cursor: pointer;
  18. }
  19. li:hover{
  20. border-color:#3B9ED0;
  21. }
  22. }
  23. /*
  24. .hide{
  25. display: none;
  26. }*/