blob: 2d6417de1a49780048feda3ee25c7f7c99ebec0b (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/*! UIkit 2.26.4 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
Component: Slider
========================================================================== */
/*
* RTL Compatibility
*/
[data-uk-slider] {
direction: ltr;
}
html[dir="rtl"] .uk-slider > * {
direction: rtl;
}
/*
* 1. Create position context
* 2. Create stacking context to prevent z-index issues with other components
* 3. Deactivate browser history navigation in IE11
*/
.uk-slider {
/* 1 */
position: relative;
/* 2 */
z-index: 0;
/* 3 */
touch-action: pan-y;
}
/*
* 1. Reset list style without interfering with grid
*/
.uk-slider:not(.uk-grid) {
/* 1 */
margin: 0;
padding: 0;
list-style: none;
}
/*
* Sub-object item
* 1. Position items above each other
*/
.uk-slider > * {
/* 1 */
position: absolute;
top: 0;
left: 0;
}
/*
* Clip child elements
*/
.uk-slider-container {
overflow: hidden;
}
/*
* Dragged
*/
.uk-slider:not(.uk-drag) {
-webkit-transition: -webkit-transform 200ms linear;
transition: transform 200ms linear;
}
/*
* 1. Makes text unselectable
*/
.uk-slider.uk-drag {
cursor: col-resize;
/* 1 */
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
/*
* 1. Prevents images and links from being dragged (default browser behavior)
* 2. Disables the default callout shown when you touch and hold a touch target
* Currently only works in Webkit
*/
.uk-slider a,
.uk-slider img {
/* 1 */
-webkit-user-drag: none;
user-drag: none;
/* 2 */
-webkit-touch-callout: none;
}
/*
* 1. Prevents images and links from being dragged in Firefox
*/
.uk-slider img {
pointer-events: none;
}
/* Modifier: `uk-slider-fullscreen`
========================================================================== */
.uk-slider-fullscreen,
.uk-slider-fullscreen > li {
height: 100vh;
}
|