magnacarto/app/css/ng-sortable.css
2015-07-28 14:03:10 +02:00

38 lines
No EOL
707 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;
}
.as-sortable-item-handle {
cursor: move;
}
.as-sortable-placeholder {
}
.as-sortable-drag {
position: absolute;
pointer-events: none;
z-index: 9999;
}
.as-sortable-hidden {
display: none !important;
}
.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;
}