uikit 3.11.2-dev.72dbb9a19 → 3.11.2-dev.76734f785
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/CHANGELOG.md +39 -19
- package/dist/css/uikit-core-rtl.css +86 -170
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +86 -170
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +88 -176
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +88 -176
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +1 -1
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +1 -1
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +1 -1
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +1 -1
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +115 -78
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +115 -78
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +79 -33
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +115 -78
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +45 -3
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +1 -1
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +1 -1
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +259 -234
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +461 -347
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/components/internal/slider-preload.js +37 -0
- package/src/js/components/slider.js +43 -34
- package/src/js/components/slideshow.js +8 -1
- package/src/js/core/height-viewport.js +3 -0
- package/src/js/core/icon.js +13 -6
- package/src/js/core/img.js +131 -114
- package/src/js/core/sticky.js +51 -57
- package/src/js/core/svg.js +10 -6
- package/src/js/core/toggle.js +2 -1
- package/src/js/mixin/parallax.js +116 -79
- package/src/js/util/ajax.js +6 -2
- package/src/js/util/dimensions.js +4 -4
- package/src/js/util/dom.js +37 -31
- package/src/js/util/lang.js +6 -5
- package/src/js/util/player.js +3 -2
- package/src/js/util/style.js +4 -4
- package/src/less/components/base.less +10 -28
- package/src/less/components/form-range.less +48 -95
- package/src/less/components/form.less +0 -1
- package/src/less/components/height.less +3 -0
- package/src/less/components/lightbox.less +0 -1
- package/src/less/components/modal.less +3 -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/scss/components/base.scss +10 -28
- package/src/scss/components/form-range.scss +48 -95
- package/src/scss/components/form.scss +0 -1
- package/src/scss/components/height.scss +3 -0
- package/src/scss/components/lightbox.scss +0 -1
- package/src/scss/components/modal.scss +3 -7
- package/src/scss/components/progress.scss +14 -36
- 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/mixins-theme.scss +1 -1
- package/src/scss/mixins.scss +1 -1
- package/src/scss/variables-theme.scss +3 -3
- package/src/scss/variables.scss +3 -3
- 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 -64
- 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/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 +16 -7
- 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 +56 -71
- 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/tests/images/animated.gif +0 -0
package/dist/css/uikit-rtl.css
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
/*! UIkit 3.11.2-dev.
|
|
1
|
+
/*! UIkit 3.11.2-dev.76734f785 | 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
|
*/
|
|
@@ -132,7 +131,7 @@ sub {
|
|
|
132
131
|
/* Embedded content
|
|
133
132
|
========================================================================== */
|
|
134
133
|
/*
|
|
135
|
-
* Remove the gap between
|
|
134
|
+
* Remove the gap between the element and the bottom of its parent container.
|
|
136
135
|
*/
|
|
137
136
|
audio,
|
|
138
137
|
canvas,
|
|
@@ -143,13 +142,13 @@ video {
|
|
|
143
142
|
vertical-align: middle;
|
|
144
143
|
}
|
|
145
144
|
/*
|
|
146
|
-
* 1.
|
|
147
|
-
* 2.
|
|
148
|
-
* 3.
|
|
149
|
-
* 4. Exclude SVGs for IE11 because they don't preserve their aspect ratio.
|
|
145
|
+
* 1. Constrain the element to its parent width.
|
|
146
|
+
* 2. Preserve the intrinsic aspect ratio and auto-scale the height of an image if the `height` attribute is present.
|
|
147
|
+
* 3. Take border and padding into account.
|
|
150
148
|
*/
|
|
151
149
|
canvas,
|
|
152
150
|
img,
|
|
151
|
+
svg,
|
|
153
152
|
video {
|
|
154
153
|
/* 1 */
|
|
155
154
|
max-width: 100%;
|
|
@@ -158,30 +157,16 @@ video {
|
|
|
158
157
|
/* 3 */
|
|
159
158
|
box-sizing: border-box;
|
|
160
159
|
}
|
|
161
|
-
/* 4 */
|
|
162
|
-
@supports (display: block) {
|
|
163
|
-
svg {
|
|
164
|
-
max-width: 100%;
|
|
165
|
-
height: auto;
|
|
166
|
-
box-sizing: border-box;
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
160
|
/*
|
|
170
|
-
*
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
overflow: hidden;
|
|
174
|
-
}
|
|
175
|
-
/*
|
|
176
|
-
* 1. Fix lazy loading images if parent element is set to `display: inline` and has `overflow: hidden`.
|
|
177
|
-
* 2. Hide `alt` text for lazy loading images.
|
|
178
|
-
* Note: Selector for background while loading img[data-src*='.jpg'][src*='data:image'] { background: grey; }
|
|
161
|
+
* Deprecated: only needed for `img` elements with `uk-img`
|
|
162
|
+
* 1. Hide `alt` text for lazy load images.
|
|
163
|
+
* 2. Fix lazy loading images if parent element is set to `display: inline` and has `overflow: hidden`.
|
|
179
164
|
*/
|
|
180
165
|
img:not([src]) {
|
|
181
166
|
/* 1 */
|
|
182
|
-
min-width: 1px;
|
|
183
|
-
/* 2 */
|
|
184
167
|
visibility: hidden;
|
|
168
|
+
/* 2 */
|
|
169
|
+
min-width: 1px;
|
|
185
170
|
}
|
|
186
171
|
/*
|
|
187
172
|
* Iframe
|
|
@@ -1232,28 +1217,29 @@ button.uk-icon:not(:disabled) {
|
|
|
1232
1217
|
Component: Form Range
|
|
1233
1218
|
========================================================================== */
|
|
1234
1219
|
/*
|
|
1235
|
-
* 1.
|
|
1236
|
-
* 2.
|
|
1237
|
-
* 3.
|
|
1238
|
-
* 4.
|
|
1239
|
-
* 5.
|
|
1240
|
-
* 6.
|
|
1220
|
+
* 1. Remove default style.
|
|
1221
|
+
* 2. Define consistent box sizing.
|
|
1222
|
+
* 3. Remove `margin` in all browsers.
|
|
1223
|
+
* 4. Align to the center of the line box.
|
|
1224
|
+
* 5. Prevent content overflow if a fixed width is used.
|
|
1225
|
+
* 6. Take the full width.
|
|
1226
|
+
* 7. Remove white background in Chrome.
|
|
1241
1227
|
*/
|
|
1242
1228
|
.uk-range {
|
|
1243
1229
|
/* 1 */
|
|
1230
|
+
-webkit-appearance: none;
|
|
1231
|
+
/* 2 */
|
|
1244
1232
|
box-sizing: border-box;
|
|
1233
|
+
/* 3 */
|
|
1245
1234
|
margin: 0;
|
|
1235
|
+
/* 4 */
|
|
1246
1236
|
vertical-align: middle;
|
|
1247
|
-
/*
|
|
1237
|
+
/* 5 */
|
|
1248
1238
|
max-width: 100%;
|
|
1249
|
-
/*
|
|
1239
|
+
/* 6 */
|
|
1250
1240
|
width: 100%;
|
|
1251
|
-
/*
|
|
1252
|
-
-webkit-appearance: none;
|
|
1253
|
-
/* 5 */
|
|
1241
|
+
/* 7 */
|
|
1254
1242
|
background: transparent;
|
|
1255
|
-
/* 6 */
|
|
1256
|
-
padding: 0;
|
|
1257
1243
|
}
|
|
1258
1244
|
/* Focus */
|
|
1259
1245
|
.uk-range:focus {
|
|
@@ -1262,13 +1248,6 @@ button.uk-icon:not(:disabled) {
|
|
|
1262
1248
|
.uk-range::-moz-focus-outer {
|
|
1263
1249
|
border: none;
|
|
1264
1250
|
}
|
|
1265
|
-
/* IE11 Reset */
|
|
1266
|
-
.uk-range::-ms-track {
|
|
1267
|
-
height: 15px;
|
|
1268
|
-
background: transparent;
|
|
1269
|
-
border-color: transparent;
|
|
1270
|
-
color: transparent;
|
|
1271
|
-
}
|
|
1272
1251
|
/*
|
|
1273
1252
|
* Improves consistency of cursor style for clickable elements
|
|
1274
1253
|
*/
|
|
@@ -1278,12 +1257,31 @@ button.uk-icon:not(:disabled) {
|
|
|
1278
1257
|
.uk-range:not(:disabled)::-moz-range-thumb {
|
|
1279
1258
|
cursor: pointer;
|
|
1280
1259
|
}
|
|
1281
|
-
|
|
1282
|
-
|
|
1260
|
+
/*
|
|
1261
|
+
* Track
|
|
1262
|
+
* 1. Safari doesn't have a focus state. Using active instead.
|
|
1263
|
+
*/
|
|
1264
|
+
/* Webkit */
|
|
1265
|
+
.uk-range::-webkit-slider-runnable-track {
|
|
1266
|
+
height: 3px;
|
|
1267
|
+
background: #ebebeb;
|
|
1268
|
+
border-radius: 500px;
|
|
1269
|
+
}
|
|
1270
|
+
.uk-range:focus::-webkit-slider-runnable-track,
|
|
1271
|
+
.uk-range:active::-webkit-slider-runnable-track {
|
|
1272
|
+
background: #dedede;
|
|
1273
|
+
}
|
|
1274
|
+
/* Firefox */
|
|
1275
|
+
.uk-range::-moz-range-track {
|
|
1276
|
+
height: 3px;
|
|
1277
|
+
background: #ebebeb;
|
|
1278
|
+
border-radius: 500px;
|
|
1279
|
+
}
|
|
1280
|
+
.uk-range:focus::-moz-range-track {
|
|
1281
|
+
background: #dedede;
|
|
1283
1282
|
}
|
|
1284
|
-
/* Thumb
|
|
1285
|
-
========================================================================== */
|
|
1286
1283
|
/*
|
|
1284
|
+
* Thumb
|
|
1287
1285
|
* 1. Reset
|
|
1288
1286
|
* 2. Style
|
|
1289
1287
|
*/
|
|
@@ -1306,65 +1304,11 @@ button.uk-icon:not(:disabled) {
|
|
|
1306
1304
|
/* 2 */
|
|
1307
1305
|
height: 15px;
|
|
1308
1306
|
width: 15px;
|
|
1307
|
+
margin-top: -7px;
|
|
1309
1308
|
border-radius: 500px;
|
|
1310
1309
|
background: #fff;
|
|
1311
1310
|
border: 1px solid #cccccc;
|
|
1312
1311
|
}
|
|
1313
|
-
/* Edge */
|
|
1314
|
-
.uk-range::-ms-thumb {
|
|
1315
|
-
/* 1 */
|
|
1316
|
-
margin-top: 0;
|
|
1317
|
-
}
|
|
1318
|
-
/* IE11 */
|
|
1319
|
-
.uk-range::-ms-thumb {
|
|
1320
|
-
/* 1 */
|
|
1321
|
-
border: none;
|
|
1322
|
-
/* 2 */
|
|
1323
|
-
height: 15px;
|
|
1324
|
-
width: 15px;
|
|
1325
|
-
border-radius: 500px;
|
|
1326
|
-
background: #fff;
|
|
1327
|
-
border: 1px solid #cccccc;
|
|
1328
|
-
}
|
|
1329
|
-
/* Edge + IE11 */
|
|
1330
|
-
.uk-range::-ms-tooltip {
|
|
1331
|
-
display: none;
|
|
1332
|
-
}
|
|
1333
|
-
/* Track
|
|
1334
|
-
========================================================================== */
|
|
1335
|
-
/*
|
|
1336
|
-
* 1. Safari doesn't have a focus state. Using active instead.
|
|
1337
|
-
*/
|
|
1338
|
-
/* Webkit */
|
|
1339
|
-
.uk-range::-webkit-slider-runnable-track {
|
|
1340
|
-
height: 3px;
|
|
1341
|
-
background: #ebebeb;
|
|
1342
|
-
border-radius: 500px;
|
|
1343
|
-
}
|
|
1344
|
-
.uk-range:focus::-webkit-slider-runnable-track,
|
|
1345
|
-
.uk-range:active::-webkit-slider-runnable-track {
|
|
1346
|
-
background: #dedede;
|
|
1347
|
-
}
|
|
1348
|
-
/* Firefox */
|
|
1349
|
-
.uk-range::-moz-range-track {
|
|
1350
|
-
height: 3px;
|
|
1351
|
-
background: #ebebeb;
|
|
1352
|
-
border-radius: 500px;
|
|
1353
|
-
}
|
|
1354
|
-
.uk-range:focus::-moz-range-track {
|
|
1355
|
-
background: #dedede;
|
|
1356
|
-
}
|
|
1357
|
-
/* Edge */
|
|
1358
|
-
.uk-range::-ms-fill-lower,
|
|
1359
|
-
.uk-range::-ms-fill-upper {
|
|
1360
|
-
height: 3px;
|
|
1361
|
-
background: #ebebeb;
|
|
1362
|
-
border-radius: 500px;
|
|
1363
|
-
}
|
|
1364
|
-
.uk-range:focus::-ms-fill-lower,
|
|
1365
|
-
.uk-range:focus::-ms-fill-upper {
|
|
1366
|
-
background: #dedede;
|
|
1367
|
-
}
|
|
1368
1312
|
/* ========================================================================
|
|
1369
1313
|
Component: Form
|
|
1370
1314
|
========================================================================== */
|
|
@@ -1701,7 +1645,6 @@ select.uk-form-width-xsmall {
|
|
|
1701
1645
|
display: none !important;
|
|
1702
1646
|
}
|
|
1703
1647
|
/* Radio and checkbox
|
|
1704
|
-
* Note: Does not work in IE11
|
|
1705
1648
|
========================================================================== */
|
|
1706
1649
|
/*
|
|
1707
1650
|
* 1. Style
|
|
@@ -2217,27 +2160,23 @@ select.uk-form-width-xsmall {
|
|
|
2217
2160
|
Component: Progress
|
|
2218
2161
|
========================================================================== */
|
|
2219
2162
|
/*
|
|
2220
|
-
* 1. Add the correct vertical alignment in
|
|
2221
|
-
* 2.
|
|
2222
|
-
* 3.
|
|
2223
|
-
* 4. Remove
|
|
2224
|
-
* 5.
|
|
2225
|
-
* 6. Style
|
|
2163
|
+
* 1. Add the correct vertical alignment in all browsers.
|
|
2164
|
+
* 2. Behave like a block element.
|
|
2165
|
+
* 3. Remove borders in Firefox.
|
|
2166
|
+
* 4. Remove default style in Chrome, Safari and Edge.
|
|
2167
|
+
* 5. Style
|
|
2226
2168
|
*/
|
|
2227
2169
|
.uk-progress {
|
|
2228
2170
|
/* 1 */
|
|
2229
2171
|
vertical-align: baseline;
|
|
2230
2172
|
/* 2 */
|
|
2231
|
-
-webkit-appearance: none;
|
|
2232
|
-
-moz-appearance: none;
|
|
2233
|
-
/* 3 */
|
|
2234
2173
|
display: block;
|
|
2235
2174
|
width: 100%;
|
|
2236
|
-
/*
|
|
2175
|
+
/* 3 */
|
|
2237
2176
|
border: 0;
|
|
2238
|
-
/*
|
|
2177
|
+
/* 4 */
|
|
2239
2178
|
background-color: #f8f8f8;
|
|
2240
|
-
/*
|
|
2179
|
+
/* 5 */
|
|
2241
2180
|
margin-bottom: 20px;
|
|
2242
2181
|
height: 15px;
|
|
2243
2182
|
border-radius: 500px;
|
|
@@ -2248,27 +2187,15 @@ select.uk-form-width-xsmall {
|
|
|
2248
2187
|
margin-top: 20px;
|
|
2249
2188
|
}
|
|
2250
2189
|
/*
|
|
2251
|
-
*
|
|
2252
|
-
*/
|
|
2253
|
-
.uk-progress:indeterminate {
|
|
2254
|
-
color: transparent;
|
|
2255
|
-
}
|
|
2256
|
-
/*
|
|
2257
|
-
* Progress container
|
|
2258
|
-
* 2. Remove progress bar for indeterminate state in Firefox
|
|
2190
|
+
* Show background color set on `uk-progress` in Chrome, Safari and Edge.
|
|
2259
2191
|
*/
|
|
2260
2192
|
.uk-progress::-webkit-progress-bar {
|
|
2261
|
-
background-color:
|
|
2262
|
-
border-radius: 500px;
|
|
2263
|
-
overflow: hidden;
|
|
2264
|
-
}
|
|
2265
|
-
/* 2 */
|
|
2266
|
-
.uk-progress:indeterminate::-moz-progress-bar {
|
|
2267
|
-
width: 0;
|
|
2193
|
+
background-color: transparent;
|
|
2268
2194
|
}
|
|
2269
2195
|
/*
|
|
2270
|
-
* Progress
|
|
2271
|
-
* 1.
|
|
2196
|
+
* Progress Bar
|
|
2197
|
+
* 1. Transitions don't work on `::-moz-progress-bar` pseudo element in Firefox yet.
|
|
2198
|
+
* https://bugzilla.mozilla.org/show_bug.cgi?id=662351
|
|
2272
2199
|
*/
|
|
2273
2200
|
.uk-progress::-webkit-progress-value {
|
|
2274
2201
|
background-color: #1e87f0;
|
|
@@ -2276,12 +2203,8 @@ select.uk-form-width-xsmall {
|
|
|
2276
2203
|
}
|
|
2277
2204
|
.uk-progress::-moz-progress-bar {
|
|
2278
2205
|
background-color: #1e87f0;
|
|
2279
|
-
}
|
|
2280
|
-
.uk-progress::-ms-fill {
|
|
2281
|
-
background-color: #1e87f0;
|
|
2282
|
-
transition: width 0.6s ease;
|
|
2283
2206
|
/* 1 */
|
|
2284
|
-
|
|
2207
|
+
transition: width 0.6s ease;
|
|
2285
2208
|
}
|
|
2286
2209
|
/* ========================================================================
|
|
2287
2210
|
Component: Section
|
|
@@ -3766,10 +3689,8 @@ select.uk-form-width-xsmall {
|
|
|
3766
3689
|
/*
|
|
3767
3690
|
* 1. Create position context for spinner and close button
|
|
3768
3691
|
* 2. Dimensions
|
|
3769
|
-
* 3.
|
|
3770
|
-
*
|
|
3771
|
-
* 4. Style
|
|
3772
|
-
* 5. Slide-in transition
|
|
3692
|
+
* 3. Style
|
|
3693
|
+
* 4. Slide-in transition
|
|
3773
3694
|
*/
|
|
3774
3695
|
.uk-modal-dialog {
|
|
3775
3696
|
/* 1 */
|
|
@@ -3779,10 +3700,8 @@ select.uk-form-width-xsmall {
|
|
|
3779
3700
|
margin: 0 auto;
|
|
3780
3701
|
width: 600px;
|
|
3781
3702
|
/* 3 */
|
|
3782
|
-
max-width: calc(100% - 0.01px) !important;
|
|
3783
|
-
/* 4 */
|
|
3784
3703
|
background: #fff;
|
|
3785
|
-
/*
|
|
3704
|
+
/* 4 */
|
|
3786
3705
|
opacity: 0;
|
|
3787
3706
|
transform: translateY(-100px);
|
|
3788
3707
|
transition: 0.3s linear;
|
|
@@ -3944,7 +3863,6 @@ select.uk-form-width-xsmall {
|
|
|
3944
3863
|
* 2. Take the full width
|
|
3945
3864
|
* 3. Clip child elements, e.g. for `uk-cover`
|
|
3946
3865
|
* 4. Optimize animation
|
|
3947
|
-
* 5. Disable horizontal panning gestures in IE11 and Edge
|
|
3948
3866
|
*/
|
|
3949
3867
|
.uk-slideshow-items > * {
|
|
3950
3868
|
/* 1 */
|
|
@@ -3958,8 +3876,6 @@ select.uk-form-width-xsmall {
|
|
|
3958
3876
|
overflow: hidden;
|
|
3959
3877
|
/* 4 */
|
|
3960
3878
|
will-change: transform, opacity;
|
|
3961
|
-
/* 5 */
|
|
3962
|
-
touch-action: pan-y;
|
|
3963
3879
|
}
|
|
3964
3880
|
/*
|
|
3965
3881
|
* Hide not active items
|
|
@@ -4026,7 +3942,6 @@ select.uk-form-width-xsmall {
|
|
|
4026
3942
|
* 1. Let items take content dimensions (0 0 auto)
|
|
4027
3943
|
* `max-width` needed to keep image responsiveness and prevent content overflow
|
|
4028
3944
|
* 3. Create position context
|
|
4029
|
-
* 4. Disable horizontal panning gestures in IE11 and Edge
|
|
4030
3945
|
*/
|
|
4031
3946
|
.uk-slider-items > * {
|
|
4032
3947
|
/* 1 */
|
|
@@ -4034,8 +3949,6 @@ select.uk-form-width-xsmall {
|
|
|
4034
3949
|
max-width: 100%;
|
|
4035
3950
|
/* 3 */
|
|
4036
3951
|
position: relative;
|
|
4037
|
-
/* 4 */
|
|
4038
|
-
touch-action: pan-y;
|
|
4039
3952
|
}
|
|
4040
3953
|
/* ========================================================================
|
|
4041
3954
|
Component: Sticky
|
|
@@ -6207,7 +6120,6 @@ ul.uk-nav-sub {
|
|
|
6207
6120
|
* 4. Optimize animation
|
|
6208
6121
|
* 5. Responsiveness
|
|
6209
6122
|
* Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
|
|
6210
|
-
* Using `vh` and `vw` to make responsive image work in IE11
|
|
6211
6123
|
*/
|
|
6212
6124
|
.uk-lightbox-items > * {
|
|
6213
6125
|
/* 1 */
|
|
@@ -7127,6 +7039,15 @@ ul.uk-nav-sub {
|
|
|
7127
7039
|
.uk-height-viewport {
|
|
7128
7040
|
min-height: 100vh;
|
|
7129
7041
|
}
|
|
7042
|
+
.uk-height-viewport-2 {
|
|
7043
|
+
min-height: 200vh;
|
|
7044
|
+
}
|
|
7045
|
+
.uk-height-viewport-3 {
|
|
7046
|
+
min-height: 300vh;
|
|
7047
|
+
}
|
|
7048
|
+
.uk-height-viewport-4 {
|
|
7049
|
+
min-height: 400vh;
|
|
7050
|
+
}
|
|
7130
7051
|
/*
|
|
7131
7052
|
* Pixel
|
|
7132
7053
|
* Useful for `overflow: auto`
|
|
@@ -7249,24 +7170,20 @@ ul.uk-nav-sub {
|
|
|
7249
7170
|
/* Background modifier
|
|
7250
7171
|
========================================================================== */
|
|
7251
7172
|
/*
|
|
7252
|
-
* 1. The background clips to the foreground text. Works in
|
|
7253
|
-
*
|
|
7254
|
-
*
|
|
7255
|
-
*
|
|
7173
|
+
* 1. The background clips to the foreground text. Works in all browsers.
|
|
7174
|
+
* 2. Default color is set to transparent.
|
|
7175
|
+
* 3. Container fits the text
|
|
7176
|
+
* 4. Style
|
|
7256
7177
|
*/
|
|
7257
7178
|
.uk-text-background {
|
|
7258
7179
|
/* 1 */
|
|
7259
7180
|
-webkit-background-clip: text;
|
|
7260
7181
|
/* 2 */
|
|
7261
|
-
|
|
7182
|
+
color: transparent !important;
|
|
7262
7183
|
/* 3 */
|
|
7263
|
-
|
|
7264
|
-
|
|
7265
|
-
|
|
7266
|
-
.uk-text-background {
|
|
7267
|
-
background-color: #1e87f0;
|
|
7268
|
-
color: transparent !important;
|
|
7269
|
-
}
|
|
7184
|
+
display: inline-block;
|
|
7185
|
+
/* 4 */
|
|
7186
|
+
background-color: #1e87f0;
|
|
7270
7187
|
}
|
|
7271
7188
|
/* Alignment modifiers
|
|
7272
7189
|
========================================================================== */
|
|
@@ -7372,22 +7289,17 @@ td.uk-text-truncate {
|
|
|
7372
7289
|
max-width: 0;
|
|
7373
7290
|
}
|
|
7374
7291
|
/*
|
|
7375
|
-
*
|
|
7376
|
-
*
|
|
7377
|
-
*
|
|
7378
|
-
* Must use `break-all` to support IE11 and Edge
|
|
7379
|
-
* Note: Not using `hyphens: auto;` because it hyphenates text even if not needed
|
|
7292
|
+
* Wrap long words onto the next line and break them if they are too long to fit.
|
|
7293
|
+
* 1. Make it work with table cells in all browsers.
|
|
7294
|
+
* Note: Not using `hyphens: auto` because it hyphenates text even if not needed.
|
|
7380
7295
|
*/
|
|
7381
7296
|
.uk-text-break {
|
|
7382
|
-
/* 1 */
|
|
7383
7297
|
overflow-wrap: break-word;
|
|
7384
|
-
/* 2 */
|
|
7385
|
-
word-wrap: break-word;
|
|
7386
7298
|
}
|
|
7387
|
-
/*
|
|
7299
|
+
/* 1 */
|
|
7388
7300
|
th.uk-text-break,
|
|
7389
7301
|
td.uk-text-break {
|
|
7390
|
-
word-break: break-
|
|
7302
|
+
word-break: break-word;
|
|
7391
7303
|
}
|
|
7392
7304
|
/* ========================================================================
|
|
7393
7305
|
Component: Column
|