index.less 529 B

123456789101112131415161718192021222324252627282930
  1. @import "~@less/mixin.less";
  2. .li-item{
  3. height:30px;
  4. line-height: 30px;
  5. padding: 0 20px 0 25px;
  6. border:1px #fff solid;
  7. text-align: left;
  8. white-space: nowrap;
  9. max-width: 150px;
  10. text-overflow: ellipsis;
  11. overflow: hidden;
  12. cursor: pointer;
  13. }
  14. .hoverable:hover,.border-selected{
  15. border-color:#3B9ED0;
  16. }
  17. .check-selected,.black-selected{
  18. .select-li;
  19. }
  20. .black-selected{
  21. background-image:url('@common/images/then.png');
  22. }
  23. .disabled{
  24. color: @disable-color;
  25. }
  26. .no-dot{
  27. max-width:unset;
  28. text-overflow: unset;
  29. }