uikit 3.11.2-dev.2b60845fb → 3.11.2-dev.2f4ac8e16

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.
Files changed (130) hide show
  1. package/CHANGELOG.md +32 -18
  2. package/dist/css/uikit-core-rtl.css +80 -186
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +80 -186
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +82 -192
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +82 -192
  9. package/dist/css/uikit.min.css +1 -1
  10. package/dist/js/components/countdown.js +1 -1
  11. package/dist/js/components/countdown.min.js +1 -1
  12. package/dist/js/components/filter.js +6 -8
  13. package/dist/js/components/filter.min.js +1 -1
  14. package/dist/js/components/lightbox-panel.js +26 -55
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +27 -57
  17. package/dist/js/components/lightbox.min.js +1 -1
  18. package/dist/js/components/notification.js +1 -1
  19. package/dist/js/components/notification.min.js +1 -1
  20. package/dist/js/components/parallax.js +85 -68
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +85 -68
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +60 -12
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +85 -68
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +52 -16
  29. package/dist/js/components/slideshow.min.js +1 -1
  30. package/dist/js/components/sortable.js +5 -7
  31. package/dist/js/components/sortable.min.js +1 -1
  32. package/dist/js/components/tooltip.js +2 -2
  33. package/dist/js/components/tooltip.min.js +1 -1
  34. package/dist/js/components/upload.js +1 -1
  35. package/dist/js/components/upload.min.js +1 -1
  36. package/dist/js/uikit-core.js +215 -220
  37. package/dist/js/uikit-core.min.js +1 -1
  38. package/dist/js/uikit-icons.js +1 -1
  39. package/dist/js/uikit-icons.min.js +1 -1
  40. package/dist/js/uikit.js +397 -355
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +1 -1
  43. package/src/js/api/component.js +2 -11
  44. package/src/js/api/hooks.js +1 -1
  45. package/src/js/api/state.js +1 -1
  46. package/src/js/components/filter.js +2 -3
  47. package/src/js/components/internal/lightbox-animations.js +4 -3
  48. package/src/js/components/internal/slider-preload.js +37 -0
  49. package/src/js/components/internal/slideshow-animations.js +4 -3
  50. package/src/js/components/lightbox-panel.js +34 -58
  51. package/src/js/components/lightbox.js +1 -2
  52. package/src/js/components/slider.js +21 -1
  53. package/src/js/components/slideshow.js +8 -1
  54. package/src/js/components/sortable.js +1 -1
  55. package/src/js/core/alert.js +1 -2
  56. package/src/js/core/img.js +129 -114
  57. package/src/js/core/modal.js +1 -2
  58. package/src/js/core/navbar.js +3 -3
  59. package/src/js/core/sticky.js +1 -1
  60. package/src/js/core/svg.js +10 -6
  61. package/src/js/core/toggle.js +2 -1
  62. package/src/js/mixin/internal/animate-slide.js +9 -12
  63. package/src/js/mixin/parallax.js +85 -68
  64. package/src/js/mixin/slider.js +8 -16
  65. package/src/js/mixin/slideshow.js +2 -2
  66. package/src/js/mixin/togglable.js +1 -2
  67. package/src/js/util/ajax.js +9 -12
  68. package/src/js/util/animation.js +7 -12
  69. package/src/js/util/dom.js +27 -30
  70. package/src/js/util/lang.js +7 -6
  71. package/src/js/util/options.js +2 -11
  72. package/src/js/util/player.js +5 -4
  73. package/src/js/util/selector.js +12 -18
  74. package/src/js/util/style.js +4 -4
  75. package/src/less/components/base.less +10 -33
  76. package/src/less/components/form-range.less +52 -97
  77. package/src/less/components/form.less +0 -1
  78. package/src/less/components/leader.less +0 -1
  79. package/src/less/components/lightbox.less +0 -1
  80. package/src/less/components/modal.less +3 -7
  81. package/src/less/components/progress.less +14 -36
  82. package/src/less/components/slider.less +0 -3
  83. package/src/less/components/slideshow.less +0 -3
  84. package/src/less/components/text.less +16 -32
  85. package/src/scss/components/base.scss +10 -33
  86. package/src/scss/components/form-range.scss +52 -97
  87. package/src/scss/components/form.scss +0 -1
  88. package/src/scss/components/leader.scss +0 -1
  89. package/src/scss/components/lightbox.scss +0 -1
  90. package/src/scss/components/modal.scss +3 -7
  91. package/src/scss/components/progress.scss +14 -36
  92. package/src/scss/components/slider.scss +0 -3
  93. package/src/scss/components/slideshow.scss +0 -3
  94. package/src/scss/components/text.scss +16 -32
  95. package/src/scss/mixins-theme.scss +1 -1
  96. package/src/scss/mixins.scss +1 -1
  97. package/src/scss/variables-theme.scss +3 -3
  98. package/src/scss/variables.scss +3 -3
  99. package/tests/align.html +10 -10
  100. package/tests/animation.html +2 -2
  101. package/tests/article.html +2 -2
  102. package/tests/base.html +3 -3
  103. package/tests/card.html +10 -10
  104. package/tests/column.html +3 -3
  105. package/tests/comment.html +9 -9
  106. package/tests/dotnav.html +3 -3
  107. package/tests/image.html +296 -64
  108. package/tests/images/image-type.avif +0 -0
  109. package/tests/images/image-type.jpeg +0 -0
  110. package/tests/images/image-type.webp +0 -0
  111. package/tests/index.html +8 -8
  112. package/tests/lightbox.html +10 -10
  113. package/tests/marker.html +2 -2
  114. package/tests/modal.html +8 -9
  115. package/tests/navbar.html +2 -2
  116. package/tests/overlay.html +7 -7
  117. package/tests/parallax.html +14 -5
  118. package/tests/position.html +12 -12
  119. package/tests/slidenav.html +12 -12
  120. package/tests/slider.html +20 -20
  121. package/tests/sortable.html +1 -1
  122. package/tests/sticky-parallax.html +47 -62
  123. package/tests/svg.html +6 -6
  124. package/tests/table.html +11 -11
  125. package/tests/thumbnav.html +12 -12
  126. package/tests/transition.html +30 -30
  127. package/tests/utility.html +33 -33
  128. package/tests/video.html +1 -1
  129. package/tests/width.html +1 -1
  130. package/tests/images/animated.gif +0 -0
@@ -1,10 +1,9 @@
1
- /*! UIkit 3.11.2-dev.2b60845fb | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.11.2-dev.2f4ac8e16 | 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 embedded content and the bottom of their containers.
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. Add responsiveness.
147
- * 2. Auto-scale the height. Only needed if `height` attribute is present.
148
- * 3. Corrects responsive `max-width` behavior if padding and border are used.
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
- * Hide the overflow in IE.
171
- */
172
- svg:not(:root) {
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
@@ -465,18 +450,6 @@ template {
465
450
  /*
466
451
  * Breakpoints
467
452
  */
468
- .uk-breakpoint-s::before {
469
- content: '640px';
470
- }
471
- .uk-breakpoint-m::before {
472
- content: '960px';
473
- }
474
- .uk-breakpoint-l::before {
475
- content: '1200px';
476
- }
477
- .uk-breakpoint-xl::before {
478
- content: '1600px';
479
- }
480
453
  :root {
481
454
  --uk-breakpoint-s: 640px;
482
455
  --uk-breakpoint-m: 960px;
@@ -1244,28 +1217,29 @@ button.uk-icon:not(:disabled) {
1244
1217
  Component: Form Range
1245
1218
  ========================================================================== */
1246
1219
  /*
1247
- * 1. Normalize and defaults
1248
- * 2. Prevent content overflow if a fixed width is used
1249
- * 3. Take the full width
1250
- * 4. Remove default style
1251
- * 5. Remove white background in Chrome
1252
- * 6. Remove padding in IE11
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.
1253
1227
  */
1254
1228
  .uk-range {
1255
1229
  /* 1 */
1230
+ -webkit-appearance: none;
1231
+ /* 2 */
1256
1232
  box-sizing: border-box;
1233
+ /* 3 */
1257
1234
  margin: 0;
1235
+ /* 4 */
1258
1236
  vertical-align: middle;
1259
- /* 2 */
1237
+ /* 5 */
1260
1238
  max-width: 100%;
1261
- /* 3 */
1239
+ /* 6 */
1262
1240
  width: 100%;
1263
- /* 4 */
1264
- -webkit-appearance: none;
1265
- /* 5 */
1241
+ /* 7 */
1266
1242
  background: transparent;
1267
- /* 6 */
1268
- padding: 0;
1269
1243
  }
1270
1244
  /* Focus */
1271
1245
  .uk-range:focus {
@@ -1274,13 +1248,6 @@ button.uk-icon:not(:disabled) {
1274
1248
  .uk-range::-moz-focus-outer {
1275
1249
  border: none;
1276
1250
  }
1277
- /* IE11 Reset */
1278
- .uk-range::-ms-track {
1279
- height: 15px;
1280
- background: transparent;
1281
- border-color: transparent;
1282
- color: transparent;
1283
- }
1284
1251
  /*
1285
1252
  * Improves consistency of cursor style for clickable elements
1286
1253
  */
@@ -1290,12 +1257,35 @@ button.uk-icon:not(:disabled) {
1290
1257
  .uk-range:not(:disabled)::-moz-range-thumb {
1291
1258
  cursor: pointer;
1292
1259
  }
1293
- .uk-range:not(:disabled)::-ms-thumb {
1294
- cursor: pointer;
1260
+ /*
1261
+ * Track
1262
+ * 1. Center thumb vertically in Webkit
1263
+ * 2. Safari doesn't have a focus state. Using active instead.
1264
+ */
1265
+ /* Webkit */
1266
+ .uk-range::-webkit-slider-runnable-track {
1267
+ height: 3px;
1268
+ background: #ebebeb;
1269
+ /* 1 */
1270
+ display: flex;
1271
+ align-items: center;
1272
+ border-radius: 500px;
1273
+ }
1274
+ .uk-range:focus::-webkit-slider-runnable-track,
1275
+ .uk-range:active::-webkit-slider-runnable-track {
1276
+ background: #dedede;
1277
+ }
1278
+ /* Firefox */
1279
+ .uk-range::-moz-range-track {
1280
+ height: 3px;
1281
+ background: #ebebeb;
1282
+ border-radius: 500px;
1283
+ }
1284
+ .uk-range:focus::-moz-range-track {
1285
+ background: #dedede;
1295
1286
  }
1296
- /* Thumb
1297
- ========================================================================== */
1298
1287
  /*
1288
+ * Thumb
1299
1289
  * 1. Reset
1300
1290
  * 2. Style
1301
1291
  */
@@ -1303,7 +1293,6 @@ button.uk-icon:not(:disabled) {
1303
1293
  .uk-range::-webkit-slider-thumb {
1304
1294
  /* 1 */
1305
1295
  -webkit-appearance: none;
1306
- margin-top: -7px;
1307
1296
  /* 2 */
1308
1297
  height: 15px;
1309
1298
  width: 15px;
@@ -1322,61 +1311,6 @@ button.uk-icon:not(:disabled) {
1322
1311
  background: #fff;
1323
1312
  border: 1px solid #cccccc;
1324
1313
  }
1325
- /* Edge */
1326
- .uk-range::-ms-thumb {
1327
- /* 1 */
1328
- margin-top: 0;
1329
- }
1330
- /* IE11 */
1331
- .uk-range::-ms-thumb {
1332
- /* 1 */
1333
- border: none;
1334
- /* 2 */
1335
- height: 15px;
1336
- width: 15px;
1337
- border-radius: 500px;
1338
- background: #fff;
1339
- border: 1px solid #cccccc;
1340
- }
1341
- /* Edge + IE11 */
1342
- .uk-range::-ms-tooltip {
1343
- display: none;
1344
- }
1345
- /* Track
1346
- ========================================================================== */
1347
- /*
1348
- * 1. Safari doesn't have a focus state. Using active instead.
1349
- */
1350
- /* Webkit */
1351
- .uk-range::-webkit-slider-runnable-track {
1352
- height: 3px;
1353
- background: #ebebeb;
1354
- border-radius: 500px;
1355
- }
1356
- .uk-range:focus::-webkit-slider-runnable-track,
1357
- .uk-range:active::-webkit-slider-runnable-track {
1358
- background: #dedede;
1359
- }
1360
- /* Firefox */
1361
- .uk-range::-moz-range-track {
1362
- height: 3px;
1363
- background: #ebebeb;
1364
- border-radius: 500px;
1365
- }
1366
- .uk-range:focus::-moz-range-track {
1367
- background: #dedede;
1368
- }
1369
- /* Edge */
1370
- .uk-range::-ms-fill-lower,
1371
- .uk-range::-ms-fill-upper {
1372
- height: 3px;
1373
- background: #ebebeb;
1374
- border-radius: 500px;
1375
- }
1376
- .uk-range:focus::-ms-fill-lower,
1377
- .uk-range:focus::-ms-fill-upper {
1378
- background: #dedede;
1379
- }
1380
1314
  /* ========================================================================
1381
1315
  Component: Form
1382
1316
  ========================================================================== */
@@ -1713,7 +1647,6 @@ select.uk-form-width-xsmall {
1713
1647
  display: none !important;
1714
1648
  }
1715
1649
  /* Radio and checkbox
1716
- * Note: Does not work in IE11
1717
1650
  ========================================================================== */
1718
1651
  /*
1719
1652
  * 1. Style
@@ -2229,27 +2162,23 @@ select.uk-form-width-xsmall {
2229
2162
  Component: Progress
2230
2163
  ========================================================================== */
2231
2164
  /*
2232
- * 1. Add the correct vertical alignment in Chrome, Firefox, and Opera.
2233
- * 2. Remove default style
2234
- * 3. Behave like a block element
2235
- * 4. Remove borders in Firefox and Edge
2236
- * 5. Set background color for progress container in Firefox, IE11 and Edge
2237
- * 6. Style
2165
+ * 1. Add the correct vertical alignment in all browsers.
2166
+ * 2. Behave like a block element.
2167
+ * 3. Remove borders in Firefox.
2168
+ * 4. Remove default style in Chrome, Safari and Edge.
2169
+ * 5. Style
2238
2170
  */
2239
2171
  .uk-progress {
2240
2172
  /* 1 */
2241
2173
  vertical-align: baseline;
2242
2174
  /* 2 */
2243
- -webkit-appearance: none;
2244
- -moz-appearance: none;
2245
- /* 3 */
2246
2175
  display: block;
2247
2176
  width: 100%;
2248
- /* 4 */
2177
+ /* 3 */
2249
2178
  border: 0;
2250
- /* 5 */
2179
+ /* 4 */
2251
2180
  background-color: #f8f8f8;
2252
- /* 6 */
2181
+ /* 5 */
2253
2182
  margin-bottom: 20px;
2254
2183
  height: 15px;
2255
2184
  border-radius: 500px;
@@ -2260,27 +2189,15 @@ select.uk-form-width-xsmall {
2260
2189
  margin-top: 20px;
2261
2190
  }
2262
2191
  /*
2263
- * Remove animated circles for indeterminate state in IE11 and Edge
2264
- */
2265
- .uk-progress:indeterminate {
2266
- color: transparent;
2267
- }
2268
- /*
2269
- * Progress container
2270
- * 2. Remove progress bar for indeterminate state in Firefox
2192
+ * Show background color set on `uk-progress` in Chrome, Safari and Edge.
2271
2193
  */
2272
2194
  .uk-progress::-webkit-progress-bar {
2273
- background-color: #f8f8f8;
2274
- border-radius: 500px;
2275
- overflow: hidden;
2276
- }
2277
- /* 2 */
2278
- .uk-progress:indeterminate::-moz-progress-bar {
2279
- width: 0;
2195
+ background-color: transparent;
2280
2196
  }
2281
2197
  /*
2282
- * Progress bar
2283
- * 1. Remove right border in IE11 and Edge
2198
+ * Progress Bar
2199
+ * 1. Transitions don't work on `::-moz-progress-bar` pseudo element in Firefox yet.
2200
+ * https://bugzilla.mozilla.org/show_bug.cgi?id=662351
2284
2201
  */
2285
2202
  .uk-progress::-webkit-progress-value {
2286
2203
  background-color: #1e87f0;
@@ -2288,12 +2205,8 @@ select.uk-form-width-xsmall {
2288
2205
  }
2289
2206
  .uk-progress::-moz-progress-bar {
2290
2207
  background-color: #1e87f0;
2291
- }
2292
- .uk-progress::-ms-fill {
2293
- background-color: #1e87f0;
2294
- transition: width 0.6s ease;
2295
2208
  /* 1 */
2296
- border: 0;
2209
+ transition: width 0.6s ease;
2297
2210
  }
2298
2211
  /* ========================================================================
2299
2212
  Component: Section
@@ -3778,10 +3691,8 @@ select.uk-form-width-xsmall {
3778
3691
  /*
3779
3692
  * 1. Create position context for spinner and close button
3780
3693
  * 2. Dimensions
3781
- * 3. Fix `max-width: 100%` not working in combination with flex and responsive images in IE11
3782
- * `!important` needed to overwrite `uk-width-auto`. See `#modal-media-image` in tests
3783
- * 4. Style
3784
- * 5. Slide-in transition
3694
+ * 3. Style
3695
+ * 4. Slide-in transition
3785
3696
  */
3786
3697
  .uk-modal-dialog {
3787
3698
  /* 1 */
@@ -3791,10 +3702,8 @@ select.uk-form-width-xsmall {
3791
3702
  margin: 0 auto;
3792
3703
  width: 600px;
3793
3704
  /* 3 */
3794
- max-width: calc(100% - 0.01px) !important;
3795
- /* 4 */
3796
3705
  background: #fff;
3797
- /* 5 */
3706
+ /* 4 */
3798
3707
  opacity: 0;
3799
3708
  transform: translateY(-100px);
3800
3709
  transition: 0.3s linear;
@@ -3956,7 +3865,6 @@ select.uk-form-width-xsmall {
3956
3865
  * 2. Take the full width
3957
3866
  * 3. Clip child elements, e.g. for `uk-cover`
3958
3867
  * 4. Optimize animation
3959
- * 5. Disable horizontal panning gestures in IE11 and Edge
3960
3868
  */
3961
3869
  .uk-slideshow-items > * {
3962
3870
  /* 1 */
@@ -3970,8 +3878,6 @@ select.uk-form-width-xsmall {
3970
3878
  overflow: hidden;
3971
3879
  /* 4 */
3972
3880
  will-change: transform, opacity;
3973
- /* 5 */
3974
- touch-action: pan-y;
3975
3881
  }
3976
3882
  /*
3977
3883
  * Hide not active items
@@ -4038,7 +3944,6 @@ select.uk-form-width-xsmall {
4038
3944
  * 1. Let items take content dimensions (0 0 auto)
4039
3945
  * `max-width` needed to keep image responsiveness and prevent content overflow
4040
3946
  * 3. Create position context
4041
- * 4. Disable horizontal panning gestures in IE11 and Edge
4042
3947
  */
4043
3948
  .uk-slider-items > * {
4044
3949
  /* 1 */
@@ -4046,8 +3951,6 @@ select.uk-form-width-xsmall {
4046
3951
  max-width: 100%;
4047
3952
  /* 3 */
4048
3953
  position: relative;
4049
- /* 4 */
4050
- touch-action: pan-y;
4051
3954
  }
4052
3955
  /* ========================================================================
4053
3956
  Component: Sticky
@@ -4350,9 +4253,6 @@ select.uk-form-width-xsmall {
4350
4253
  /*
4351
4254
  * Pass fill character to JS
4352
4255
  */
4353
- .uk-leader-fill-content::before {
4354
- content: '.';
4355
- }
4356
4256
  :root {
4357
4257
  --uk-leader-fill-content: '.';
4358
4258
  }
@@ -6222,7 +6122,6 @@ ul.uk-nav-sub {
6222
6122
  * 4. Optimize animation
6223
6123
  * 5. Responsiveness
6224
6124
  * Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
6225
- * Using `vh` and `vw` to make responsive image work in IE11
6226
6125
  */
6227
6126
  .uk-lightbox-items > * {
6228
6127
  /* 1 */
@@ -7264,24 +7163,20 @@ ul.uk-nav-sub {
7264
7163
  /* Background modifier
7265
7164
  ========================================================================== */
7266
7165
  /*
7267
- * 1. The background clips to the foreground text. Works in Chrome, Firefox, Safari, Edge and Opera
7268
- * Default color is set to transparent
7269
- * 2. Container fits the text
7270
- * 3. Fallback color for IE11
7166
+ * 1. The background clips to the foreground text. Works in all browsers.
7167
+ * 2. Default color is set to transparent.
7168
+ * 3. Container fits the text
7169
+ * 4. Style
7271
7170
  */
7272
7171
  .uk-text-background {
7273
7172
  /* 1 */
7274
7173
  -webkit-background-clip: text;
7275
7174
  /* 2 */
7276
- display: inline-block;
7175
+ color: transparent !important;
7277
7176
  /* 3 */
7278
- color: #1e87f0 !important;
7279
- }
7280
- @supports (-webkit-background-clip: text) {
7281
- .uk-text-background {
7282
- background-color: #1e87f0;
7283
- color: transparent !important;
7284
- }
7177
+ display: inline-block;
7178
+ /* 4 */
7179
+ background-color: #1e87f0;
7285
7180
  }
7286
7181
  /* Alignment modifiers
7287
7182
  ========================================================================== */
@@ -7387,22 +7282,17 @@ td.uk-text-truncate {
7387
7282
  max-width: 0;
7388
7283
  }
7389
7284
  /*
7390
- * 1. Wrap long words onto the next line and break them if they are too long to fit
7391
- * 2. Legacy `word-wrap` as fallback for `overflow-wrap`
7392
- * 3. Fix `overflow-wrap` which doesn't work with table cells in Chrome, Opera, IE11 and Edge
7393
- * Must use `break-all` to support IE11 and Edge
7394
- * Note: Not using `hyphens: auto;` because it hyphenates text even if not needed
7285
+ * Wrap long words onto the next line and break them if they are too long to fit.
7286
+ * 1. Make it work with table cells in all browsers.
7287
+ * Note: Not using `hyphens: auto` because it hyphenates text even if not needed.
7395
7288
  */
7396
7289
  .uk-text-break {
7397
- /* 1 */
7398
7290
  overflow-wrap: break-word;
7399
- /* 2 */
7400
- word-wrap: break-word;
7401
7291
  }
7402
- /* 3 */
7292
+ /* 1 */
7403
7293
  th.uk-text-break,
7404
7294
  td.uk-text-break {
7405
- word-break: break-all;
7295
+ word-break: break-word;
7406
7296
  }
7407
7297
  /* ========================================================================
7408
7298
  Component: Column