index.less 401 B

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