/**
 * @file
 * Draggable floating map panel (biopama_libraries/panel-drag).
 *
 * jQuery UI tags the configured handles with ui-draggable-handle, so the
 * cursor follows whatever handle selector the page chose. Bootstrap has no
 * cursor utility.
 */

[data-biopama-panel-drag] .ui-draggable-handle {
  cursor: grab;
}

[data-biopama-panel-drag] .ui-draggable-handle:active,
[data-biopama-panel-drag].ui-draggable-dragging .ui-draggable-handle {
  cursor: grabbing;
}
