Project

General

Profile

1
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
2
/* ========================================================================
3
   Component: Sortable
4
 ========================================================================== */
5
.uk-sortable {
6
  position: relative;
7
}
8
/*
9
 * Deactivate browser touch actions in IE11
10
 */
11
.uk-sortable > * {
12
  touch-action: none;
13
}
14
/*
15
 * Disables the default callout shown when you touch and hold a touch target
16
 * Currently only works in Webkit
17
 */
18
.uk-sortable a,
19
.uk-sortable img {
20
  -webkit-touch-callout: none;
21
}
22
/*
23
 * Remove margin from the last-child
24
 */
25
.uk-sortable > :last-child {
26
  margin-bottom: 0;
27
}
28
/* Sub-modifier `uk-sortable-dragged`
29
 ========================================================================== */
30
.uk-sortable-dragged {
31
  position: absolute;
32
  z-index: 1050;
33
  pointer-events: none;
34
}
35
/* Sub-modifier `uk-sortable-placeholder`
36
 ========================================================================== */
37
.uk-sortable-placeholder {
38
  opacity: 0;
39
}
40
/* Empty List
41
 ========================================================================== */
42
.uk-sortable-empty {
43
  min-height: 30px;
44
}
45
/* Sub-object `uk-sortable-handle`
46
 ========================================================================== */
47
/*
48
 * Deactivate browser touch actions in IE11
49
 */
50
.uk-sortable-handle {
51
  touch-action: none;
52
}
53
/* Hover */
54
.uk-sortable-handle:hover {
55
  cursor: move;
56
}
57
/* Sub-object `uk-sortable-moving`
58
 ========================================================================== */
59
.uk-sortable-moving,
60
.uk-sortable-moving * {
61
  cursor: move;
62
}
63
/* Fixes dragging items over iframes */
64
.uk-sortable-moving iframe {
65
  pointer-events: none;
66
}
(106-106/126)