mirror of
https://github.com/omniscale/magnacarto.git
synced 2025-06-16 13:00:22 +02:00
38 lines
No EOL
707 B
CSS
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;
|
|
} |