
/**
 * Reorder-able tables marker css class
 */
table.dragReorder {
}

/**
 * CSS class for draggable rows
 */
.dragRow {
	cursor: move;
}

/**
 * CSS style for the row being dragged (not the dragged proxy, but the old row!)
 */
.draggingRow, .draggingRow *{
	visibility: hidden;
}

/**
 * Marker CSS class for drag handle elements inside the "dragReorder" tables
 */
.dragHandle {
	cursor: move;
}

