resizable.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*!
  2. * jQuery UI Resizable 1.14.1
  3. * https://jqueryui.com
  4. *
  5. * Copyright OpenJS Foundation and other contributors
  6. * Released under the MIT license.
  7. * https://jquery.org/license
  8. */
  9. .ui-resizable {
  10. position: relative;
  11. }
  12. .ui-resizable-handle {
  13. position: absolute;
  14. font-size: 0.1px;
  15. display: block;
  16. touch-action: none;
  17. }
  18. .ui-resizable-disabled .ui-resizable-handle,
  19. .ui-resizable-autohide .ui-resizable-handle {
  20. display: none;
  21. }
  22. .ui-resizable-n {
  23. cursor: n-resize;
  24. height: 7px;
  25. width: 100%;
  26. top: -5px;
  27. left: 0;
  28. }
  29. .ui-resizable-s {
  30. cursor: s-resize;
  31. height: 7px;
  32. width: 100%;
  33. bottom: -5px;
  34. left: 0;
  35. }
  36. .ui-resizable-e {
  37. cursor: e-resize;
  38. width: 7px;
  39. right: -5px;
  40. top: 0;
  41. height: 100%;
  42. }
  43. .ui-resizable-w {
  44. cursor: w-resize;
  45. width: 7px;
  46. left: -5px;
  47. top: 0;
  48. height: 100%;
  49. }
  50. .ui-resizable-se {
  51. cursor: se-resize;
  52. width: 12px;
  53. height: 12px;
  54. right: 1px;
  55. bottom: 1px;
  56. }
  57. .ui-resizable-sw {
  58. cursor: sw-resize;
  59. width: 9px;
  60. height: 9px;
  61. left: -5px;
  62. bottom: -5px;
  63. }
  64. .ui-resizable-nw {
  65. cursor: nw-resize;
  66. width: 9px;
  67. height: 9px;
  68. left: -5px;
  69. top: -5px;
  70. }
  71. .ui-resizable-ne {
  72. cursor: ne-resize;
  73. width: 9px;
  74. height: 9px;
  75. right: -5px;
  76. top: -5px;
  77. }