blob: f5c23b69c26701a22ee1b081320dcd75da7f93dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/*! UIkit 2.26.4 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
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
========================================================================== */
.uk-sortable-empty {
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;
}
/* Fixes dragging items over iframes */
.uk-sortable-moving iframe {
pointer-events: none;
}
|