uikit 3.16.27 → 3.17.1-dev.7c0766a6f

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 (119) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/build/less.js +5 -4
  3. package/build/util.js +7 -9
  4. package/dist/css/uikit-core-rtl.css +53 -18
  5. package/dist/css/uikit-core-rtl.min.css +1 -1
  6. package/dist/css/uikit-core.css +53 -18
  7. package/dist/css/uikit-core.min.css +1 -1
  8. package/dist/css/uikit-rtl.css +56 -17
  9. package/dist/css/uikit-rtl.min.css +1 -1
  10. package/dist/css/uikit.css +56 -17
  11. package/dist/css/uikit.min.css +1 -1
  12. package/dist/js/components/countdown.js +1 -1
  13. package/dist/js/components/countdown.min.js +1 -1
  14. package/dist/js/components/filter.js +24 -43
  15. package/dist/js/components/filter.min.js +1 -1
  16. package/dist/js/components/lightbox-panel.js +2 -3
  17. package/dist/js/components/lightbox-panel.min.js +1 -1
  18. package/dist/js/components/lightbox.js +2 -3
  19. package/dist/js/components/lightbox.min.js +1 -1
  20. package/dist/js/components/notification.js +2 -2
  21. package/dist/js/components/notification.min.js +1 -1
  22. package/dist/js/components/parallax.js +7 -17
  23. package/dist/js/components/parallax.min.js +1 -1
  24. package/dist/js/components/slider-parallax.js +6 -13
  25. package/dist/js/components/slider-parallax.min.js +1 -1
  26. package/dist/js/components/slider.js +2 -2
  27. package/dist/js/components/slider.min.js +1 -1
  28. package/dist/js/components/slideshow-parallax.js +6 -13
  29. package/dist/js/components/slideshow-parallax.min.js +1 -1
  30. package/dist/js/components/slideshow.js +19 -4
  31. package/dist/js/components/slideshow.min.js +1 -1
  32. package/dist/js/components/sortable.js +24 -43
  33. package/dist/js/components/sortable.min.js +1 -1
  34. package/dist/js/components/tooltip.js +1 -2
  35. package/dist/js/components/tooltip.min.js +1 -1
  36. package/dist/js/components/upload.js +1 -1
  37. package/dist/js/components/upload.min.js +1 -1
  38. package/dist/js/uikit-core.js +455 -185
  39. package/dist/js/uikit-core.min.js +1 -1
  40. package/dist/js/uikit-icons.js +1 -1
  41. package/dist/js/uikit-icons.min.js +1 -1
  42. package/dist/js/uikit.js +483 -240
  43. package/dist/js/uikit.min.js +1 -9502
  44. package/package.json +1 -1
  45. package/src/js/api/boot.js +2 -2
  46. package/src/js/api/computed.js +1 -1
  47. package/src/js/api/observables.js +1 -4
  48. package/src/js/components/notification.js +1 -1
  49. package/src/js/components/slideshow.js +19 -2
  50. package/src/js/core/cover.js +30 -1
  51. package/src/js/core/drop.js +15 -9
  52. package/src/js/core/dropnav.js +16 -2
  53. package/src/js/core/grid.js +119 -64
  54. package/src/js/core/height-viewport.js +4 -1
  55. package/src/js/core/margin.js +23 -39
  56. package/src/js/core/navbar.js +219 -1
  57. package/src/js/core/scrollspy-nav.js +13 -4
  58. package/src/js/core/scrollspy.js +1 -1
  59. package/src/js/core/sticky.js +10 -11
  60. package/src/js/mixin/internal/animate-fade.js +1 -11
  61. package/src/js/mixin/internal/slideshow-animations.js +1 -1
  62. package/src/js/mixin/slider-reactive.js +1 -1
  63. package/src/js/mixin/togglable.js +0 -2
  64. package/src/js/util/animation.js +19 -13
  65. package/src/js/util/class.js +30 -26
  66. package/src/js/util/dom.js +3 -8
  67. package/src/js/util/filter.js +2 -6
  68. package/src/js/util/viewport.js +26 -4
  69. package/src/less/components/base.less +6 -3
  70. package/src/less/components/form.less +3 -0
  71. package/src/less/components/heading.less +18 -0
  72. package/src/less/components/navbar.less +6 -12
  73. package/src/less/components/pagination.less +13 -6
  74. package/src/less/components/position.less +1 -0
  75. package/src/less/components/section.less +6 -0
  76. package/src/less/theme/heading.less +4 -0
  77. package/src/less/theme/navbar.less +5 -0
  78. package/src/scss/components/base.scss +4 -2
  79. package/src/scss/components/form.scss +3 -0
  80. package/src/scss/components/heading.scss +13 -0
  81. package/src/scss/components/navbar.scss +5 -12
  82. package/src/scss/components/pagination.scss +13 -6
  83. package/src/scss/components/position.scss +1 -0
  84. package/src/scss/components/section.scss +4 -0
  85. package/src/scss/mixins-theme.scss +13 -1
  86. package/src/scss/mixins.scss +8 -1
  87. package/src/scss/theme/heading.scss +4 -0
  88. package/src/scss/variables-theme.scss +7 -0
  89. package/src/scss/variables.scss +7 -0
  90. package/tests/cover.html +2 -2
  91. package/tests/drop.html +13 -7
  92. package/tests/dropnav.html +22 -10
  93. package/tests/filter.html +5 -5
  94. package/tests/form.html +1 -1
  95. package/tests/grid-masonry.html +49 -73
  96. package/tests/grid-parallax.html +82 -40
  97. package/tests/grid.html +21 -3
  98. package/tests/heading.html +33 -4
  99. package/tests/height-viewport.html +3 -3
  100. package/tests/height.html +2 -2
  101. package/tests/icon.html +1 -1
  102. package/tests/image.html +6 -6
  103. package/tests/leader.html +3 -3
  104. package/tests/nav.html +1 -1
  105. package/tests/navbar.html +28 -10
  106. package/tests/notification.html +1 -1
  107. package/tests/offcanvas.html +2 -2
  108. package/tests/parallax.html +1 -1
  109. package/tests/scrollspy.html +3 -3
  110. package/tests/sortable.html +3 -3
  111. package/tests/sticky-navbar.html +233 -14
  112. package/tests/sticky.html +8 -8
  113. package/tests/svg.html +1 -1
  114. package/tests/tab.html +1 -1
  115. package/tests/toggle.html +2 -2
  116. package/tests/tooltip.html +2 -2
  117. package/tests/upload.html +16 -16
  118. package/tests/utility.html +2 -2
  119. package/tests/video.html +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # Changelog
2
2
 
3
+ ## WIP
4
+
5
+ ### Fixed
6
+
7
+ - Fix icon alignment in Pagination component
8
+ - Fix Sticky component overflow scrolling position on resize
9
+
10
+ ## 3.17.0 (September 28, 2023)
11
+
12
+ ### Added
13
+
14
+ - Add modes `pack` (default) and `next` to Grid component's `masonry` option
15
+ - Add `parallax-start`, `parallax-end`, `parallax-justify` option to Grid component
16
+ - Add `close-on-scroll` option to Drop and Dropdown component
17
+ - Add transparent Navbar gets its color modifier from underlying section
18
+ - Add support for `<td>` and `<tr>` elements to `fragment()` function
19
+ - Add 3XL size modifier to Heading component
20
+ - Add support for a CSS Selector in `offsetTop` option in Height Viewport component
21
+
22
+ ### Change
23
+
24
+ - Scroll component scrolls beneath elements covering its target
25
+ - The `closest()` function no longer accepts an array of elements
26
+ - Reset fieldset min-width
27
+
3
28
  ## 3.16.27 (September 28, 2023)
4
29
 
5
30
  ### Fixed
package/build/less.js CHANGED
@@ -1,7 +1,8 @@
1
+ import fs from 'fs-extra';
1
2
  import { glob } from 'glob';
2
3
  import path from 'path';
3
4
  import rtlcss from 'rtlcss';
4
- import { args, banner, minify, pathExists, read, readJson, renderLess, write } from './util.js';
5
+ import { args, banner, minify, read, renderLess, write } from './util.js';
5
6
 
6
7
  const { rtl } = args;
7
8
  const develop = args.develop || args.debug || args.d || args.nominify;
@@ -10,7 +11,7 @@ const sources = [
10
11
  { src: 'src/less/uikit.theme.less', dist: `dist/css/uikit${rtl ? '-rtl' : ''}.css` },
11
12
  ];
12
13
 
13
- const themes = (await pathExists('themes.json')) ? await readJson('themes.json') : {};
14
+ const themes = (await fs.pathExists('themes.json')) ? await fs.readJson('themes.json') : {};
14
15
 
15
16
  for (const src of await glob('custom/*.less')) {
16
17
  const theme = path.basename(src, '.less');
@@ -18,7 +19,7 @@ for (const src of await glob('custom/*.less')) {
18
19
 
19
20
  themes[theme] = { css: `../${dist}` };
20
21
 
21
- if (await pathExists(`dist/js/uikit-icons-${theme}.js`)) {
22
+ if (await fs.pathExists(`dist/js/uikit-icons-${theme}.js`)) {
22
23
  themes[theme].icons = `../dist/js/uikit-icons-${theme}.js`;
23
24
  }
24
25
 
@@ -27,7 +28,7 @@ for (const src of await glob('custom/*.less')) {
27
28
 
28
29
  await Promise.all(sources.map(({ src, dist }) => compile(src, dist, develop, rtl)));
29
30
 
30
- if (!rtl && (Object.keys(themes).length || !(await pathExists('themes.json')))) {
31
+ if (!rtl && (Object.keys(themes).length || !(await fs.pathExists('themes.json')))) {
31
32
  await write('themes.json', JSON.stringify(themes));
32
33
  }
33
34
 
package/build/util.js CHANGED
@@ -14,8 +14,6 @@ import svgo from 'svgo';
14
14
 
15
15
  const limit = pLimit(Number(process.env.cpus || 2));
16
16
 
17
- export const { pathExists, readJson } = fs;
18
-
19
17
  export const banner = `/*! UIkit ${await getVersion()} | https://www.getuikit.com | (c) 2014 - ${new Date().getFullYear()} YOOtheme | MIT License */\n`;
20
18
  export const validClassName = /[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/;
21
19
 
@@ -46,8 +44,8 @@ export async function write(dest, data) {
46
44
  }
47
45
 
48
46
  export async function logFile(file) {
49
- const data = await read(file);
50
- console.log(`${cyan(file)} ${getSize(data)}`);
47
+ const { size } = await fs.stat(file);
48
+ console.log(`${cyan(file)} ${formatSize(size)}`);
51
49
  }
52
50
 
53
51
  export async function minify(file) {
@@ -107,8 +105,8 @@ export async function compile(file, dest, { external, globals, name, aliases, re
107
105
 
108
106
  !debug &&
109
107
  modify({
110
- find: /(>)\n\s+|\n\s+(<)/,
111
- replace: (m, m1, m2) => `${m1 || ''} ${m2 || ''}`,
108
+ find: /(?<=>)\n\s+|\n\s+(?=<)/,
109
+ replace: ' ',
112
110
  }),
113
111
  ],
114
112
  };
@@ -198,7 +196,7 @@ export function ucfirst(str) {
198
196
  }
199
197
 
200
198
  export async function getVersion() {
201
- return (await readJson('package.json')).version;
199
+ return (await fs.readJson('package.json')).version;
202
200
  }
203
201
 
204
202
  export async function replaceInFile(file, fn) {
@@ -209,8 +207,8 @@ function cyan(str) {
209
207
  return `\x1b[1m\x1b[36m${str}\x1b[39m\x1b[22m`;
210
208
  }
211
209
 
212
- function getSize(data) {
213
- return `${(data.length / 1024).toFixed(2)}kb`;
210
+ function formatSize(bytes) {
211
+ return `${(bytes / 1024).toFixed(2)}kb`;
214
212
  }
215
213
 
216
214
  async function optimizeSvg(svg) {
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.16.27 | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */
1
+ /*! UIkit 3.17.1-dev.7c0766a6f | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -217,7 +217,8 @@ h6,
217
217
  .uk-heading-medium,
218
218
  .uk-heading-large,
219
219
  .uk-heading-xlarge,
220
- .uk-heading-2xlarge {
220
+ .uk-heading-2xlarge,
221
+ .uk-heading-3xlarge {
221
222
  margin: 0 0 20px 0;
222
223
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
223
224
  font-weight: normal;
@@ -241,7 +242,8 @@ h6,
241
242
  * + .uk-heading-medium,
242
243
  * + .uk-heading-large,
243
244
  * + .uk-heading-xlarge,
244
- * + .uk-heading-2xlarge {
245
+ * + .uk-heading-2xlarge,
246
+ * + .uk-heading-3xlarge {
245
247
  margin-top: 40px;
246
248
  }
247
249
  /*
@@ -506,6 +508,10 @@ a.uk-link-reset,
506
508
  font-size: 6rem;
507
509
  line-height: 1;
508
510
  }
511
+ .uk-heading-3xlarge {
512
+ font-size: 8rem;
513
+ line-height: 1;
514
+ }
509
515
  /* Tablet Landscape and bigger */
510
516
  @media (min-width: 960px) {
511
517
  .uk-heading-small {
@@ -523,6 +529,9 @@ a.uk-link-reset,
523
529
  .uk-heading-2xlarge {
524
530
  font-size: 8rem;
525
531
  }
532
+ .uk-heading-3xlarge {
533
+ font-size: 11rem;
534
+ }
526
535
  }
527
536
  /* Laptop and bigger */
528
537
  @media (min-width: 1200px) {
@@ -538,6 +547,9 @@ a.uk-link-reset,
538
547
  .uk-heading-2xlarge {
539
548
  font-size: 11rem;
540
549
  }
550
+ .uk-heading-3xlarge {
551
+ font-size: 15rem;
552
+ }
541
553
  }
542
554
  /* Primary
543
555
  Deprecated: Use `uk-heading-medium` instead
@@ -1363,11 +1375,14 @@ button.uk-icon:not(:disabled) {
1363
1375
  }
1364
1376
  /*
1365
1377
  * Define consistent border, margin, and padding.
1378
+ * 1. Reset `min-width`
1366
1379
  */
1367
1380
  .uk-fieldset {
1368
1381
  border: none;
1369
1382
  margin: 0;
1370
1383
  padding: 0;
1384
+ /* 1 */
1385
+ min-width: 0;
1371
1386
  }
1372
1387
  /* Input, select and textarea
1373
1388
  * Allowed: `text`, `password`, `datetime-local`, `date`, `month`,
@@ -2169,24 +2184,28 @@ select.uk-form-width-xsmall {
2169
2184
  */
2170
2185
  .uk-section-default {
2171
2186
  background: #fff;
2187
+ --uk-navbar-color: dark;
2172
2188
  }
2173
2189
  /*
2174
2190
  * Muted
2175
2191
  */
2176
2192
  .uk-section-muted {
2177
2193
  background: #f8f8f8;
2194
+ --uk-navbar-color: dark;
2178
2195
  }
2179
2196
  /*
2180
2197
  * Primary
2181
2198
  */
2182
2199
  .uk-section-primary {
2183
2200
  background: #1e87f0;
2201
+ --uk-navbar-color: light;
2184
2202
  }
2185
2203
  /*
2186
2204
  * Secondary
2187
2205
  */
2188
2206
  .uk-section-secondary {
2189
2207
  background: #222;
2208
+ --uk-navbar-color: light;
2190
2209
  }
2191
2210
  /* Overlap modifier
2192
2211
  ========================================================================== */
@@ -4879,11 +4898,14 @@ ul.uk-nav-sub {
4879
4898
  ========================================================================== */
4880
4899
  /*
4881
4900
  * 1. Create position context to center navbar group
4901
+ * 2. Pass dropbar behind color to JS
4882
4902
  */
4883
4903
  .uk-navbar {
4884
4904
  display: flex;
4885
4905
  /* 1 */
4886
4906
  position: relative;
4907
+ /* 2 */
4908
+ --uk-navbar-dropbar-behind-color: dark;
4887
4909
  }
4888
4910
  /* Container
4889
4911
  ========================================================================== */
@@ -5222,14 +5244,6 @@ ul.uk-nav-sub {
5222
5244
  /*
5223
5245
  * Adopts `uk-dropnav-dropbar`
5224
5246
  */
5225
- /*
5226
- * Create navbar placeholder space if dropbar is behind navbar
5227
- */
5228
- .uk-navbar-dropbar-behind::before {
5229
- content: "";
5230
- display: block;
5231
- height: 80px;
5232
- }
5233
5247
  /* ========================================================================
5234
5248
  Component: Subnav
5235
5249
  ========================================================================== */
@@ -5402,16 +5416,19 @@ ul.uk-nav-sub {
5402
5416
  ========================================================================== */
5403
5417
  /*
5404
5418
  * 1. Allow items to wrap into the next line
5405
- * 2. Gutter
5406
- * 3. Reset list
5419
+ * 2. Center items vertically if they have a different height
5420
+ * 3. Gutter
5421
+ * 4. Reset list
5407
5422
  */
5408
5423
  .uk-pagination {
5409
5424
  display: flex;
5410
5425
  /* 1 */
5411
5426
  flex-wrap: wrap;
5412
5427
  /* 2 */
5413
- margin-right: 0;
5428
+ align-items: center;
5414
5429
  /* 3 */
5430
+ margin-right: 0;
5431
+ /* 4 */
5415
5432
  padding: 0;
5416
5433
  list-style: none;
5417
5434
  }
@@ -5431,13 +5448,17 @@ ul.uk-nav-sub {
5431
5448
  /* Items
5432
5449
  ========================================================================== */
5433
5450
  /*
5434
- * 1. Prevent gap if child element is `inline-block`, e.g. an icon
5435
- * 2. Style
5451
+ * 1. Center content vertically, e.g. an icon
5452
+ * 2. Imitate white space gap when using flexbox
5453
+ * 3. Style
5436
5454
  */
5437
5455
  .uk-pagination > * > * {
5438
5456
  /* 1 */
5439
- display: block;
5457
+ display: flex;
5458
+ align-items: center;
5440
5459
  /* 2 */
5460
+ column-gap: 0.25em;
5461
+ /* 3 */
5441
5462
  padding: 5px 10px;
5442
5463
  color: #999;
5443
5464
  }
@@ -8798,6 +8819,9 @@ iframe[data-uk-cover] {
8798
8819
  .uk-position-z-index-negative {
8799
8820
  z-index: -1;
8800
8821
  }
8822
+ .uk-position-z-index-high {
8823
+ z-index: 990;
8824
+ }
8801
8825
  /* ========================================================================
8802
8826
  Component: Transition
8803
8827
  ========================================================================== */
@@ -9199,6 +9223,7 @@ iframe[data-uk-cover] {
9199
9223
  .uk-light .uk-heading-large,
9200
9224
  .uk-light .uk-heading-xlarge,
9201
9225
  .uk-light .uk-heading-2xlarge,
9226
+ .uk-light .uk-heading-3xlarge,
9202
9227
  .uk-section-primary:not(.uk-preserve-color) h1,
9203
9228
  .uk-section-primary:not(.uk-preserve-color) .uk-h1,
9204
9229
  .uk-section-primary:not(.uk-preserve-color) h2,
@@ -9216,6 +9241,7 @@ iframe[data-uk-cover] {
9216
9241
  .uk-section-primary:not(.uk-preserve-color) .uk-heading-large,
9217
9242
  .uk-section-primary:not(.uk-preserve-color) .uk-heading-xlarge,
9218
9243
  .uk-section-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
9244
+ .uk-section-primary:not(.uk-preserve-color) .uk-heading-3xlarge,
9219
9245
  .uk-section-secondary:not(.uk-preserve-color) h1,
9220
9246
  .uk-section-secondary:not(.uk-preserve-color) .uk-h1,
9221
9247
  .uk-section-secondary:not(.uk-preserve-color) h2,
@@ -9233,6 +9259,7 @@ iframe[data-uk-cover] {
9233
9259
  .uk-section-secondary:not(.uk-preserve-color) .uk-heading-large,
9234
9260
  .uk-section-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
9235
9261
  .uk-section-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
9262
+ .uk-section-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,
9236
9263
  .uk-tile-primary:not(.uk-preserve-color) h1,
9237
9264
  .uk-tile-primary:not(.uk-preserve-color) .uk-h1,
9238
9265
  .uk-tile-primary:not(.uk-preserve-color) h2,
@@ -9250,6 +9277,7 @@ iframe[data-uk-cover] {
9250
9277
  .uk-tile-primary:not(.uk-preserve-color) .uk-heading-large,
9251
9278
  .uk-tile-primary:not(.uk-preserve-color) .uk-heading-xlarge,
9252
9279
  .uk-tile-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
9280
+ .uk-tile-primary:not(.uk-preserve-color) .uk-heading-3xlarge,
9253
9281
  .uk-tile-secondary:not(.uk-preserve-color) h1,
9254
9282
  .uk-tile-secondary:not(.uk-preserve-color) .uk-h1,
9255
9283
  .uk-tile-secondary:not(.uk-preserve-color) h2,
@@ -9267,6 +9295,7 @@ iframe[data-uk-cover] {
9267
9295
  .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-large,
9268
9296
  .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
9269
9297
  .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
9298
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,
9270
9299
  .uk-card-primary.uk-card-body h1,
9271
9300
  .uk-card-primary.uk-card-body .uk-h1,
9272
9301
  .uk-card-primary.uk-card-body h2,
@@ -9284,6 +9313,7 @@ iframe[data-uk-cover] {
9284
9313
  .uk-card-primary.uk-card-body .uk-heading-large,
9285
9314
  .uk-card-primary.uk-card-body .uk-heading-xlarge,
9286
9315
  .uk-card-primary.uk-card-body .uk-heading-2xlarge,
9316
+ .uk-card-primary.uk-card-body .uk-heading-3xlarge,
9287
9317
  .uk-card-primary > :not([class*='uk-card-media']) h1,
9288
9318
  .uk-card-primary > :not([class*='uk-card-media']) .uk-h1,
9289
9319
  .uk-card-primary > :not([class*='uk-card-media']) h2,
@@ -9301,6 +9331,7 @@ iframe[data-uk-cover] {
9301
9331
  .uk-card-primary > :not([class*='uk-card-media']) .uk-heading-large,
9302
9332
  .uk-card-primary > :not([class*='uk-card-media']) .uk-heading-xlarge,
9303
9333
  .uk-card-primary > :not([class*='uk-card-media']) .uk-heading-2xlarge,
9334
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-heading-3xlarge,
9304
9335
  .uk-card-secondary.uk-card-body h1,
9305
9336
  .uk-card-secondary.uk-card-body .uk-h1,
9306
9337
  .uk-card-secondary.uk-card-body h2,
@@ -9318,6 +9349,7 @@ iframe[data-uk-cover] {
9318
9349
  .uk-card-secondary.uk-card-body .uk-heading-large,
9319
9350
  .uk-card-secondary.uk-card-body .uk-heading-xlarge,
9320
9351
  .uk-card-secondary.uk-card-body .uk-heading-2xlarge,
9352
+ .uk-card-secondary.uk-card-body .uk-heading-3xlarge,
9321
9353
  .uk-card-secondary > :not([class*='uk-card-media']) h1,
9322
9354
  .uk-card-secondary > :not([class*='uk-card-media']) .uk-h1,
9323
9355
  .uk-card-secondary > :not([class*='uk-card-media']) h2,
@@ -9335,6 +9367,7 @@ iframe[data-uk-cover] {
9335
9367
  .uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-large,
9336
9368
  .uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-xlarge,
9337
9369
  .uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-2xlarge,
9370
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-3xlarge,
9338
9371
  .uk-overlay-primary h1,
9339
9372
  .uk-overlay-primary .uk-h1,
9340
9373
  .uk-overlay-primary h2,
@@ -9352,6 +9385,7 @@ iframe[data-uk-cover] {
9352
9385
  .uk-overlay-primary .uk-heading-large,
9353
9386
  .uk-overlay-primary .uk-heading-xlarge,
9354
9387
  .uk-overlay-primary .uk-heading-2xlarge,
9388
+ .uk-overlay-primary .uk-heading-3xlarge,
9355
9389
  .uk-offcanvas-bar h1,
9356
9390
  .uk-offcanvas-bar .uk-h1,
9357
9391
  .uk-offcanvas-bar h2,
@@ -9368,7 +9402,8 @@ iframe[data-uk-cover] {
9368
9402
  .uk-offcanvas-bar .uk-heading-medium,
9369
9403
  .uk-offcanvas-bar .uk-heading-large,
9370
9404
  .uk-offcanvas-bar .uk-heading-xlarge,
9371
- .uk-offcanvas-bar .uk-heading-2xlarge {
9405
+ .uk-offcanvas-bar .uk-heading-2xlarge,
9406
+ .uk-offcanvas-bar .uk-heading-3xlarge {
9372
9407
  color: #fff;
9373
9408
  }
9374
9409
  .uk-light hr,