resize.less 743 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .@{table-prefix-cls}-resize-handle {
  2. position: absolute;
  3. top: 0;
  4. height: 100% !important;
  5. bottom: 0;
  6. left: auto !important;
  7. right: -8px;
  8. cursor: col-resize;
  9. touch-action: none;
  10. user-select: auto;
  11. width: 16px;
  12. z-index: 1;
  13. &-line {
  14. display: block;
  15. width: 1px;
  16. margin-left: 7px;
  17. height: 100% !important;
  18. background-color: @primary-color;
  19. opacity: 0;
  20. }
  21. &:hover &-line {
  22. opacity: 1;
  23. }
  24. }
  25. .@{table-prefix-cls}-resize-handle.dragging {
  26. overflow: hidden;
  27. .@{table-prefix-cls}-resize-handle-line {
  28. opacity: 1;
  29. }
  30. &:before {
  31. position: absolute;
  32. top: 0;
  33. bottom: 0;
  34. width: 100%;
  35. content: ' ';
  36. width: 200vw;
  37. transform: translateX(-50%);
  38. opacity: 0;
  39. }
  40. }