index.css 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .nz-resizable-preview {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. z-index: 8;
  6. border: 1px dashed #d1d1d1;
  7. }
  8. .nz-resizable-handle {
  9. position: absolute;
  10. z-index: 9;
  11. user-select: none;
  12. }
  13. .nz-resizable-handle-top {
  14. top: -5px;
  15. left: 0;
  16. width: 100%;
  17. height: 10px;
  18. }
  19. .nz-resizable-handle-right {
  20. top: 0;
  21. right: -5px;
  22. width: 10px;
  23. height: 100%;
  24. }
  25. .nz-resizable-handle-bottom {
  26. bottom: -5px;
  27. left: 0;
  28. width: 100%;
  29. height: 10px;
  30. }
  31. .nz-resizable-handle-left {
  32. top: 0;
  33. left: -5px;
  34. width: 10px;
  35. height: 100%;
  36. }
  37. .nz-resizable-handle-topRight {
  38. top: -5px;
  39. right: -5px;
  40. z-index: 10;
  41. width: 20px;
  42. height: 20px;
  43. }
  44. .nz-resizable-handle-bottomRight {
  45. right: -5px;
  46. bottom: -5px;
  47. z-index: 10;
  48. width: 20px;
  49. height: 20px;
  50. }
  51. .nz-resizable-handle-bottomLeft {
  52. bottom: -5px;
  53. left: -5px;
  54. z-index: 10;
  55. width: 20px;
  56. height: 20px;
  57. }
  58. .nz-resizable-handle-topLeft {
  59. top: -5px;
  60. left: -5px;
  61. z-index: 10;
  62. width: 20px;
  63. height: 20px;
  64. }
  65. .nz-resizable .nz-resizable-handle-cursor-type-window.nz-resizable-handle-top,
  66. .nz-resizable .nz-resizable-handle-cursor-type-window.nz-resizable-handle-bottom {
  67. cursor: ns-resize;
  68. }
  69. .nz-resizable .nz-resizable-handle-cursor-type-window.nz-resizable-handle-right,
  70. .nz-resizable .nz-resizable-handle-cursor-type-window.nz-resizable-handle-left {
  71. cursor: ew-resize;
  72. }
  73. .nz-resizable .nz-resizable-handle-cursor-type-grid.nz-resizable-handle-top,
  74. .nz-resizable .nz-resizable-handle-cursor-type-grid.nz-resizable-handle-bottom {
  75. cursor: row-resize;
  76. }
  77. .nz-resizable .nz-resizable-handle-cursor-type-grid.nz-resizable-handle-right,
  78. .nz-resizable .nz-resizable-handle-cursor-type-grid.nz-resizable-handle-left {
  79. cursor: col-resize;
  80. }
  81. .nz-resizable .nz-resizable-handle-bottomRight,
  82. .nz-resizable .nz-resizable-handle-topLeft {
  83. cursor: nwse-resize;
  84. }
  85. .nz-resizable .nz-resizable-handle-bottomLeft,
  86. .nz-resizable .nz-resizable-handle-topRight {
  87. cursor: nesw-resize;
  88. }
  89. .nz-resizable-disabled .nz-resizable-handle {
  90. pointer-events: none;
  91. }