ng-sortable
Version:
Angular Library for Drag and Drop, supports Sortable and Draggable.
42 lines (35 loc) • 838 B
CSS
/* ************************************** */
/* Mandatory CSS required for ng-sortable */
/* ************************************** */
.as-sortable-item, .as-sortable-placeholder {
display: block;
}
.as-sortable-item {
-ms-touch-action: none;
touch-action: none;
/* to disable context menu on iOS devices */
-webkit-touch-callout: none;
}
.as-sortable-item-handle {
cursor: move;
cursor: -webkit-grab;
cursor: -moz-grab;
}
.as-sortable-placeholder {
}
.as-sortable-drag {
position: absolute;
pointer-events: none;
z-index: 9999;
}
.as-sortable-hidden {
display: none ;
}
.as-sortable-un-selectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}