group.less 839 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #hosts-group {
  2. @h: 160px;
  3. position: relative;
  4. margin-top: 20px;
  5. height: @h + 2px;
  6. overflow: hidden;
  7. &::after {
  8. content: '';
  9. clear: both;
  10. }
  11. .arrow {
  12. position: absolute;
  13. top: 50%;
  14. left: 50%;
  15. width: 20px;
  16. height: 20px;
  17. line-height: 20px;
  18. text-align: center;
  19. transform: translate(-50%, -50%);
  20. &::after {
  21. content: '→';
  22. }
  23. }
  24. .hosts-group-list {
  25. height: @h;
  26. overflow: auto;
  27. border: solid 1px #ccc;
  28. .hosts-item {
  29. cursor: move;
  30. padding: 2px 6px;
  31. &:hover {
  32. background: #f5f5f5;
  33. }
  34. i {
  35. font-size: 12px;
  36. color: #999;
  37. }
  38. & > span {
  39. padding-left: 6px;
  40. }
  41. }
  42. }
  43. }
  44. #hosts-group-valid {
  45. width: 45%;
  46. float: left;
  47. }
  48. #hosts-group-current {
  49. width: 45%;
  50. float: right;
  51. }