uikit 3.14.4-dev.d014a9a57 → 3.14.4-dev.d2929b5b7

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 (124) hide show
  1. package/CHANGELOG.md +34 -17
  2. package/build/util.js +1 -0
  3. package/dist/css/uikit-core-rtl.css +317 -76
  4. package/dist/css/uikit-core-rtl.min.css +1 -1
  5. package/dist/css/uikit-core.css +317 -76
  6. package/dist/css/uikit-core.min.css +1 -1
  7. package/dist/css/uikit-rtl.css +337 -80
  8. package/dist/css/uikit-rtl.min.css +1 -1
  9. package/dist/css/uikit.css +337 -80
  10. package/dist/css/uikit.min.css +1 -1
  11. package/dist/js/components/countdown.js +1 -1
  12. package/dist/js/components/countdown.min.js +1 -1
  13. package/dist/js/components/filter.js +1 -1
  14. package/dist/js/components/filter.min.js +1 -1
  15. package/dist/js/components/lightbox-panel.js +77 -120
  16. package/dist/js/components/lightbox-panel.min.js +1 -1
  17. package/dist/js/components/lightbox.js +77 -120
  18. package/dist/js/components/lightbox.min.js +1 -1
  19. package/dist/js/components/notification.js +1 -1
  20. package/dist/js/components/notification.min.js +1 -1
  21. package/dist/js/components/parallax.js +4 -5
  22. package/dist/js/components/parallax.min.js +1 -1
  23. package/dist/js/components/slider-parallax.js +4 -5
  24. package/dist/js/components/slider-parallax.min.js +1 -1
  25. package/dist/js/components/slider.js +1 -1
  26. package/dist/js/components/slider.min.js +1 -1
  27. package/dist/js/components/slideshow-parallax.js +4 -5
  28. package/dist/js/components/slideshow-parallax.min.js +1 -1
  29. package/dist/js/components/slideshow.js +1 -1
  30. package/dist/js/components/slideshow.min.js +1 -1
  31. package/dist/js/components/sortable.js +1 -1
  32. package/dist/js/components/sortable.min.js +1 -1
  33. package/dist/js/components/tooltip.js +88 -134
  34. package/dist/js/components/tooltip.min.js +1 -1
  35. package/dist/js/components/upload.js +1 -1
  36. package/dist/js/components/upload.min.js +1 -1
  37. package/dist/js/uikit-core.js +357 -367
  38. package/dist/js/uikit-core.min.js +14 -1
  39. package/dist/js/uikit-icons.js +1 -1
  40. package/dist/js/uikit-icons.min.js +1 -1
  41. package/dist/js/uikit.js +357 -367
  42. package/dist/js/uikit.min.js +14 -1
  43. package/package.json +1 -1
  44. package/src/images/components/navbar-toggle-icon.svg +22 -3
  45. package/src/js/api/state.js +1 -1
  46. package/src/js/core/accordion.js +9 -17
  47. package/src/js/core/alert.js +35 -14
  48. package/src/js/core/drop.js +90 -61
  49. package/src/js/core/height-viewport.js +4 -2
  50. package/src/js/core/index.js +1 -1
  51. package/src/js/core/leader.js +2 -2
  52. package/src/js/core/navbar.js +28 -45
  53. package/src/js/core/scroll.js +37 -10
  54. package/src/js/mixin/media.js +4 -5
  55. package/src/js/mixin/modal.js +9 -6
  56. package/src/js/mixin/position.js +21 -24
  57. package/src/js/mixin/togglable.js +80 -124
  58. package/src/js/util/animation.js +4 -3
  59. package/src/js/util/filter.js +3 -7
  60. package/src/js/util/position.js +42 -47
  61. package/src/js/util/style.js +4 -13
  62. package/src/js/util/viewport.js +3 -5
  63. package/src/less/components/_import.less +1 -0
  64. package/src/less/components/drop.less +1 -18
  65. package/src/less/components/dropbar.less +115 -0
  66. package/src/less/components/dropdown.less +11 -19
  67. package/src/less/components/leader.less +1 -1
  68. package/src/less/components/nav.less +212 -23
  69. package/src/less/components/navbar.less +16 -52
  70. package/src/less/components/utility.less +10 -2
  71. package/src/less/theme/_import.less +1 -0
  72. package/src/less/theme/dropbar.less +44 -0
  73. package/src/less/theme/dropdown.less +0 -11
  74. package/src/less/theme/nav.less +46 -0
  75. package/src/less/theme/navbar.less +1 -5
  76. package/src/scss/components/_import.scss +1 -0
  77. package/src/scss/components/drop.scss +1 -18
  78. package/src/scss/components/dropbar.scss +115 -0
  79. package/src/scss/components/dropdown.scss +11 -19
  80. package/src/scss/components/leader.scss +1 -1
  81. package/src/scss/components/nav.scss +161 -22
  82. package/src/scss/components/navbar.scss +16 -52
  83. package/src/scss/components/utility.scss +8 -1
  84. package/src/scss/mixins-theme.scss +80 -8
  85. package/src/scss/mixins.scss +77 -4
  86. package/src/scss/theme/_import.scss +1 -0
  87. package/src/scss/theme/dropbar.scss +44 -0
  88. package/src/scss/theme/dropdown.scss +0 -8
  89. package/src/scss/theme/nav.scss +44 -0
  90. package/src/scss/theme/navbar.scss +1 -5
  91. package/src/scss/variables-theme.scss +51 -10
  92. package/src/scss/variables.scss +40 -8
  93. package/tests/accordion.html +2 -2
  94. package/tests/alert.html +2 -2
  95. package/tests/countdown.html +1 -1
  96. package/tests/drop.html +444 -412
  97. package/tests/dropbar.html +456 -0
  98. package/tests/dropdown.html +8 -470
  99. package/tests/filter.html +9 -12
  100. package/tests/form.html +1 -1
  101. package/tests/index.html +124 -105
  102. package/tests/lightbox.html +5 -5
  103. package/tests/list.html +8 -8
  104. package/tests/modal.html +13 -13
  105. package/tests/nav.html +121 -12
  106. package/tests/navbar.html +76 -218
  107. package/tests/offcanvas.html +10 -14
  108. package/tests/parallax.html +1 -1
  109. package/tests/position.html +13 -24
  110. package/tests/progress.html +9 -9
  111. package/tests/scroll.html +7 -10
  112. package/tests/search.html +5 -5
  113. package/tests/slider.html +6 -5
  114. package/tests/slideshow.html +8 -8
  115. package/tests/sortable.html +6 -8
  116. package/tests/sticky-navbar.html +6 -6
  117. package/tests/sticky.html +8 -8
  118. package/tests/switcher.html +1 -1
  119. package/tests/tab.html +1 -1
  120. package/tests/table.html +7 -7
  121. package/tests/toggle.html +2 -2
  122. package/tests/tooltip.html +1 -1
  123. package/tests/upload.html +11 -11
  124. package/tests/utility.html +19 -0
package/CHANGELOG.md CHANGED
@@ -4,27 +4,43 @@
4
4
 
5
5
  ### Added
6
6
 
7
+ - Add Dropbar component
8
+ - Add `target`, `target-x`, `target-y` and `inset` options to Drop component
9
+ - Add `stretch` and `bg-scroll` options to Drop component
10
+ - Add `shift` and `display` options to Drop component
11
+ - Add `slide` and `reveal` animations to Drop component
12
+ - Add `animate-out` option to Drop component
13
+ - Add open and close animation to toggle icon in Navbar component
7
14
  - Add dropdown large modifier to Dropdown and Navbar component
8
- - Add gap variable to navbar items in Navbar component
9
- - Add color mode variable to navbar dropdown in Navbar component
15
+ - Add gap variables to navbar items in Navbar component
16
+ - Add color mode variables for dropdowns in Dropdown and Navbar component
10
17
  - Add navbar parent icon to Navbar component
18
+ - Add secondary style modifier to Nav component
11
19
  - Add font size variables to nav and sublist in Nav component
12
- - Add small breakpoint padding variables to Modal component- Add `animate-out` option to Drop component
13
- - Add alignment `stretch` to Drop component
14
- - Add Height Viewport uses scroll parent as viewport
20
+ - Add padding variables for small breakpoint to Modal component
15
21
  - Add zero z-index utility class to Position component
16
- - Add option `bg-scroll` to Drop component
22
+ - Add support for `picture` element to logo in Utility component
23
+ - Add box sizing classes to Utility component
24
+ - Support scroll parent as viewport in Height Viewport component
17
25
 
18
26
  ### Changed
19
27
 
20
- - Rename `@offcanvas-bar-width-m` to `@offcanvas-bar-width-s`
21
- - Rename `@offcanvas-bar-padding-vertical-m` to `@offcanvas-bar-padding-vertical-s`
22
- - Rename `@offcanvas-bar-padding-horizontal-m` to `@offcanvas-bar-padding-horizontal-s`
23
- - Rename `@nav-primary-item-font-size` to `@nav-primary-font-size`
24
- - Rename `@nav-primary-item-line-height` to `@nav-primary-line-height`
25
- - Rename `@navbar-dropdown-dropbar-margin-top` to `@navbar-dropdown-dropbar-padding-top`
26
- - Rename `@navbar-dropdown-dropbar-margin-bottom` to `@navbar-dropdown-dropbar-padding-bottom`
27
- - Use JS icon component instead of compiling icons into CSS for nav parent icon in Nav component
28
+ - IMPORTANT: Remove `.uk-nav-parent-icon` from Nav component. Use `uk-nav-parent-icon` attribute on items instead
29
+ - IMPORTANT: Remove `*-justify` in `pos` option from Drop and Dropdown components. Use new `stretch` option instead
30
+ - IMPORTANT: Remove `boundary-align` option from Drop and Dropdown components. Use new `target` option instead
31
+ - IMPORTANT: Change `flip` option values in Drop and Dropdown components. Use new `shift` option too
32
+ - IMPORTANT: Rename `@offcanvas-bar-width-m` to `@offcanvas-bar-width-s`
33
+ - IMPORTANT: Rename `@offcanvas-bar-padding-vertical-m` to `@offcanvas-bar-padding-vertical-s`
34
+ - IMPORTANT: Rename `@offcanvas-bar-padding-horizontal-m` to `@offcanvas-bar-padding-horizontal-s`
35
+ - IMPORTANT: Rename `@nav-primary-item-font-size` to `@nav-primary-font-size`
36
+ - IMPORTANT: Rename `@nav-primary-item-line-height` to `@nav-primary-line-height`
37
+ - IMPORTANT: Rename `@navbar-dropdown-dropbar-margin-top` to `@navbar-dropdown-dropbar-padding-top`
38
+ - IMPORTANT: Rename `@navbar-dropdown-dropbar-margin-bottom` to `@navbar-dropdown-dropbar-padding-bottom`
39
+ - IMPORTANT: Remove style from `.uk-navbar-dropbar`. Now uses `uk-dropbar`
40
+
41
+ ### Removed
42
+
43
+ - Remove `getCssVar()` utility function
28
44
 
29
45
  ### Fixed
30
46
 
@@ -33,6 +49,7 @@
33
49
  - Fix dragging in Slider component on iOS
34
50
  - Fix Drop component no longer flips, if it does not fit into scroll area
35
51
  - Fix Drop component alignment within Dropbar
52
+ - Remove margin from the last-child within dropdowns in Dropdown and Navbar components
36
53
 
37
54
  ## 3.14.3 (May 27, 2022)
38
55
 
@@ -699,8 +716,8 @@
699
716
 
700
717
  ### Changed
701
718
 
702
- - IMPORTANT: Change options 'animationMode' to 'animation', 'animation' to 'duration'
703
- - IMPORTANT: Rename 'shift' animation to 'slide'
719
+ - IMPORTANT: Change options `animationMode` to `animation` and `animation` to `duration`
720
+ - IMPORTANT: Rename `shift` animation to `slide`
704
721
 
705
722
  ## 3.6.1 (December 17, 2020)
706
723
 
@@ -899,7 +916,7 @@
899
916
 
900
917
  ### Changed
901
918
 
902
- - IMPORTANT: Renamed Less variable parts `xxlarge` to `2xlarge`
919
+ - IMPORTANT: Rename Less variable parts `xxlarge` to `2xlarge`
903
920
  - Replace clearfix by creating a block formatting context with display flow-root
904
921
 
905
922
  ### Deprecated
package/build/util.js CHANGED
@@ -205,6 +205,7 @@ export async function icons(src) {
205
205
  convertPathData: false,
206
206
  convertShapeToPath: false,
207
207
  mergePaths: false,
208
+ minifyStyles: false,
208
209
  removeDimensions: false,
209
210
  removeStyleElement: false,
210
211
  removeScriptElement: false,
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.14.4-dev.d014a9a57 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.14.4-dev.d2929b5b7 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -3240,18 +3240,6 @@ select.uk-form-width-xsmall {
3240
3240
  .uk-drop.uk-open {
3241
3241
  display: block;
3242
3242
  }
3243
- /* Stretch modifier
3244
- ========================================================================== */
3245
- /*
3246
- * 1. Allow scrolling
3247
- */
3248
- .uk-drop-stretch {
3249
- --uk-position-offset: 0;
3250
- --uk-position-viewport-offset: 0;
3251
- /* 1 */
3252
- overflow-y: auto;
3253
- -webkit-overflow-scrolling: touch;
3254
- }
3255
3243
  /* Grid modifiers
3256
3244
  ========================================================================== */
3257
3245
  .uk-drop-stack .uk-drop-grid > * {
@@ -3277,7 +3265,6 @@ select.uk-form-width-xsmall {
3277
3265
  /* 3 */
3278
3266
  box-sizing: border-box;
3279
3267
  min-width: 200px;
3280
- max-width: 100vw;
3281
3268
  /* 4 */
3282
3269
  padding: 15px;
3283
3270
  background: #f8f8f8;
@@ -3287,23 +3274,17 @@ select.uk-form-width-xsmall {
3287
3274
  .uk-dropdown.uk-open {
3288
3275
  display: block;
3289
3276
  }
3277
+ /*
3278
+ * Remove margin from the last-child
3279
+ */
3280
+ .uk-dropdown > :last-child {
3281
+ margin-bottom: 0;
3282
+ }
3290
3283
  /* Size modifier
3291
3284
  ========================================================================== */
3292
3285
  .uk-dropdown-large {
3293
3286
  padding: 40px;
3294
3287
  }
3295
- /* Stretch modifier
3296
- ========================================================================== */
3297
- /*
3298
- * 1. Allow scrolling
3299
- */
3300
- .uk-dropdown-stretch {
3301
- --uk-position-offset: 0;
3302
- --uk-position-viewport-offset: 0;
3303
- /* 1 */
3304
- overflow-y: auto;
3305
- -webkit-overflow-scrolling: touch;
3306
- }
3307
3288
  /* Nav
3308
3289
  * Adopts `uk-nav`
3309
3290
  ========================================================================== */
@@ -3351,6 +3332,55 @@ select.uk-form-width-xsmall {
3351
3332
  .uk-dropdown-stack .uk-dropdown-grid > * {
3352
3333
  width: 100% !important;
3353
3334
  }
3335
+ /* ========================================================================
3336
+ Component: Dropbar
3337
+ ========================================================================== */
3338
+ /*
3339
+ * 1. Hide by default
3340
+ * 2. Set position
3341
+ * 3. Style
3342
+ */
3343
+ .uk-dropbar {
3344
+ --uk-position-offset: 0;
3345
+ --uk-position-shift-offset: 0;
3346
+ --uk-position-viewport-offset: 0;
3347
+ /* 1 */
3348
+ display: none;
3349
+ /* 2 */
3350
+ position: absolute;
3351
+ z-index: 1020;
3352
+ /* 3 */
3353
+ box-sizing: border-box;
3354
+ padding: 15px 15px 15px 15px;
3355
+ background: #f8f8f8;
3356
+ color: #666;
3357
+ }
3358
+ /* Show */
3359
+ .uk-dropbar.uk-open {
3360
+ display: block;
3361
+ }
3362
+ /*
3363
+ * Remove margin from the last-child
3364
+ */
3365
+ .uk-dropbar > :last-child {
3366
+ margin-bottom: 0;
3367
+ }
3368
+ /* Phone landscape and bigger */
3369
+ @media (min-width: 640px) {
3370
+ .uk-dropbar {
3371
+ padding-right: 30px;
3372
+ padding-left: 30px;
3373
+ }
3374
+ }
3375
+ /* Tablet landscape and bigger */
3376
+ @media (min-width: 960px) {
3377
+ .uk-dropbar {
3378
+ padding-right: 40px;
3379
+ padding-left: 40px;
3380
+ }
3381
+ }
3382
+ /* Direction modifier
3383
+ ========================================================================== */
3354
3384
  /* ========================================================================
3355
3385
  Component: Modal
3356
3386
  ========================================================================== */
@@ -4014,7 +4044,7 @@ select.uk-form-width-xsmall {
4014
4044
  * Pass fill character to JS
4015
4045
  */
4016
4046
  :root {
4017
- --uk-leader-fill-content: '.';
4047
+ --uk-leader-fill-content: .;
4018
4048
  }
4019
4049
  /* ========================================================================
4020
4050
  Component: Notification
@@ -4659,7 +4689,7 @@ ul.uk-nav-sub {
4659
4689
  .uk-nav-sub a {
4660
4690
  padding: 2px 0;
4661
4691
  }
4662
- /* Parent icon modifier
4692
+ /* Parent icon
4663
4693
  ========================================================================== */
4664
4694
  .uk-nav-parent-icon {
4665
4695
  margin-right: auto;
@@ -4790,6 +4820,69 @@ ul.uk-nav-sub {
4790
4820
  .uk-nav-primary .uk-nav-sub li.uk-active > a {
4791
4821
  color: #333;
4792
4822
  }
4823
+ /* Secondary modifier
4824
+ ========================================================================== */
4825
+ .uk-nav-secondary {
4826
+ font-size: 16px;
4827
+ line-height: 1.5;
4828
+ }
4829
+ /*
4830
+ * Items
4831
+ */
4832
+ .uk-nav-secondary > li > a {
4833
+ color: #333;
4834
+ }
4835
+ /* Hover */
4836
+ .uk-nav-secondary > li > a:hover {
4837
+ color: #333;
4838
+ }
4839
+ /* Active */
4840
+ .uk-nav-secondary > li.uk-active > a {
4841
+ color: #333;
4842
+ }
4843
+ /*
4844
+ * Subtitle
4845
+ */
4846
+ .uk-nav-secondary .uk-nav-subtitle {
4847
+ font-size: 0.875rem;
4848
+ color: #999;
4849
+ }
4850
+ /* Hover */
4851
+ .uk-nav-secondary > li > a:hover .uk-nav-subtitle {
4852
+ color: #666;
4853
+ }
4854
+ /* Active */
4855
+ .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
4856
+ color: #333;
4857
+ }
4858
+ /*
4859
+ * Header
4860
+ */
4861
+ .uk-nav-secondary .uk-nav-header {
4862
+ color: #333;
4863
+ }
4864
+ /*
4865
+ * Divider
4866
+ */
4867
+ .uk-nav-secondary .uk-nav-divider {
4868
+ border-top: 1px solid #e5e5e5;
4869
+ }
4870
+ /*
4871
+ * Sublists
4872
+ */
4873
+ .uk-nav-secondary .uk-nav-sub {
4874
+ font-size: 0.875rem;
4875
+ line-height: 1.5;
4876
+ }
4877
+ .uk-nav-secondary .uk-nav-sub a {
4878
+ color: #999;
4879
+ }
4880
+ .uk-nav-secondary .uk-nav-sub a:hover {
4881
+ color: #666;
4882
+ }
4883
+ .uk-nav-secondary .uk-nav-sub li.uk-active > a {
4884
+ color: #333;
4885
+ }
4793
4886
  /* Alignment modifier
4794
4887
  ========================================================================== */
4795
4888
  /*
@@ -4809,15 +4902,19 @@ ul.uk-nav-sub {
4809
4902
  .uk-nav-center .uk-nav-sub ul {
4810
4903
  padding-right: 0;
4811
4904
  }
4812
- /* Parent icon modifier */
4905
+ /* Parent icon */
4813
4906
  .uk-nav-center .uk-nav-parent-icon {
4814
4907
  margin-right: 0;
4815
4908
  }
4816
4909
  /* Style modifier
4817
4910
  ========================================================================== */
4911
+ /*
4912
+ * Divider
4913
+ * Naming is in plural to prevent conflicts with divider sub object.
4914
+ */
4818
4915
  .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
4819
- margin-top: 0;
4820
- padding-top: 0;
4916
+ margin-top: 5px;
4917
+ padding-top: 5px;
4821
4918
  border-top: 1px solid #e5e5e5;
4822
4919
  }
4823
4920
  /* ========================================================================
@@ -5038,7 +5135,6 @@ ul.uk-nav-sub {
5038
5135
  /* 3 */
5039
5136
  box-sizing: border-box;
5040
5137
  width: 200px;
5041
- max-width: 100vw;
5042
5138
  /* 4 */
5043
5139
  padding: 15px;
5044
5140
  background: #f8f8f8;
@@ -5048,6 +5144,12 @@ ul.uk-nav-sub {
5048
5144
  .uk-navbar-dropdown.uk-open {
5049
5145
  display: block;
5050
5146
  }
5147
+ /*
5148
+ * Remove margin from the last-child
5149
+ */
5150
+ .uk-navbar-dropdown > :last-child {
5151
+ margin-bottom: 0;
5152
+ }
5051
5153
  /*
5052
5154
  * Grid
5053
5155
  * Adopts `uk-grid`
@@ -5089,36 +5191,6 @@ ul.uk-nav-sub {
5089
5191
  --uk-position-shift-offset: 0;
5090
5192
  padding: 40px;
5091
5193
  }
5092
- /*
5093
- * Stretch modifier
5094
- * 1. Allow scrolling
5095
- * 2. Style
5096
- */
5097
- .uk-navbar-dropdown-stretch {
5098
- --uk-position-offset: 0;
5099
- --uk-position-shift-offset: 0;
5100
- --uk-position-viewport-offset: 0;
5101
- /* 1 */
5102
- overflow-y: auto;
5103
- -webkit-overflow-scrolling: touch;
5104
- /* 2 */
5105
- padding: 15px 15px 15px 15px;
5106
- background: #f8f8f8;
5107
- }
5108
- /* Phone landscape and bigger */
5109
- @media (min-width: 640px) {
5110
- .uk-navbar-dropdown-stretch {
5111
- padding-right: 30px;
5112
- padding-left: 30px;
5113
- }
5114
- }
5115
- /* Tablet landscape and bigger */
5116
- @media (min-width: 960px) {
5117
- .uk-navbar-dropdown-stretch {
5118
- padding-right: 40px;
5119
- padding-left: 40px;
5120
- }
5121
- }
5122
5194
  /*
5123
5195
  * Dropbar modifier
5124
5196
  * 1. Reset dropdown width to prevent to early shifting
@@ -5132,6 +5204,7 @@ ul.uk-nav-sub {
5132
5204
  background: transparent;
5133
5205
  /* 3 */
5134
5206
  padding: 15px 15px 15px 15px;
5207
+ --uk-position-offset: 0;
5135
5208
  --uk-position-shift-offset: 0;
5136
5209
  --uk-position-viewport-offset: 15px;
5137
5210
  }
@@ -5196,12 +5269,18 @@ ul.uk-nav-sub {
5196
5269
  }
5197
5270
  /* Dropbar
5198
5271
  ========================================================================== */
5272
+ /*
5273
+ * 1. Reset dropbar
5274
+ * 2. Width
5275
+ */
5199
5276
  .uk-navbar-dropbar {
5200
- position: absolute;
5277
+ /* 1 */
5278
+ display: block !important;
5201
5279
  z-index: 980;
5280
+ padding: 0;
5281
+ /* 2 */
5202
5282
  right: 0;
5203
5283
  left: 0;
5204
- background: #f8f8f8;
5205
5284
  }
5206
5285
  /* ========================================================================
5207
5286
  Component: Subnav
@@ -7525,6 +7604,14 @@ iframe[data-uk-cover] {
7525
7604
  .uk-overflow-auto > :last-child {
7526
7605
  margin-bottom: 0;
7527
7606
  }
7607
+ /* Box Sizing
7608
+ ========================================================================== */
7609
+ .uk-box-sizing-content {
7610
+ box-sizing: content-box;
7611
+ }
7612
+ .uk-box-sizing-border {
7613
+ box-sizing: border-box;
7614
+ }
7528
7615
  /* Resize
7529
7616
  ========================================================================== */
7530
7617
  .uk-resize {
@@ -7802,7 +7889,7 @@ iframe[data-uk-cover] {
7802
7889
  /* 1 */
7803
7890
  text-decoration: none;
7804
7891
  }
7805
- .uk-logo > :where(img, svg, video) {
7892
+ .uk-logo :where(img, svg, video) {
7806
7893
  display: block;
7807
7894
  }
7808
7895
  .uk-logo-inverse {
@@ -10900,6 +10987,149 @@ iframe[data-uk-cover] {
10900
10987
  .uk-offcanvas-bar .uk-nav-primary .uk-nav-sub li.uk-active > a {
10901
10988
  color: #fff;
10902
10989
  }
10990
+ .uk-light .uk-nav-secondary > li > a,
10991
+ .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
10992
+ .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
10993
+ .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
10994
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
10995
+ .uk-card-primary.uk-card-body .uk-nav-secondary > li > a,
10996
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a,
10997
+ .uk-card-secondary.uk-card-body .uk-nav-secondary > li > a,
10998
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a,
10999
+ .uk-overlay-primary .uk-nav-secondary > li > a,
11000
+ .uk-offcanvas-bar .uk-nav-secondary > li > a {
11001
+ color: #fff;
11002
+ }
11003
+ .uk-light .uk-nav-secondary > li > a:hover,
11004
+ .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
11005
+ .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
11006
+ .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
11007
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
11008
+ .uk-card-primary.uk-card-body .uk-nav-secondary > li > a:hover,
11009
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a:hover,
11010
+ .uk-card-secondary.uk-card-body .uk-nav-secondary > li > a:hover,
11011
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a:hover,
11012
+ .uk-overlay-primary .uk-nav-secondary > li > a:hover,
11013
+ .uk-offcanvas-bar .uk-nav-secondary > li > a:hover {
11014
+ color: #fff;
11015
+ }
11016
+ .uk-light .uk-nav-secondary > li.uk-active > a,
11017
+ .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
11018
+ .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
11019
+ .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
11020
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
11021
+ .uk-card-primary.uk-card-body .uk-nav-secondary > li.uk-active > a,
11022
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li.uk-active > a,
11023
+ .uk-card-secondary.uk-card-body .uk-nav-secondary > li.uk-active > a,
11024
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li.uk-active > a,
11025
+ .uk-overlay-primary .uk-nav-secondary > li.uk-active > a,
11026
+ .uk-offcanvas-bar .uk-nav-secondary > li.uk-active > a {
11027
+ color: #fff;
11028
+ }
11029
+ .uk-light .uk-nav-secondary .uk-nav-subtitle,
11030
+ .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
11031
+ .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
11032
+ .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
11033
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
11034
+ .uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-subtitle,
11035
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-subtitle,
11036
+ .uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-subtitle,
11037
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-subtitle,
11038
+ .uk-overlay-primary .uk-nav-secondary .uk-nav-subtitle,
11039
+ .uk-offcanvas-bar .uk-nav-secondary .uk-nav-subtitle {
11040
+ color: rgba(255, 255, 255, 0.5);
11041
+ }
11042
+ .uk-light .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
11043
+ .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
11044
+ .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
11045
+ .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
11046
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
11047
+ .uk-card-primary.uk-card-body .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
11048
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
11049
+ .uk-card-secondary.uk-card-body .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
11050
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
11051
+ .uk-overlay-primary .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
11052
+ .uk-offcanvas-bar .uk-nav-secondary > li > a:hover .uk-nav-subtitle {
11053
+ color: rgba(255, 255, 255, 0.7);
11054
+ }
11055
+ .uk-light .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
11056
+ .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
11057
+ .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
11058
+ .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
11059
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
11060
+ .uk-card-primary.uk-card-body .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
11061
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
11062
+ .uk-card-secondary.uk-card-body .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
11063
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
11064
+ .uk-overlay-primary .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
11065
+ .uk-offcanvas-bar .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
11066
+ color: #fff;
11067
+ }
11068
+ .uk-light .uk-nav-secondary .uk-nav-header,
11069
+ .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
11070
+ .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
11071
+ .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
11072
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
11073
+ .uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-header,
11074
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-header,
11075
+ .uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-header,
11076
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-header,
11077
+ .uk-overlay-primary .uk-nav-secondary .uk-nav-header,
11078
+ .uk-offcanvas-bar .uk-nav-secondary .uk-nav-header {
11079
+ color: #fff;
11080
+ }
11081
+ .uk-light .uk-nav-secondary .uk-nav-divider,
11082
+ .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
11083
+ .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
11084
+ .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
11085
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
11086
+ .uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-divider,
11087
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-divider,
11088
+ .uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-divider,
11089
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-divider,
11090
+ .uk-overlay-primary .uk-nav-secondary .uk-nav-divider,
11091
+ .uk-offcanvas-bar .uk-nav-secondary .uk-nav-divider {
11092
+ border-top-color: rgba(255, 255, 255, 0.2);
11093
+ }
11094
+ .uk-light .uk-nav-secondary .uk-nav-sub a,
11095
+ .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
11096
+ .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
11097
+ .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
11098
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
11099
+ .uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub a,
11100
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub a,
11101
+ .uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub a,
11102
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub a,
11103
+ .uk-overlay-primary .uk-nav-secondary .uk-nav-sub a,
11104
+ .uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub a {
11105
+ color: rgba(255, 255, 255, 0.5);
11106
+ }
11107
+ .uk-light .uk-nav-secondary .uk-nav-sub a:hover,
11108
+ .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
11109
+ .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
11110
+ .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
11111
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
11112
+ .uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub a:hover,
11113
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub a:hover,
11114
+ .uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub a:hover,
11115
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub a:hover,
11116
+ .uk-overlay-primary .uk-nav-secondary .uk-nav-sub a:hover,
11117
+ .uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub a:hover {
11118
+ color: rgba(255, 255, 255, 0.7);
11119
+ }
11120
+ .uk-light .uk-nav-secondary .uk-nav-sub li.uk-active > a,
11121
+ .uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
11122
+ .uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
11123
+ .uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
11124
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
11125
+ .uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub li.uk-active > a,
11126
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
11127
+ .uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub li.uk-active > a,
11128
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
11129
+ .uk-overlay-primary .uk-nav-secondary .uk-nav-sub li.uk-active > a,
11130
+ .uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub li.uk-active > a {
11131
+ color: #fff;
11132
+ }
10903
11133
  .uk-light .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
10904
11134
  .uk-section-primary:not(.uk-preserve-color) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
10905
11135
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
@@ -11550,17 +11780,28 @@ iframe[data-uk-cover] {
11550
11780
  .uk-offcanvas-bar .uk-logo:hover {
11551
11781
  color: #fff;
11552
11782
  }
11553
- .uk-light .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11554
- .uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11555
- .uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11556
- .uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11557
- .uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11558
- .uk-card-primary.uk-card-body .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11559
- .uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11560
- .uk-card-secondary.uk-card-body .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11561
- .uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11562
- .uk-overlay-primary .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11563
- .uk-offcanvas-bar .uk-logo > :not(.uk-logo-inverse):not(:only-of-type) {
11783
+ .uk-light .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11784
+ .uk-light .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11785
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11786
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11787
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11788
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11789
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11790
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11791
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11792
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11793
+ .uk-card-primary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11794
+ .uk-card-primary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11795
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11796
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11797
+ .uk-card-secondary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11798
+ .uk-card-secondary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11799
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11800
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11801
+ .uk-overlay-primary .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11802
+ .uk-overlay-primary .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11803
+ .uk-offcanvas-bar .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11804
+ .uk-offcanvas-bar .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) {
11564
11805
  display: none;
11565
11806
  }
11566
11807
  .uk-light .uk-logo-inverse,