index.less 753 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. @import "~@less/mixin.less";
  2. .container{
  3. display: inline-block;
  4. }
  5. .selected{
  6. .select-li;
  7. }
  8. .tag,.selected-tag{
  9. cursor: pointer;
  10. line-height: 20px;
  11. }
  12. .selected-tag{
  13. padding: 0;
  14. color: @text-color;
  15. border-bottom: 1px @border-color solid;
  16. line-height: 22px;
  17. }
  18. .hide-tag{
  19. padding: 0;
  20. color: @text-color;
  21. line-height: 22px;
  22. }
  23. .list{
  24. .pop;
  25. padding: 0 0 10px;
  26. color: @text-color;
  27. li{
  28. height: 32px;
  29. line-height: 32px;
  30. border:1px #fff solid;
  31. padding: 0 20px;
  32. white-space: nowrap;
  33. cursor: pointer;
  34. }
  35. // li:hover,.selected{
  36. li:hover{
  37. border-color:#3B9ED0;
  38. }
  39. }
  40. .hide{
  41. display: none;
  42. }
  43. .mClear{
  44. color:red;
  45. }
  46. .mConfirm{
  47. color: #3B9ED0;
  48. text-align: center;
  49. border: 1px solid #3B9ED0;
  50. }