index.less 475 B

123456789101112131415161718192021222324252627282930
  1. @import "~@less/mixin.less";
  2. .container{
  3. display: inline-block;
  4. cursor: pointer;
  5. }
  6. .tag,.selected-tag{
  7. cursor: pointer;
  8. line-height: 20px;
  9. &.ext{
  10. color: @extBlue!important;
  11. &.selected-area{
  12. color: #fff!important;
  13. }
  14. }
  15. }
  16. .selected-tag{
  17. padding: 0;
  18. // color: @text-color;
  19. border-bottom: 1px @border-color solid;
  20. line-height: 22px;
  21. }
  22. .hide-tag{
  23. padding: 0;
  24. // color: @text-color;
  25. line-height: 22px;
  26. &.ext{
  27. color: @extBlue;
  28. }
  29. }