uikit 3.14.4-dev.6a00f7fe6 → 3.14.4-dev.7db3661de

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 (91) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/css/uikit-core-rtl.css +146 -77
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +146 -77
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +143 -78
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +143 -78
  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 +7 -5
  13. package/dist/js/components/filter.min.js +1 -1
  14. package/dist/js/components/lightbox-panel.js +115 -24
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +115 -24
  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 +4 -5
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +4 -5
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +22 -7
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +4 -5
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +22 -7
  29. package/dist/js/components/slideshow.min.js +1 -1
  30. package/dist/js/components/sortable.js +3 -3
  31. package/dist/js/components/sortable.min.js +1 -1
  32. package/dist/js/components/tooltip.js +26 -19
  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 +765 -647
  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 +1593 -1458
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +1 -1
  43. package/src/images/{backgrounds/nav-parent-open.svg → components/nav-parent-icon-large.svg} +0 -0
  44. package/src/images/components/nav-parent-icon.svg +3 -0
  45. package/src/images/components/navbar-parent-icon.svg +3 -0
  46. package/src/js/components/filter.js +5 -3
  47. package/src/js/components/sortable.js +2 -3
  48. package/src/js/core/drop.js +7 -0
  49. package/src/js/core/height-viewport.js +14 -6
  50. package/src/js/core/icon.js +16 -0
  51. package/src/js/core/index.js +2 -0
  52. package/src/js/core/leader.js +2 -2
  53. package/src/js/core/navbar.js +44 -15
  54. package/src/js/core/offcanvas.js +1 -47
  55. package/src/js/core/scroll.js +37 -10
  56. package/src/js/core/sticky.js +8 -9
  57. package/src/js/mixin/media.js +4 -5
  58. package/src/js/mixin/modal.js +90 -4
  59. package/src/js/mixin/position.js +27 -11
  60. package/src/js/mixin/slider-drag.js +20 -8
  61. package/src/js/mixin/togglable.js +8 -17
  62. package/src/js/util/dimensions.js +6 -6
  63. package/src/js/util/position.js +1 -0
  64. package/src/js/util/style.js +4 -13
  65. package/src/js/util/viewport.js +20 -36
  66. package/src/less/components/dropdown.less +14 -0
  67. package/src/less/components/leader.less +1 -1
  68. package/src/less/components/nav.less +37 -44
  69. package/src/less/components/navbar.less +108 -24
  70. package/src/less/components/utility.less +21 -4
  71. package/src/less/theme/nav.less +3 -15
  72. package/src/less/theme/navbar.less +7 -7
  73. package/src/scss/components/dropdown.scss +14 -0
  74. package/src/scss/components/leader.scss +1 -1
  75. package/src/scss/components/nav.scss +36 -32
  76. package/src/scss/components/navbar.scss +96 -24
  77. package/src/scss/components/utility.scss +19 -3
  78. package/src/scss/mixins-theme.scss +18 -20
  79. package/src/scss/mixins.scss +16 -15
  80. package/src/scss/theme/nav.scss +3 -15
  81. package/src/scss/theme/navbar.scss +6 -3
  82. package/src/scss/variables-theme.scss +27 -15
  83. package/src/scss/variables.scss +27 -13
  84. package/tests/drop.html +72 -16
  85. package/tests/dropdown.html +103 -16
  86. package/tests/index.html +3 -3
  87. package/tests/nav.html +20 -87
  88. package/tests/navbar.html +2128 -1133
  89. package/tests/offcanvas.html +8 -8
  90. package/tests/utility.html +19 -0
  91. package/src/images/backgrounds/nav-parent-close.svg +0 -3
package/CHANGELOG.md CHANGED
@@ -4,18 +4,42 @@
4
4
 
5
5
  ### Added
6
6
 
7
+ - Add dropdown large modifier to Dropdown and Navbar component
7
8
  - Add gap variable to navbar items in Navbar component
8
9
  - Add color mode variable to navbar dropdown in Navbar component
10
+ - Add navbar parent icon to Navbar component
11
+ - Add font size variables to nav and sublist in Nav component
9
12
  - Add small breakpoint padding variables to Modal component- Add `animate-out` option to Drop component
10
13
  - Add alignment `stretch` to Drop component
11
14
  - Add Height Viewport uses scroll parent as viewport
12
15
  - Add zero z-index utility class to Position component
16
+ - Add option `bg-scroll` to Drop component
17
+ - Add support for `picture` element to logo in Utility component
18
+ - Add box sizing classes to Utility component
13
19
 
14
20
  ### Changed
15
21
 
16
22
  - Rename `@offcanvas-bar-width-m` to `@offcanvas-bar-width-s`
17
23
  - Rename `@offcanvas-bar-padding-vertical-m` to `@offcanvas-bar-padding-vertical-s`
18
24
  - Rename `@offcanvas-bar-padding-horizontal-m` to `@offcanvas-bar-padding-horizontal-s`
25
+ - Rename `@nav-primary-item-font-size` to `@nav-primary-font-size`
26
+ - Rename `@nav-primary-item-line-height` to `@nav-primary-line-height`
27
+ - Rename `@navbar-dropdown-dropbar-margin-top` to `@navbar-dropdown-dropbar-padding-top`
28
+ - Rename `@navbar-dropdown-dropbar-margin-bottom` to `@navbar-dropdown-dropbar-padding-bottom`
29
+ - Use JS icon component instead of compiling icons into CSS for nav parent icon in Nav component
30
+
31
+ ### Removed
32
+
33
+ - Remove `getCssVar()` utility function
34
+
35
+ ### Fixed
36
+
37
+ - Fix body is no longer scrollable in Modal component with overlay
38
+ - Fix `offsetPosition()` adds `border-top` of offsetParents
39
+ - Fix dragging in Slider component on iOS
40
+ - Fix Drop component no longer flips, if it does not fit into scroll area
41
+ - Fix Drop component alignment within Dropbar
42
+ - Remove margin from the last-child within dropdowns in Dropdown and Navbar components
19
43
 
20
44
  ## 3.14.3 (May 27, 2022)
21
45
 
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.14.4-dev.6a00f7fe6 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.14.4-dev.7db3661de | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -3287,6 +3287,17 @@ select.uk-form-width-xsmall {
3287
3287
  .uk-dropdown.uk-open {
3288
3288
  display: block;
3289
3289
  }
3290
+ /*
3291
+ * Remove margin from the last-child
3292
+ */
3293
+ .uk-dropdown > :last-child {
3294
+ margin-bottom: 0;
3295
+ }
3296
+ /* Size modifier
3297
+ ========================================================================== */
3298
+ .uk-dropdown-large {
3299
+ padding: 40px;
3300
+ }
3290
3301
  /* Stretch modifier
3291
3302
  ========================================================================== */
3292
3303
  /*
@@ -4009,7 +4020,7 @@ select.uk-form-width-xsmall {
4009
4020
  * Pass fill character to JS
4010
4021
  */
4011
4022
  :root {
4012
- --uk-leader-fill-content: '.';
4023
+ --uk-leader-fill-content: .;
4013
4024
  }
4014
4025
  /* ========================================================================
4015
4026
  Component: Notification
@@ -4654,19 +4665,13 @@ ul.uk-nav-sub {
4654
4665
  .uk-nav-sub a {
4655
4666
  padding: 2px 0;
4656
4667
  }
4657
- /* Parent icon modifier
4668
+ /* Parent icon
4658
4669
  ========================================================================== */
4659
- .uk-nav-parent-icon > .uk-parent > a::after {
4660
- content: "";
4661
- width: 1.5em;
4662
- height: 1.5em;
4670
+ .uk-nav-parent-icon {
4663
4671
  margin-right: auto;
4664
- background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
4665
- background-repeat: no-repeat;
4666
- background-position: 50% 50%;
4667
4672
  }
4668
- .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
4669
- background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E");
4673
+ .uk-nav > li > a[aria-expanded="true"] .uk-nav-parent-icon {
4674
+ transform: rotate(-180deg);
4670
4675
  }
4671
4676
  /* Header
4672
4677
  ========================================================================== */
@@ -4685,6 +4690,10 @@ ul.uk-nav-sub {
4685
4690
  }
4686
4691
  /* Default modifier
4687
4692
  ========================================================================== */
4693
+ .uk-nav-default {
4694
+ font-size: 16px;
4695
+ line-height: 1.5;
4696
+ }
4688
4697
  /*
4689
4698
  * Items
4690
4699
  */
@@ -4720,6 +4729,10 @@ ul.uk-nav-sub {
4720
4729
  /*
4721
4730
  * Sublists
4722
4731
  */
4732
+ .uk-nav-default .uk-nav-sub {
4733
+ font-size: 16px;
4734
+ line-height: 1.5;
4735
+ }
4723
4736
  .uk-nav-default .uk-nav-sub a {
4724
4737
  color: #999;
4725
4738
  }
@@ -4731,12 +4744,14 @@ ul.uk-nav-sub {
4731
4744
  }
4732
4745
  /* Primary modifier
4733
4746
  ========================================================================== */
4747
+ .uk-nav-primary {
4748
+ font-size: 1.5rem;
4749
+ line-height: 1.5;
4750
+ }
4734
4751
  /*
4735
4752
  * Items
4736
4753
  */
4737
4754
  .uk-nav-primary > li > a {
4738
- font-size: 1.5rem;
4739
- line-height: 1.5;
4740
4755
  color: #999;
4741
4756
  }
4742
4757
  /* Hover */
@@ -4768,6 +4783,10 @@ ul.uk-nav-sub {
4768
4783
  /*
4769
4784
  * Sublists
4770
4785
  */
4786
+ .uk-nav-primary .uk-nav-sub {
4787
+ font-size: 1.25rem;
4788
+ line-height: 1.5;
4789
+ }
4771
4790
  .uk-nav-primary .uk-nav-sub a {
4772
4791
  color: #999;
4773
4792
  }
@@ -4796,15 +4815,19 @@ ul.uk-nav-sub {
4796
4815
  .uk-nav-center .uk-nav-sub ul {
4797
4816
  padding-right: 0;
4798
4817
  }
4799
- /* Parent icon modifier */
4800
- .uk-nav-center.uk-nav-parent-icon > .uk-parent > a::after {
4818
+ /* Parent icon */
4819
+ .uk-nav-center .uk-nav-parent-icon {
4801
4820
  margin-right: 0;
4802
4821
  }
4803
4822
  /* Style modifier
4804
4823
  ========================================================================== */
4824
+ /*
4825
+ * Divider
4826
+ * Naming is in plural to prevent conflicts with divider sub object.
4827
+ */
4805
4828
  .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
4806
- margin-top: 0;
4807
- padding-top: 0;
4829
+ margin-top: 5px;
4830
+ padding-top: 5px;
4808
4831
  border-top: 1px solid #e5e5e5;
4809
4832
  }
4810
4833
  /* ========================================================================
@@ -4815,7 +4838,6 @@ ul.uk-nav-sub {
4815
4838
  */
4816
4839
  .uk-navbar {
4817
4840
  display: flex;
4818
- --uk-navbar-nav-item-gap: 0px;
4819
4841
  /* 1 */
4820
4842
  position: relative;
4821
4843
  }
@@ -4828,15 +4850,12 @@ ul.uk-nav-sub {
4828
4850
  ========================================================================== */
4829
4851
  /*
4830
4852
  * 1. Align navs and items vertically if they have a different height
4831
- * 2. Note: IE 11 requires an extra `div` which affects the center selector
4832
4853
  */
4833
4854
  .uk-navbar-right,
4834
4855
  .uk-navbar-left,
4835
- .uk-navbar-center,
4836
- .uk-navbar-center-right > *,
4837
- .uk-navbar-center-left > * {
4856
+ [class*='uk-navbar-center'] {
4838
4857
  display: flex;
4839
- gap: var(--uk-navbar-nav-item-gap);
4858
+ gap: 0px;
4840
4859
  /* 1 */
4841
4860
  align-items: center;
4842
4861
  }
@@ -4875,10 +4894,10 @@ ul.uk-nav-sub {
4875
4894
  top: 0;
4876
4895
  }
4877
4896
  .uk-navbar-center-right {
4878
- left: calc(100% + var(--uk-navbar-nav-item-gap));
4897
+ left: calc(100% + 0px);
4879
4898
  }
4880
4899
  .uk-navbar-center-left {
4881
- right: calc(100% + var(--uk-navbar-nav-item-gap));
4900
+ right: calc(100% + 0px);
4882
4901
  }
4883
4902
  [class*='uk-navbar-center-'] {
4884
4903
  width: max-content;
@@ -4891,7 +4910,7 @@ ul.uk-nav-sub {
4891
4910
  */
4892
4911
  .uk-navbar-nav {
4893
4912
  display: flex;
4894
- gap: var(--uk-navbar-nav-item-gap);
4913
+ gap: 0px;
4895
4914
  /* 1 */
4896
4915
  margin: 0;
4897
4916
  padding: 0;
@@ -4926,7 +4945,6 @@ ul.uk-nav-sub {
4926
4945
  /* 3 */
4927
4946
  box-sizing: border-box;
4928
4947
  min-height: 80px;
4929
- padding: 0 15px;
4930
4948
  /* 4 */
4931
4949
  font-size: 16px;
4932
4950
  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";
@@ -4937,6 +4955,7 @@ ul.uk-nav-sub {
4937
4955
  * Nav items
4938
4956
  */
4939
4957
  .uk-navbar-nav > li > a {
4958
+ padding: 0 15px;
4940
4959
  color: #999;
4941
4960
  }
4942
4961
  /*
@@ -4955,6 +4974,14 @@ ul.uk-nav-sub {
4955
4974
  .uk-navbar-nav > li.uk-active > a {
4956
4975
  color: #333;
4957
4976
  }
4977
+ /* Parent icon modifier
4978
+ ========================================================================== */
4979
+ .uk-navbar-parent-icon {
4980
+ margin-right: 4px;
4981
+ }
4982
+ .uk-navbar-nav > li > a[aria-expanded="true"] .uk-navbar-parent-icon {
4983
+ transform: rotate(-180deg);
4984
+ }
4958
4985
  /* Item
4959
4986
  ========================================================================== */
4960
4987
  .uk-navbar-item {
@@ -4970,6 +4997,7 @@ ul.uk-nav-sub {
4970
4997
  /* Toggle
4971
4998
  ========================================================================== */
4972
4999
  .uk-navbar-toggle {
5000
+ padding: 0 15px;
4973
5001
  color: #999;
4974
5002
  }
4975
5003
  .uk-navbar-toggle:hover,
@@ -5030,6 +5058,12 @@ ul.uk-nav-sub {
5030
5058
  .uk-navbar-dropdown.uk-open {
5031
5059
  display: block;
5032
5060
  }
5061
+ /*
5062
+ * Remove margin from the last-child
5063
+ */
5064
+ .uk-navbar-dropdown > :last-child {
5065
+ margin-bottom: 0;
5066
+ }
5033
5067
  /*
5034
5068
  * Grid
5035
5069
  * Adopts `uk-grid`
@@ -5064,9 +5098,17 @@ ul.uk-nav-sub {
5064
5098
  .uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
5065
5099
  width: 1000px;
5066
5100
  }
5101
+ /*
5102
+ * Size modifier
5103
+ */
5104
+ .uk-navbar-dropdown-large {
5105
+ --uk-position-shift-offset: 0;
5106
+ padding: 40px;
5107
+ }
5067
5108
  /*
5068
5109
  * Stretch modifier
5069
5110
  * 1. Allow scrolling
5111
+ * 2. Style
5070
5112
  */
5071
5113
  .uk-navbar-dropdown-stretch {
5072
5114
  --uk-position-offset: 0;
@@ -5075,25 +5117,51 @@ ul.uk-nav-sub {
5075
5117
  /* 1 */
5076
5118
  overflow-y: auto;
5077
5119
  -webkit-overflow-scrolling: touch;
5120
+ /* 2 */
5121
+ padding: 15px 15px 15px 15px;
5122
+ background: #f8f8f8;
5123
+ }
5124
+ /* Phone landscape and bigger */
5125
+ @media (min-width: 640px) {
5126
+ .uk-navbar-dropdown-stretch {
5127
+ padding-right: 30px;
5128
+ padding-left: 30px;
5129
+ }
5130
+ }
5131
+ /* Tablet landscape and bigger */
5132
+ @media (min-width: 960px) {
5133
+ .uk-navbar-dropdown-stretch {
5134
+ padding-right: 40px;
5135
+ padding-left: 40px;
5136
+ }
5078
5137
  }
5079
5138
  /*
5080
5139
  * Dropbar modifier
5081
5140
  * 1. Reset dropdown width to prevent to early shifting
5082
- * 2. Set position
5083
- * 3. Bottom padding for dropbar
5084
- * 4. Horizontal padding
5141
+ * 2. Reset style
5142
+ * 3. Padding
5085
5143
  */
5086
5144
  .uk-navbar-dropdown-dropbar {
5087
5145
  /* 1 */
5088
5146
  width: auto;
5089
5147
  /* 2 */
5090
- --uk-position-offset: 0px;
5148
+ background: transparent;
5091
5149
  /* 3 */
5092
- margin-bottom: 0px;
5093
- /* 4 */
5094
- padding-right: 15px;
5095
- padding-left: 15px;
5150
+ padding: 15px 15px 15px 15px;
5096
5151
  --uk-position-shift-offset: 0;
5152
+ --uk-position-viewport-offset: 15px;
5153
+ }
5154
+ /* Phone landscape and bigger */
5155
+ @media (min-width: 640px) {
5156
+ .uk-navbar-dropdown-dropbar {
5157
+ --uk-position-viewport-offset: 30px;
5158
+ }
5159
+ }
5160
+ /* Tablet landscape and bigger */
5161
+ @media (min-width: 960px) {
5162
+ .uk-navbar-dropdown-dropbar {
5163
+ --uk-position-viewport-offset: 40px;
5164
+ }
5097
5165
  }
5098
5166
  /* Dropdown Nav
5099
5167
  * Adopts `uk-nav`
@@ -7473,6 +7541,14 @@ iframe[data-uk-cover] {
7473
7541
  .uk-overflow-auto > :last-child {
7474
7542
  margin-bottom: 0;
7475
7543
  }
7544
+ /* Box Sizing
7545
+ ========================================================================== */
7546
+ .uk-box-sizing-content {
7547
+ box-sizing: content-box;
7548
+ }
7549
+ .uk-box-sizing-border {
7550
+ box-sizing: border-box;
7551
+ }
7476
7552
  /* Resize
7477
7553
  ========================================================================== */
7478
7554
  .uk-resize {
@@ -7727,23 +7803,31 @@ iframe[data-uk-cover] {
7727
7803
  /* Logo
7728
7804
  ========================================================================== */
7729
7805
  /*
7730
- * 1. Required for `a`
7806
+ * 1. Style
7807
+ * 2. Required for `a`
7808
+ * 3. Behave like image but can be overridden through flex utility classes
7731
7809
  */
7732
7810
  .uk-logo {
7811
+ /* 1 */
7733
7812
  font-size: 1.5rem;
7734
7813
  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";
7735
7814
  color: #333;
7736
- /* 1 */
7815
+ /* 2 */
7737
7816
  text-decoration: none;
7738
7817
  }
7818
+ /* 3 */
7819
+ :where(.uk-logo) {
7820
+ display: inline-block;
7821
+ vertical-align: middle;
7822
+ }
7739
7823
  /* Hover */
7740
7824
  .uk-logo:hover {
7741
7825
  color: #333;
7742
7826
  /* 1 */
7743
7827
  text-decoration: none;
7744
7828
  }
7745
- .uk-logo > :where(img, svg, video) {
7746
- display: inline-block;
7829
+ .uk-logo :where(img, svg, video) {
7830
+ display: block;
7747
7831
  }
7748
7832
  .uk-logo-inverse {
7749
7833
  display: none;
@@ -10632,32 +10716,6 @@ iframe[data-uk-cover] {
10632
10716
  .uk-offcanvas-bar .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
10633
10717
  border-top-color: rgba(255, 255, 255, 0.2);
10634
10718
  }
10635
- .uk-light .uk-nav-parent-icon > .uk-parent > a::after,
10636
- .uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
10637
- .uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
10638
- .uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
10639
- .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
10640
- .uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
10641
- .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
10642
- .uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
10643
- .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
10644
- .uk-overlay-primary .uk-nav-parent-icon > .uk-parent > a::after,
10645
- .uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent > a::after {
10646
- background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
10647
- }
10648
- .uk-light .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
10649
- .uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
10650
- .uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
10651
- .uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
10652
- .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
10653
- .uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
10654
- .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
10655
- .uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
10656
- .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
10657
- .uk-overlay-primary .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
10658
- .uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
10659
- background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E");
10660
- }
10661
10719
  .uk-light .uk-nav-default > li > a,
10662
10720
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a,
10663
10721
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a,
@@ -11516,17 +11574,28 @@ iframe[data-uk-cover] {
11516
11574
  .uk-offcanvas-bar .uk-logo:hover {
11517
11575
  color: #fff;
11518
11576
  }
11519
- .uk-light .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11520
- .uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11521
- .uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11522
- .uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11523
- .uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11524
- .uk-card-primary.uk-card-body .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11525
- .uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11526
- .uk-card-secondary.uk-card-body .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11527
- .uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11528
- .uk-overlay-primary .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
11529
- .uk-offcanvas-bar .uk-logo > :not(.uk-logo-inverse):not(:only-of-type) {
11577
+ .uk-light .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11578
+ .uk-light .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11579
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11580
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11581
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11582
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11583
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11584
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11585
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11586
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11587
+ .uk-card-primary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11588
+ .uk-card-primary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11589
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11590
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11591
+ .uk-card-secondary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11592
+ .uk-card-secondary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11593
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11594
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11595
+ .uk-overlay-primary .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11596
+ .uk-overlay-primary .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
11597
+ .uk-offcanvas-bar .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
11598
+ .uk-offcanvas-bar .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) {
11530
11599
  display: none;
11531
11600
  }
11532
11601
  .uk-light .uk-logo-inverse,