diff options
Diffstat (limited to 'css/components/sortable.almost-flat.css')
| -rwxr-xr-x | css/components/sortable.almost-flat.css | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/css/components/sortable.almost-flat.css b/css/components/sortable.almost-flat.css new file mode 100755 index 0000000..f5c23b6 --- /dev/null +++ b/css/components/sortable.almost-flat.css | |||
| @@ -0,0 +1,66 @@ | |||
| 1 | /*! UIkit 2.26.4 | 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 | } | ||
