Component-Builder/admin/custom/uikit-v2/css/components/sortable.gradient.css

67 lines
1.7 KiB
CSS
Raw Normal View History

2017-11-12 00:33:10 +00:00
/*! UIkit 2.27.4 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
2016-01-30 20:28:43 +00:00
/* ========================================================================
Component: Sortable
========================================================================== */
.uk-sortable {
position: relative;
}
/*
* Deactivate browser touch actions in IE11
*/
.uk-sortable > * {
touch-action: none;
}
/*
* Disables the default callout shown when you touch and hold a touch target
* Currently only works in Webkit
*/
.uk-sortable a,
.uk-sortable img {
-webkit-touch-callout: none;
}
/*
* Remove margin from the last-child
*/
.uk-sortable > :last-child {
margin-bottom: 0;
}
/* Sub-modifier `uk-sortable-dragged`
========================================================================== */
.uk-sortable-dragged {
position: absolute;
z-index: 1050;
pointer-events: none;
}
/* Sub-modifier `uk-sortable-placeholder`
========================================================================== */
.uk-sortable-placeholder {
opacity: 0;
}
/* Empty List
========================================================================== */
2016-03-19 01:51:35 +00:00
.uk-sortable-empty {
2016-01-30 20:28:43 +00:00
min-height: 30px;
}
/* Sub-object `uk-sortable-handle`
========================================================================== */
/*
* Deactivate browser touch actions in IE11
*/
.uk-sortable-handle {
touch-action: none;
}
/* Hover */
.uk-sortable-handle:hover {
cursor: move;
}
/* Sub-object `uk-sortable-moving`
========================================================================== */
.uk-sortable-moving,
.uk-sortable-moving * {
cursor: move;
}
2017-11-12 00:33:10 +00:00
/* Fixes dragging items over iframes */
.uk-sortable-moving iframe {
pointer-events: none;
}