index.less 545 B

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