index.less 564 B

123456789101112131415161718192021222324252627282930313233343536
  1. @import "~@less/variables.less";
  2. .container{
  3. display: inline-block;
  4. position: relative;
  5. cursor: pointer;
  6. /*margin-right: 5px;*/
  7. }
  8. .tag,.selected-tag,.no-tag{
  9. display: inline-block;
  10. cursor: pointer;
  11. word-break: break-all;
  12. /*line-height: 20px;*/
  13. }
  14. .no-tag{
  15. color:inherit;
  16. }
  17. .tag{
  18. color:@placeholder-color;
  19. &.ext{
  20. color: @extBlue!important;
  21. &.selected-area{
  22. color: #fff!important;
  23. }
  24. }
  25. }
  26. .tag:before{
  27. content: '[';
  28. }
  29. .tag:after{
  30. content: ']';
  31. }
  32. .selected-tag{
  33. color: @text-color;
  34. border-bottom: 1px @border-color solid;
  35. }