index.less 531 B

123456789101112131415161718192021222324252627282930313233
  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. &.ext{
  11. color: @extBlue;
  12. }
  13. /*line-height: 20px;*/
  14. }
  15. .tag{
  16. color:@placeholder-color;
  17. }
  18. .tag:before{
  19. content: '[';
  20. }
  21. .tag:after{
  22. content: ']';
  23. }
  24. .selected-tag{
  25. color: @text-color;
  26. border-bottom: 1px @border-color solid;
  27. }
  28. .inner-inp{
  29. display:inline-block;
  30. min-width:30px;
  31. text-align:center;
  32. word-break: break-all;
  33. }