index.less 436 B

123456789101112131415161718192021222324252627282930313233
  1. @import "~@less/variables.less";
  2. .container{
  3. .tag;
  4. cursor: unset;
  5. }
  6. .cont{
  7. .no-tag;
  8. }
  9. .selected{
  10. .selected-tag;
  11. span{ //ie8子标签灰显bug
  12. color: @text-color;
  13. }
  14. position: relative;
  15. padding: 0;
  16. &:before{
  17. content: unset;
  18. }
  19. &:after{
  20. content: unset;
  21. }
  22. }
  23. .add-icon{
  24. vertical-align:middle;
  25. position: absolute;
  26. right: -15px;
  27. cursor: pointer;
  28. top: 4px;
  29. }
  30. .add{
  31. margin-right: 18px;
  32. }