uikit 3.11.2-dev.31cd2ba38 → 3.11.2-dev.4274bc35b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +4 -49
- package/.prettierignore +14 -0
- package/.prettierrc.json +13 -0
- package/.webstorm.js +3 -3
- package/CHANGELOG.md +38 -28
- package/build/.eslintrc.json +1 -3
- package/build/build.js +26 -28
- package/build/icons.js +7 -11
- package/build/less.js +48 -36
- package/build/package.json +2 -2
- package/build/prefix.js +21 -18
- package/build/publishDev.js +6 -8
- package/build/release.js +20 -17
- package/build/scope.js +21 -11
- package/build/scss.js +72 -39
- package/build/util.js +71 -62
- package/build/wrapper/icons.js +0 -2
- package/dist/css/uikit-core-rtl.css +121 -202
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +121 -202
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +123 -208
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +123 -208
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +88 -133
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +408 -439
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +1098 -1316
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +1144 -1393
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +94 -114
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +326 -358
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +324 -357
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +768 -843
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +324 -357
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +645 -793
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +587 -620
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +324 -356
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +155 -167
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +5405 -6716
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +7 -9
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +7997 -9703
- package/dist/js/uikit.min.js +1 -1
- package/jsconfig.json +1 -1
- package/package.json +64 -60
- package/src/js/api/boot.js +25 -32
- package/src/js/api/component.js +15 -28
- package/src/js/api/global.js +6 -12
- package/src/js/api/hooks.js +14 -33
- package/src/js/api/instance.js +7 -15
- package/src/js/api/state.js +79 -100
- package/src/js/components/countdown.js +24 -50
- package/src/js/components/filter.js +70 -66
- package/src/js/components/index.js +13 -13
- package/src/js/components/internal/lightbox-animations.js +14 -25
- package/src/js/components/internal/slider-preload.js +37 -0
- package/src/js/components/internal/slider-transitioner.js +66 -45
- package/src/js/components/internal/slideshow-animations.js +46 -64
- package/src/js/components/lightbox-panel.js +107 -105
- package/src/js/components/lightbox.js +17 -39
- package/src/js/components/notification.js +49 -43
- package/src/js/components/parallax.js +16 -30
- package/src/js/components/slider-parallax.js +13 -23
- package/src/js/components/slider.js +95 -64
- package/src/js/components/slideshow-parallax.js +1 -1
- package/src/js/components/slideshow.js +15 -13
- package/src/js/components/sortable.js +125 -106
- package/src/js/components/tooltip.js +41 -31
- package/src/js/components/upload.js +52 -63
- package/src/js/core/accordion.js +53 -48
- package/src/js/core/alert.js +9 -17
- package/src/js/core/core.js +74 -53
- package/src/js/core/cover.js +11 -15
- package/src/js/core/drop.js +106 -92
- package/src/js/core/form-custom.js +20 -25
- package/src/js/core/gif.js +3 -7
- package/src/js/core/grid.js +57 -58
- package/src/js/core/height-match.js +16 -29
- package/src/js/core/height-viewport.js +28 -35
- package/src/js/core/icon.js +38 -50
- package/src/js/core/img.js +127 -87
- package/src/js/core/index.js +39 -39
- package/src/js/core/leader.js +9 -18
- package/src/js/core/margin.js +21 -37
- package/src/js/core/modal.js +49 -36
- package/src/js/core/nav.js +2 -4
- package/src/js/core/navbar.js +112 -88
- package/src/js/core/offcanvas.js +49 -53
- package/src/js/core/overflow-auto.js +13 -17
- package/src/js/core/responsive.js +14 -12
- package/src/js/core/scroll.js +10 -20
- package/src/js/core/scrollspy-nav.js +34 -31
- package/src/js/core/scrollspy.js +37 -54
- package/src/js/core/sticky.js +130 -91
- package/src/js/core/svg.js +68 -83
- package/src/js/core/switcher.js +47 -46
- package/src/js/core/tab.js +7 -10
- package/src/js/core/toggle.js +66 -67
- package/src/js/core/video.js +11 -22
- package/src/js/mixin/animate.js +19 -20
- package/src/js/mixin/class.js +2 -4
- package/src/js/mixin/container.js +7 -11
- package/src/js/mixin/internal/animate-fade.js +73 -30
- package/src/js/mixin/internal/animate-slide.js +58 -41
- package/src/js/mixin/internal/slideshow-animations.js +7 -14
- package/src/js/mixin/internal/slideshow-transitioner.js +10 -17
- package/src/js/mixin/media.js +5 -10
- package/src/js/mixin/modal.js +89 -66
- package/src/js/mixin/parallax.js +130 -106
- package/src/js/mixin/position.js +26 -20
- package/src/js/mixin/slider-autoplay.js +12 -21
- package/src/js/mixin/slider-drag.js +64 -65
- package/src/js/mixin/slider-nav.js +26 -35
- package/src/js/mixin/slider-reactive.js +2 -8
- package/src/js/mixin/slider.js +48 -55
- package/src/js/mixin/slideshow.js +13 -19
- package/src/js/mixin/togglable.js +89 -63
- package/src/js/uikit-core.js +2 -4
- package/src/js/uikit.js +2 -4
- package/src/js/util/ajax.js +20 -39
- package/src/js/util/animation.js +77 -75
- package/src/js/util/attr.js +17 -21
- package/src/js/util/class.js +14 -52
- package/src/js/util/dimensions.js +56 -43
- package/src/js/util/dom.js +44 -80
- package/src/js/util/env.js +7 -12
- package/src/js/util/event.js +60 -59
- package/src/js/util/fastdom.js +1 -6
- package/src/js/util/filter.js +17 -34
- package/src/js/util/index.js +0 -1
- package/src/js/util/lang.js +82 -121
- package/src/js/util/mouse.js +19 -17
- package/src/js/util/options.js +33 -47
- package/src/js/util/player.js +41 -36
- package/src/js/util/position.js +54 -46
- package/src/js/util/selector.js +43 -58
- package/src/js/util/style.js +39 -49
- package/src/js/util/viewport.js +75 -64
- package/src/less/components/base.less +10 -33
- package/src/less/components/flex.less +0 -9
- package/src/less/components/form-range.less +52 -97
- package/src/less/components/form.less +0 -1
- package/src/less/components/leader.less +0 -1
- package/src/less/components/lightbox.less +0 -1
- package/src/less/components/modal.less +3 -7
- package/src/less/components/navbar.less +0 -7
- package/src/less/components/progress.less +14 -36
- package/src/less/components/slider.less +0 -3
- package/src/less/components/slideshow.less +0 -3
- package/src/less/components/text.less +16 -32
- package/src/less/components/utility.less +22 -0
- package/src/scss/components/base.scss +10 -33
- package/src/scss/components/flex.scss +0 -9
- package/src/scss/components/form-range.scss +52 -97
- package/src/scss/components/form.scss +3 -4
- package/src/scss/components/icon.scss +2 -2
- package/src/scss/components/leader.scss +0 -1
- package/src/scss/components/lightbox.scss +0 -1
- package/src/scss/components/modal.scss +3 -7
- package/src/scss/components/navbar.scss +0 -7
- package/src/scss/components/progress.scss +14 -36
- package/src/scss/components/search.scss +1 -1
- package/src/scss/components/slider.scss +0 -3
- package/src/scss/components/slideshow.scss +0 -3
- package/src/scss/components/text.scss +16 -32
- package/src/scss/components/utility.scss +22 -0
- package/src/scss/mixins-theme.scss +1 -1
- package/src/scss/mixins.scss +1 -1
- package/src/scss/variables-theme.scss +9 -9
- package/src/scss/variables.scss +9 -9
- package/tests/align.html +10 -10
- package/tests/animation.html +2 -2
- package/tests/article.html +2 -2
- package/tests/base.html +3 -3
- package/tests/card.html +10 -10
- package/tests/column.html +3 -3
- package/tests/comment.html +9 -9
- package/tests/dotnav.html +3 -3
- package/tests/image.html +296 -48
- package/tests/images/image-type.avif +0 -0
- package/tests/images/image-type.jpeg +0 -0
- package/tests/images/image-type.webp +0 -0
- package/tests/index.html +8 -8
- package/tests/js/index.js +114 -85
- package/tests/lightbox.html +10 -10
- package/tests/marker.html +2 -2
- package/tests/modal.html +8 -9
- package/tests/navbar.html +2 -2
- package/tests/overlay.html +7 -7
- package/tests/parallax.html +14 -5
- package/tests/position.html +12 -12
- package/tests/slidenav.html +12 -12
- package/tests/slider.html +20 -20
- package/tests/sortable.html +1 -1
- package/tests/sticky-parallax.html +47 -62
- package/tests/svg.html +6 -6
- package/tests/table.html +11 -11
- package/tests/thumbnav.html +12 -12
- package/tests/transition.html +30 -30
- package/tests/utility.html +33 -33
- package/tests/video.html +1 -1
- package/tests/width.html +1 -1
- package/src/js/mixin/flex-bug.js +0 -56
- package/src/js/util/promise.js +0 -191
- package/tests/images/animated.gif +0 -0
- package/tests/images/test.avif +0 -0
- package/tests/images/test.webp +0 -0
package/dist/css/uikit-core.css
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
/*! UIkit 3.11.2-dev.
|
|
1
|
+
/*! UIkit 3.11.2-dev.4274bc35b | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
5
5
|
/*
|
|
6
6
|
* 1. Set `font-size` to support `rem` units
|
|
7
|
-
* Not using `font` property because a leading hyphen (e.g. -apple-system) causes the font to break in IE11 and Edge
|
|
8
7
|
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
|
9
8
|
* 3. Style
|
|
10
9
|
*/
|
|
@@ -130,7 +129,7 @@ sub {
|
|
|
130
129
|
/* Embedded content
|
|
131
130
|
========================================================================== */
|
|
132
131
|
/*
|
|
133
|
-
* Remove the gap between
|
|
132
|
+
* Remove the gap between the element and the bottom of its parent container.
|
|
134
133
|
*/
|
|
135
134
|
audio,
|
|
136
135
|
canvas,
|
|
@@ -141,13 +140,13 @@ video {
|
|
|
141
140
|
vertical-align: middle;
|
|
142
141
|
}
|
|
143
142
|
/*
|
|
144
|
-
* 1.
|
|
145
|
-
* 2.
|
|
146
|
-
* 3.
|
|
147
|
-
* 4. Exclude SVGs for IE11 because they don't preserve their aspect ratio.
|
|
143
|
+
* 1. Constrain the element to its parent width.
|
|
144
|
+
* 2. Preserve the intrinsic aspect ratio and auto-scale the height of an image if the `height` attribute is present.
|
|
145
|
+
* 3. Take border and padding into account.
|
|
148
146
|
*/
|
|
149
147
|
canvas,
|
|
150
148
|
img,
|
|
149
|
+
svg,
|
|
151
150
|
video {
|
|
152
151
|
/* 1 */
|
|
153
152
|
max-width: 100%;
|
|
@@ -156,30 +155,16 @@ video {
|
|
|
156
155
|
/* 3 */
|
|
157
156
|
box-sizing: border-box;
|
|
158
157
|
}
|
|
159
|
-
/* 4 */
|
|
160
|
-
@supports (display: block) {
|
|
161
|
-
svg {
|
|
162
|
-
max-width: 100%;
|
|
163
|
-
height: auto;
|
|
164
|
-
box-sizing: border-box;
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
158
|
/*
|
|
168
|
-
*
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
overflow: hidden;
|
|
172
|
-
}
|
|
173
|
-
/*
|
|
174
|
-
* 1. Fix lazy loading images if parent element is set to `display: inline` and has `overflow: hidden`.
|
|
175
|
-
* 2. Hide `alt` text for lazy loading images.
|
|
176
|
-
* Note: Selector for background while loading img[data-src*='.jpg'][src*='data:image'] { background: grey; }
|
|
159
|
+
* Deprecated: only needed for `img` elements with `uk-img`
|
|
160
|
+
* 1. Hide `alt` text for lazy load images.
|
|
161
|
+
* 2. Fix lazy loading images if parent element is set to `display: inline` and has `overflow: hidden`.
|
|
177
162
|
*/
|
|
178
163
|
img:not([src]) {
|
|
179
164
|
/* 1 */
|
|
180
|
-
min-width: 1px;
|
|
181
|
-
/* 2 */
|
|
182
165
|
visibility: hidden;
|
|
166
|
+
/* 2 */
|
|
167
|
+
min-width: 1px;
|
|
183
168
|
}
|
|
184
169
|
/*
|
|
185
170
|
* Iframe
|
|
@@ -454,18 +439,6 @@ template {
|
|
|
454
439
|
/*
|
|
455
440
|
* Breakpoints
|
|
456
441
|
*/
|
|
457
|
-
.uk-breakpoint-s::before {
|
|
458
|
-
content: '640px';
|
|
459
|
-
}
|
|
460
|
-
.uk-breakpoint-m::before {
|
|
461
|
-
content: '960px';
|
|
462
|
-
}
|
|
463
|
-
.uk-breakpoint-l::before {
|
|
464
|
-
content: '1200px';
|
|
465
|
-
}
|
|
466
|
-
.uk-breakpoint-xl::before {
|
|
467
|
-
content: '1600px';
|
|
468
|
-
}
|
|
469
442
|
:root {
|
|
470
443
|
--uk-breakpoint-s: 640px;
|
|
471
444
|
--uk-breakpoint-m: 960px;
|
|
@@ -1214,28 +1187,29 @@ button.uk-icon:not(:disabled) {
|
|
|
1214
1187
|
Component: Form Range
|
|
1215
1188
|
========================================================================== */
|
|
1216
1189
|
/*
|
|
1217
|
-
* 1.
|
|
1218
|
-
* 2.
|
|
1219
|
-
* 3.
|
|
1220
|
-
* 4.
|
|
1221
|
-
* 5.
|
|
1222
|
-
* 6.
|
|
1190
|
+
* 1. Remove default style.
|
|
1191
|
+
* 2. Define consistent box sizing.
|
|
1192
|
+
* 3. Remove `margin` in all browsers.
|
|
1193
|
+
* 4. Align to the center of the line box.
|
|
1194
|
+
* 5. Prevent content overflow if a fixed width is used.
|
|
1195
|
+
* 6. Take the full width.
|
|
1196
|
+
* 7. Remove white background in Chrome.
|
|
1223
1197
|
*/
|
|
1224
1198
|
.uk-range {
|
|
1225
1199
|
/* 1 */
|
|
1200
|
+
-webkit-appearance: none;
|
|
1201
|
+
/* 2 */
|
|
1226
1202
|
box-sizing: border-box;
|
|
1203
|
+
/* 3 */
|
|
1227
1204
|
margin: 0;
|
|
1205
|
+
/* 4 */
|
|
1228
1206
|
vertical-align: middle;
|
|
1229
|
-
/*
|
|
1207
|
+
/* 5 */
|
|
1230
1208
|
max-width: 100%;
|
|
1231
|
-
/*
|
|
1209
|
+
/* 6 */
|
|
1232
1210
|
width: 100%;
|
|
1233
|
-
/*
|
|
1234
|
-
-webkit-appearance: none;
|
|
1235
|
-
/* 5 */
|
|
1211
|
+
/* 7 */
|
|
1236
1212
|
background: transparent;
|
|
1237
|
-
/* 6 */
|
|
1238
|
-
padding: 0;
|
|
1239
1213
|
}
|
|
1240
1214
|
/* Focus */
|
|
1241
1215
|
.uk-range:focus {
|
|
@@ -1244,13 +1218,6 @@ button.uk-icon:not(:disabled) {
|
|
|
1244
1218
|
.uk-range::-moz-focus-outer {
|
|
1245
1219
|
border: none;
|
|
1246
1220
|
}
|
|
1247
|
-
/* IE11 Reset */
|
|
1248
|
-
.uk-range::-ms-track {
|
|
1249
|
-
height: 15px;
|
|
1250
|
-
background: transparent;
|
|
1251
|
-
border-color: transparent;
|
|
1252
|
-
color: transparent;
|
|
1253
|
-
}
|
|
1254
1221
|
/*
|
|
1255
1222
|
* Improves consistency of cursor style for clickable elements
|
|
1256
1223
|
*/
|
|
@@ -1260,12 +1227,33 @@ button.uk-icon:not(:disabled) {
|
|
|
1260
1227
|
.uk-range:not(:disabled)::-moz-range-thumb {
|
|
1261
1228
|
cursor: pointer;
|
|
1262
1229
|
}
|
|
1263
|
-
|
|
1264
|
-
|
|
1230
|
+
/*
|
|
1231
|
+
* Track
|
|
1232
|
+
* 1. Center thumb vertically in Webkit
|
|
1233
|
+
* 2. Safari doesn't have a focus state. Using active instead.
|
|
1234
|
+
*/
|
|
1235
|
+
/* Webkit */
|
|
1236
|
+
.uk-range::-webkit-slider-runnable-track {
|
|
1237
|
+
height: 3px;
|
|
1238
|
+
background: #ebebeb;
|
|
1239
|
+
/* 1 */
|
|
1240
|
+
display: flex;
|
|
1241
|
+
align-items: center;
|
|
1242
|
+
}
|
|
1243
|
+
.uk-range:focus::-webkit-slider-runnable-track,
|
|
1244
|
+
.uk-range:active::-webkit-slider-runnable-track {
|
|
1245
|
+
background: #dedede;
|
|
1246
|
+
}
|
|
1247
|
+
/* Firefox */
|
|
1248
|
+
.uk-range::-moz-range-track {
|
|
1249
|
+
height: 3px;
|
|
1250
|
+
background: #ebebeb;
|
|
1251
|
+
}
|
|
1252
|
+
.uk-range:focus::-moz-range-track {
|
|
1253
|
+
background: #dedede;
|
|
1265
1254
|
}
|
|
1266
|
-
/* Thumb
|
|
1267
|
-
========================================================================== */
|
|
1268
1255
|
/*
|
|
1256
|
+
* Thumb
|
|
1269
1257
|
* 1. Reset
|
|
1270
1258
|
* 2. Style
|
|
1271
1259
|
*/
|
|
@@ -1273,7 +1261,6 @@ button.uk-icon:not(:disabled) {
|
|
|
1273
1261
|
.uk-range::-webkit-slider-thumb {
|
|
1274
1262
|
/* 1 */
|
|
1275
1263
|
-webkit-appearance: none;
|
|
1276
|
-
margin-top: -7px;
|
|
1277
1264
|
/* 2 */
|
|
1278
1265
|
height: 15px;
|
|
1279
1266
|
width: 15px;
|
|
@@ -1290,57 +1277,6 @@ button.uk-icon:not(:disabled) {
|
|
|
1290
1277
|
border-radius: 500px;
|
|
1291
1278
|
background: #666;
|
|
1292
1279
|
}
|
|
1293
|
-
/* Edge */
|
|
1294
|
-
.uk-range::-ms-thumb {
|
|
1295
|
-
/* 1 */
|
|
1296
|
-
margin-top: 0;
|
|
1297
|
-
}
|
|
1298
|
-
/* IE11 */
|
|
1299
|
-
.uk-range::-ms-thumb {
|
|
1300
|
-
/* 1 */
|
|
1301
|
-
border: none;
|
|
1302
|
-
/* 2 */
|
|
1303
|
-
height: 15px;
|
|
1304
|
-
width: 15px;
|
|
1305
|
-
border-radius: 500px;
|
|
1306
|
-
background: #666;
|
|
1307
|
-
}
|
|
1308
|
-
/* Edge + IE11 */
|
|
1309
|
-
.uk-range::-ms-tooltip {
|
|
1310
|
-
display: none;
|
|
1311
|
-
}
|
|
1312
|
-
/* Track
|
|
1313
|
-
========================================================================== */
|
|
1314
|
-
/*
|
|
1315
|
-
* 1. Safari doesn't have a focus state. Using active instead.
|
|
1316
|
-
*/
|
|
1317
|
-
/* Webkit */
|
|
1318
|
-
.uk-range::-webkit-slider-runnable-track {
|
|
1319
|
-
height: 3px;
|
|
1320
|
-
background: #ebebeb;
|
|
1321
|
-
}
|
|
1322
|
-
.uk-range:focus::-webkit-slider-runnable-track,
|
|
1323
|
-
.uk-range:active::-webkit-slider-runnable-track {
|
|
1324
|
-
background: #dedede;
|
|
1325
|
-
}
|
|
1326
|
-
/* Firefox */
|
|
1327
|
-
.uk-range::-moz-range-track {
|
|
1328
|
-
height: 3px;
|
|
1329
|
-
background: #ebebeb;
|
|
1330
|
-
}
|
|
1331
|
-
.uk-range:focus::-moz-range-track {
|
|
1332
|
-
background: #dedede;
|
|
1333
|
-
}
|
|
1334
|
-
/* Edge */
|
|
1335
|
-
.uk-range::-ms-fill-lower,
|
|
1336
|
-
.uk-range::-ms-fill-upper {
|
|
1337
|
-
height: 3px;
|
|
1338
|
-
background: #ebebeb;
|
|
1339
|
-
}
|
|
1340
|
-
.uk-range:focus::-ms-fill-lower,
|
|
1341
|
-
.uk-range:focus::-ms-fill-upper {
|
|
1342
|
-
background: #dedede;
|
|
1343
|
-
}
|
|
1344
1280
|
/* ========================================================================
|
|
1345
1281
|
Component: Form
|
|
1346
1282
|
========================================================================== */
|
|
@@ -1665,7 +1601,6 @@ select.uk-form-width-xsmall {
|
|
|
1665
1601
|
display: none !important;
|
|
1666
1602
|
}
|
|
1667
1603
|
/* Radio and checkbox
|
|
1668
|
-
* Note: Does not work in IE11
|
|
1669
1604
|
========================================================================== */
|
|
1670
1605
|
/*
|
|
1671
1606
|
* 1. Style
|
|
@@ -2124,27 +2059,23 @@ select.uk-form-width-xsmall {
|
|
|
2124
2059
|
Component: Progress
|
|
2125
2060
|
========================================================================== */
|
|
2126
2061
|
/*
|
|
2127
|
-
* 1. Add the correct vertical alignment in
|
|
2128
|
-
* 2.
|
|
2129
|
-
* 3.
|
|
2130
|
-
* 4. Remove
|
|
2131
|
-
* 5.
|
|
2132
|
-
* 6. Style
|
|
2062
|
+
* 1. Add the correct vertical alignment in all browsers.
|
|
2063
|
+
* 2. Behave like a block element.
|
|
2064
|
+
* 3. Remove borders in Firefox.
|
|
2065
|
+
* 4. Remove default style in Chrome, Safari and Edge.
|
|
2066
|
+
* 5. Style
|
|
2133
2067
|
*/
|
|
2134
2068
|
.uk-progress {
|
|
2135
2069
|
/* 1 */
|
|
2136
2070
|
vertical-align: baseline;
|
|
2137
2071
|
/* 2 */
|
|
2138
|
-
-webkit-appearance: none;
|
|
2139
|
-
-moz-appearance: none;
|
|
2140
|
-
/* 3 */
|
|
2141
2072
|
display: block;
|
|
2142
2073
|
width: 100%;
|
|
2143
|
-
/*
|
|
2074
|
+
/* 3 */
|
|
2144
2075
|
border: 0;
|
|
2145
|
-
/*
|
|
2076
|
+
/* 4 */
|
|
2146
2077
|
background-color: #f8f8f8;
|
|
2147
|
-
/*
|
|
2078
|
+
/* 5 */
|
|
2148
2079
|
margin-bottom: 20px;
|
|
2149
2080
|
height: 15px;
|
|
2150
2081
|
}
|
|
@@ -2153,25 +2084,15 @@ select.uk-form-width-xsmall {
|
|
|
2153
2084
|
margin-top: 20px;
|
|
2154
2085
|
}
|
|
2155
2086
|
/*
|
|
2156
|
-
*
|
|
2157
|
-
*/
|
|
2158
|
-
.uk-progress:indeterminate {
|
|
2159
|
-
color: transparent;
|
|
2160
|
-
}
|
|
2161
|
-
/*
|
|
2162
|
-
* Progress container
|
|
2163
|
-
* 2. Remove progress bar for indeterminate state in Firefox
|
|
2087
|
+
* Show background color set on `uk-progress` in Chrome, Safari and Edge.
|
|
2164
2088
|
*/
|
|
2165
2089
|
.uk-progress::-webkit-progress-bar {
|
|
2166
|
-
background-color:
|
|
2167
|
-
}
|
|
2168
|
-
/* 2 */
|
|
2169
|
-
.uk-progress:indeterminate::-moz-progress-bar {
|
|
2170
|
-
width: 0;
|
|
2090
|
+
background-color: transparent;
|
|
2171
2091
|
}
|
|
2172
2092
|
/*
|
|
2173
|
-
* Progress
|
|
2174
|
-
* 1.
|
|
2093
|
+
* Progress Bar
|
|
2094
|
+
* 1. Transitions don't work on `::-moz-progress-bar` pseudo element in Firefox yet.
|
|
2095
|
+
* https://bugzilla.mozilla.org/show_bug.cgi?id=662351
|
|
2175
2096
|
*/
|
|
2176
2097
|
.uk-progress::-webkit-progress-value {
|
|
2177
2098
|
background-color: #1e87f0;
|
|
@@ -2179,12 +2100,8 @@ select.uk-form-width-xsmall {
|
|
|
2179
2100
|
}
|
|
2180
2101
|
.uk-progress::-moz-progress-bar {
|
|
2181
2102
|
background-color: #1e87f0;
|
|
2182
|
-
}
|
|
2183
|
-
.uk-progress::-ms-fill {
|
|
2184
|
-
background-color: #1e87f0;
|
|
2185
|
-
transition: width 0.6s ease;
|
|
2186
2103
|
/* 1 */
|
|
2187
|
-
|
|
2104
|
+
transition: width 0.6s ease;
|
|
2188
2105
|
}
|
|
2189
2106
|
/* ========================================================================
|
|
2190
2107
|
Component: Section
|
|
@@ -3511,10 +3428,8 @@ select.uk-form-width-xsmall {
|
|
|
3511
3428
|
/*
|
|
3512
3429
|
* 1. Create position context for spinner and close button
|
|
3513
3430
|
* 2. Dimensions
|
|
3514
|
-
* 3.
|
|
3515
|
-
*
|
|
3516
|
-
* 4. Style
|
|
3517
|
-
* 5. Slide-in transition
|
|
3431
|
+
* 3. Style
|
|
3432
|
+
* 4. Slide-in transition
|
|
3518
3433
|
*/
|
|
3519
3434
|
.uk-modal-dialog {
|
|
3520
3435
|
/* 1 */
|
|
@@ -3524,10 +3439,8 @@ select.uk-form-width-xsmall {
|
|
|
3524
3439
|
margin: 0 auto;
|
|
3525
3440
|
width: 600px;
|
|
3526
3441
|
/* 3 */
|
|
3527
|
-
max-width: calc(100% - 0.01px) !important;
|
|
3528
|
-
/* 4 */
|
|
3529
3442
|
background: #fff;
|
|
3530
|
-
/*
|
|
3443
|
+
/* 4 */
|
|
3531
3444
|
opacity: 0;
|
|
3532
3445
|
transform: translateY(-100px);
|
|
3533
3446
|
transition: 0.3s linear;
|
|
@@ -3681,7 +3594,6 @@ select.uk-form-width-xsmall {
|
|
|
3681
3594
|
* 2. Take the full width
|
|
3682
3595
|
* 3. Clip child elements, e.g. for `uk-cover`
|
|
3683
3596
|
* 4. Optimize animation
|
|
3684
|
-
* 5. Disable horizontal panning gestures in IE11 and Edge
|
|
3685
3597
|
*/
|
|
3686
3598
|
.uk-slideshow-items > * {
|
|
3687
3599
|
/* 1 */
|
|
@@ -3695,8 +3607,6 @@ select.uk-form-width-xsmall {
|
|
|
3695
3607
|
overflow: hidden;
|
|
3696
3608
|
/* 4 */
|
|
3697
3609
|
will-change: transform, opacity;
|
|
3698
|
-
/* 5 */
|
|
3699
|
-
touch-action: pan-y;
|
|
3700
3610
|
}
|
|
3701
3611
|
/*
|
|
3702
3612
|
* Hide not active items
|
|
@@ -3763,7 +3673,6 @@ select.uk-form-width-xsmall {
|
|
|
3763
3673
|
* 1. Let items take content dimensions (0 0 auto)
|
|
3764
3674
|
* `max-width` needed to keep image responsiveness and prevent content overflow
|
|
3765
3675
|
* 3. Create position context
|
|
3766
|
-
* 4. Disable horizontal panning gestures in IE11 and Edge
|
|
3767
3676
|
*/
|
|
3768
3677
|
.uk-slider-items > * {
|
|
3769
3678
|
/* 1 */
|
|
@@ -3771,8 +3680,6 @@ select.uk-form-width-xsmall {
|
|
|
3771
3680
|
max-width: 100%;
|
|
3772
3681
|
/* 3 */
|
|
3773
3682
|
position: relative;
|
|
3774
|
-
/* 4 */
|
|
3775
|
-
touch-action: pan-y;
|
|
3776
3683
|
}
|
|
3777
3684
|
/* ========================================================================
|
|
3778
3685
|
Component: Sticky
|
|
@@ -4075,9 +3982,6 @@ select.uk-form-width-xsmall {
|
|
|
4075
3982
|
/*
|
|
4076
3983
|
* Pass fill character to JS
|
|
4077
3984
|
*/
|
|
4078
|
-
.uk-leader-fill-content::before {
|
|
4079
|
-
content: '.';
|
|
4080
|
-
}
|
|
4081
3985
|
:root {
|
|
4082
3986
|
--uk-leader-fill-content: '.';
|
|
4083
3987
|
}
|
|
@@ -4899,13 +4803,6 @@ ul.uk-nav-sub {
|
|
|
4899
4803
|
.uk-navbar-container:not(.uk-navbar-transparent) {
|
|
4900
4804
|
background: #f8f8f8;
|
|
4901
4805
|
}
|
|
4902
|
-
/*
|
|
4903
|
-
* Remove pseudo elements created by micro clearfix as precaution (if Container component is used)
|
|
4904
|
-
*/
|
|
4905
|
-
.uk-navbar-container > ::before,
|
|
4906
|
-
.uk-navbar-container > ::after {
|
|
4907
|
-
display: none !important;
|
|
4908
|
-
}
|
|
4909
4806
|
/* Groups
|
|
4910
4807
|
========================================================================== */
|
|
4911
4808
|
/*
|
|
@@ -5832,7 +5729,6 @@ ul.uk-nav-sub {
|
|
|
5832
5729
|
* 4. Optimize animation
|
|
5833
5730
|
* 5. Responsiveness
|
|
5834
5731
|
* Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
|
|
5835
|
-
* Using `vh` and `vw` to make responsive image work in IE11
|
|
5836
5732
|
*/
|
|
5837
5733
|
.uk-lightbox-items > * {
|
|
5838
5734
|
/* 1 */
|
|
@@ -6867,24 +6763,20 @@ ul.uk-nav-sub {
|
|
|
6867
6763
|
/* Background modifier
|
|
6868
6764
|
========================================================================== */
|
|
6869
6765
|
/*
|
|
6870
|
-
* 1. The background clips to the foreground text. Works in
|
|
6871
|
-
*
|
|
6872
|
-
*
|
|
6873
|
-
*
|
|
6766
|
+
* 1. The background clips to the foreground text. Works in all browsers.
|
|
6767
|
+
* 2. Default color is set to transparent.
|
|
6768
|
+
* 3. Container fits the text
|
|
6769
|
+
* 4. Style
|
|
6874
6770
|
*/
|
|
6875
6771
|
.uk-text-background {
|
|
6876
6772
|
/* 1 */
|
|
6877
6773
|
-webkit-background-clip: text;
|
|
6878
6774
|
/* 2 */
|
|
6879
|
-
|
|
6775
|
+
color: transparent !important;
|
|
6880
6776
|
/* 3 */
|
|
6881
|
-
|
|
6882
|
-
|
|
6883
|
-
|
|
6884
|
-
.uk-text-background {
|
|
6885
|
-
background-color: #1e87f0;
|
|
6886
|
-
color: transparent !important;
|
|
6887
|
-
}
|
|
6777
|
+
display: inline-block;
|
|
6778
|
+
/* 4 */
|
|
6779
|
+
background-color: #1e87f0;
|
|
6888
6780
|
}
|
|
6889
6781
|
/* Alignment modifiers
|
|
6890
6782
|
========================================================================== */
|
|
@@ -6990,22 +6882,17 @@ td.uk-text-truncate {
|
|
|
6990
6882
|
max-width: 0;
|
|
6991
6883
|
}
|
|
6992
6884
|
/*
|
|
6993
|
-
*
|
|
6994
|
-
*
|
|
6995
|
-
*
|
|
6996
|
-
* Must use `break-all` to support IE11 and Edge
|
|
6997
|
-
* Note: Not using `hyphens: auto;` because it hyphenates text even if not needed
|
|
6885
|
+
* Wrap long words onto the next line and break them if they are too long to fit.
|
|
6886
|
+
* 1. Make it work with table cells in all browsers.
|
|
6887
|
+
* Note: Not using `hyphens: auto` because it hyphenates text even if not needed.
|
|
6998
6888
|
*/
|
|
6999
6889
|
.uk-text-break {
|
|
7000
|
-
/* 1 */
|
|
7001
6890
|
overflow-wrap: break-word;
|
|
7002
|
-
/* 2 */
|
|
7003
|
-
word-wrap: break-word;
|
|
7004
6891
|
}
|
|
7005
|
-
/*
|
|
6892
|
+
/* 1 */
|
|
7006
6893
|
th.uk-text-break,
|
|
7007
6894
|
td.uk-text-break {
|
|
7008
|
-
word-break: break-
|
|
6895
|
+
word-break: break-word;
|
|
7009
6896
|
}
|
|
7010
6897
|
/* ========================================================================
|
|
7011
6898
|
Component: Column
|
|
@@ -7628,6 +7515,47 @@ iframe[data-uk-cover] {
|
|
|
7628
7515
|
[data-uk-responsive] {
|
|
7629
7516
|
max-width: 100%;
|
|
7630
7517
|
}
|
|
7518
|
+
/* Object
|
|
7519
|
+
========================================================================== */
|
|
7520
|
+
.uk-object-fit-none {
|
|
7521
|
+
object-fit: none;
|
|
7522
|
+
}
|
|
7523
|
+
.uk-object-fit-cover {
|
|
7524
|
+
object-fit: cover;
|
|
7525
|
+
}
|
|
7526
|
+
.uk-object-fit-contain {
|
|
7527
|
+
object-fit: contain;
|
|
7528
|
+
}
|
|
7529
|
+
/*
|
|
7530
|
+
* Position
|
|
7531
|
+
*/
|
|
7532
|
+
.uk-object-top-left {
|
|
7533
|
+
object-position: 0 0;
|
|
7534
|
+
}
|
|
7535
|
+
.uk-object-top-center {
|
|
7536
|
+
object-position: 50% 0;
|
|
7537
|
+
}
|
|
7538
|
+
.uk-object-top-right {
|
|
7539
|
+
object-position: 100% 0;
|
|
7540
|
+
}
|
|
7541
|
+
.uk-object-center-left {
|
|
7542
|
+
object-position: 0 50%;
|
|
7543
|
+
}
|
|
7544
|
+
.uk-object-center-center {
|
|
7545
|
+
object-position: 50% 50%;
|
|
7546
|
+
}
|
|
7547
|
+
.uk-object-center-right {
|
|
7548
|
+
object-position: 100% 50%;
|
|
7549
|
+
}
|
|
7550
|
+
.uk-object-bottom-left {
|
|
7551
|
+
object-position: 0 100%;
|
|
7552
|
+
}
|
|
7553
|
+
.uk-object-bottom-center {
|
|
7554
|
+
object-position: 50% 100%;
|
|
7555
|
+
}
|
|
7556
|
+
.uk-object-bottom-right {
|
|
7557
|
+
object-position: 100% 100%;
|
|
7558
|
+
}
|
|
7631
7559
|
/* Border
|
|
7632
7560
|
========================================================================== */
|
|
7633
7561
|
.uk-border-circle {
|
|
@@ -7878,15 +7806,6 @@ iframe[data-uk-cover] {
|
|
|
7878
7806
|
.uk-flex-inline {
|
|
7879
7807
|
display: inline-flex;
|
|
7880
7808
|
}
|
|
7881
|
-
/*
|
|
7882
|
-
* Remove pseudo elements created by micro clearfix as precaution
|
|
7883
|
-
*/
|
|
7884
|
-
.uk-flex::before,
|
|
7885
|
-
.uk-flex::after,
|
|
7886
|
-
.uk-flex-inline::before,
|
|
7887
|
-
.uk-flex-inline::after {
|
|
7888
|
-
display: none;
|
|
7889
|
-
}
|
|
7890
7809
|
/* Alignment
|
|
7891
7810
|
========================================================================== */
|
|
7892
7811
|
/*
|