Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

resizable.css

/*!
 * jQuery UI Resizable 1.14.1
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://jquery.org/license
 */
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}

File

core/assets/vendor/jquery.ui/themes/base/resizable.css

View source
  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. }
RSS feed
Powered by Drupal