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
@@ -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
  ========================================================================== */
@@ -3549,6 +3549,17 @@ select.uk-form-width-xsmall {
3549
3549
  .uk-dropdown.uk-open {
3550
3550
  display: block;
3551
3551
  }
3552
+ /*
3553
+ * Remove margin from the last-child
3554
+ */
3555
+ .uk-dropdown > :last-child {
3556
+ margin-bottom: 0;
3557
+ }
3558
+ /* Size modifier
3559
+ ========================================================================== */
3560
+ .uk-dropdown-large {
3561
+ padding: 40px;
3562
+ }
3552
3563
  /* Stretch modifier
3553
3564
  ========================================================================== */
3554
3565
  /*
@@ -4284,7 +4295,7 @@ select.uk-form-width-xsmall {
4284
4295
  * Pass fill character to JS
4285
4296
  */
4286
4297
  :root {
4287
- --uk-leader-fill-content: '.';
4298
+ --uk-leader-fill-content: .;
4288
4299
  }
4289
4300
  /* ========================================================================
4290
4301
  Component: Notification
@@ -4929,19 +4940,13 @@ ul.uk-nav-sub {
4929
4940
  .uk-nav-sub a {
4930
4941
  padding: 2px 0;
4931
4942
  }
4932
- /* Parent icon modifier
4943
+ /* Parent icon
4933
4944
  ========================================================================== */
4934
- .uk-nav-parent-icon > .uk-parent > a::after {
4935
- content: "";
4936
- width: 1.5em;
4937
- height: 1.5em;
4945
+ .uk-nav-parent-icon {
4938
4946
  margin-right: auto;
4939
- 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");
4940
- background-repeat: no-repeat;
4941
- background-position: 50% 50%;
4942
4947
  }
4943
- .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
4944
- 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");
4948
+ .uk-nav > li > a[aria-expanded="true"] .uk-nav-parent-icon {
4949
+ transform: rotate(-180deg);
4945
4950
  }
4946
4951
  /* Header
4947
4952
  ========================================================================== */
@@ -4962,6 +4967,7 @@ ul.uk-nav-sub {
4962
4967
  ========================================================================== */
4963
4968
  .uk-nav-default {
4964
4969
  font-size: 0.875rem;
4970
+ line-height: 1.5;
4965
4971
  }
4966
4972
  /*
4967
4973
  * Items
@@ -4998,6 +5004,10 @@ ul.uk-nav-sub {
4998
5004
  /*
4999
5005
  * Sublists
5000
5006
  */
5007
+ .uk-nav-default .uk-nav-sub {
5008
+ font-size: 0.875rem;
5009
+ line-height: 1.5;
5010
+ }
5001
5011
  .uk-nav-default .uk-nav-sub a {
5002
5012
  color: #999;
5003
5013
  }
@@ -5009,12 +5019,14 @@ ul.uk-nav-sub {
5009
5019
  }
5010
5020
  /* Primary modifier
5011
5021
  ========================================================================== */
5022
+ .uk-nav-primary {
5023
+ font-size: 1.5rem;
5024
+ line-height: 1.5;
5025
+ }
5012
5026
  /*
5013
5027
  * Items
5014
5028
  */
5015
5029
  .uk-nav-primary > li > a {
5016
- font-size: 1.5rem;
5017
- line-height: 1.5;
5018
5030
  color: #999;
5019
5031
  }
5020
5032
  /* Hover */
@@ -5046,6 +5058,10 @@ ul.uk-nav-sub {
5046
5058
  /*
5047
5059
  * Sublists
5048
5060
  */
5061
+ .uk-nav-primary .uk-nav-sub {
5062
+ font-size: 1.25rem;
5063
+ line-height: 1.5;
5064
+ }
5049
5065
  .uk-nav-primary .uk-nav-sub a {
5050
5066
  color: #999;
5051
5067
  }
@@ -5074,15 +5090,19 @@ ul.uk-nav-sub {
5074
5090
  .uk-nav-center .uk-nav-sub ul {
5075
5091
  padding-right: 0;
5076
5092
  }
5077
- /* Parent icon modifier */
5078
- .uk-nav-center.uk-nav-parent-icon > .uk-parent > a::after {
5093
+ /* Parent icon */
5094
+ .uk-nav-center .uk-nav-parent-icon {
5079
5095
  margin-right: 0;
5080
5096
  }
5081
5097
  /* Style modifier
5082
5098
  ========================================================================== */
5099
+ /*
5100
+ * Divider
5101
+ * Naming is in plural to prevent conflicts with divider sub object.
5102
+ */
5083
5103
  .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
5084
- margin-top: 0;
5085
- padding-top: 0;
5104
+ margin-top: 5px;
5105
+ padding-top: 5px;
5086
5106
  border-top: 1px solid #e5e5e5;
5087
5107
  }
5088
5108
  /* ========================================================================
@@ -5093,7 +5113,6 @@ ul.uk-nav-sub {
5093
5113
  */
5094
5114
  .uk-navbar {
5095
5115
  display: flex;
5096
- --uk-navbar-nav-item-gap: 30px;
5097
5116
  /* 1 */
5098
5117
  position: relative;
5099
5118
  }
@@ -5106,15 +5125,12 @@ ul.uk-nav-sub {
5106
5125
  ========================================================================== */
5107
5126
  /*
5108
5127
  * 1. Align navs and items vertically if they have a different height
5109
- * 2. Note: IE 11 requires an extra `div` which affects the center selector
5110
5128
  */
5111
5129
  .uk-navbar-right,
5112
5130
  .uk-navbar-left,
5113
- .uk-navbar-center,
5114
- .uk-navbar-center-right > *,
5115
- .uk-navbar-center-left > * {
5131
+ [class*='uk-navbar-center'] {
5116
5132
  display: flex;
5117
- gap: var(--uk-navbar-nav-item-gap);
5133
+ gap: 30px;
5118
5134
  /* 1 */
5119
5135
  align-items: center;
5120
5136
  }
@@ -5153,10 +5169,10 @@ ul.uk-nav-sub {
5153
5169
  top: 0;
5154
5170
  }
5155
5171
  .uk-navbar-center-right {
5156
- left: calc(100% + var(--uk-navbar-nav-item-gap));
5172
+ left: calc(100% + 30px);
5157
5173
  }
5158
5174
  .uk-navbar-center-left {
5159
- right: calc(100% + var(--uk-navbar-nav-item-gap));
5175
+ right: calc(100% + 30px);
5160
5176
  }
5161
5177
  [class*='uk-navbar-center-'] {
5162
5178
  width: max-content;
@@ -5169,7 +5185,7 @@ ul.uk-nav-sub {
5169
5185
  */
5170
5186
  .uk-navbar-nav {
5171
5187
  display: flex;
5172
- gap: var(--uk-navbar-nav-item-gap);
5188
+ gap: 30px;
5173
5189
  /* 1 */
5174
5190
  margin: 0;
5175
5191
  padding: 0;
@@ -5204,7 +5220,6 @@ ul.uk-nav-sub {
5204
5220
  /* 3 */
5205
5221
  box-sizing: border-box;
5206
5222
  min-height: 80px;
5207
- padding: 0 0;
5208
5223
  /* 4 */
5209
5224
  font-size: 0.875rem;
5210
5225
  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";
@@ -5215,6 +5230,7 @@ ul.uk-nav-sub {
5215
5230
  * Nav items
5216
5231
  */
5217
5232
  .uk-navbar-nav > li > a {
5233
+ padding: 0 0;
5218
5234
  color: #999;
5219
5235
  text-transform: uppercase;
5220
5236
  transition: 0.1s ease-in-out;
@@ -5236,6 +5252,14 @@ ul.uk-nav-sub {
5236
5252
  .uk-navbar-nav > li.uk-active > a {
5237
5253
  color: #333;
5238
5254
  }
5255
+ /* Parent icon modifier
5256
+ ========================================================================== */
5257
+ .uk-navbar-parent-icon {
5258
+ margin-right: 4px;
5259
+ }
5260
+ .uk-navbar-nav > li > a[aria-expanded="true"] .uk-navbar-parent-icon {
5261
+ transform: rotate(-180deg);
5262
+ }
5239
5263
  /* Item
5240
5264
  ========================================================================== */
5241
5265
  .uk-navbar-item {
@@ -5251,6 +5275,7 @@ ul.uk-nav-sub {
5251
5275
  /* Toggle
5252
5276
  ========================================================================== */
5253
5277
  .uk-navbar-toggle {
5278
+ padding: 0 0;
5254
5279
  color: #999;
5255
5280
  }
5256
5281
  .uk-navbar-toggle:hover,
@@ -5312,6 +5337,12 @@ ul.uk-nav-sub {
5312
5337
  .uk-navbar-dropdown.uk-open {
5313
5338
  display: block;
5314
5339
  }
5340
+ /*
5341
+ * Remove margin from the last-child
5342
+ */
5343
+ .uk-navbar-dropdown > :last-child {
5344
+ margin-bottom: 0;
5345
+ }
5315
5346
  /*
5316
5347
  * Grid
5317
5348
  * Adopts `uk-grid`
@@ -5346,9 +5377,17 @@ ul.uk-nav-sub {
5346
5377
  .uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
5347
5378
  width: 1000px;
5348
5379
  }
5380
+ /*
5381
+ * Size modifier
5382
+ */
5383
+ .uk-navbar-dropdown-large {
5384
+ --uk-position-shift-offset: 0;
5385
+ padding: 40px;
5386
+ }
5349
5387
  /*
5350
5388
  * Stretch modifier
5351
5389
  * 1. Allow scrolling
5390
+ * 2. Style
5352
5391
  */
5353
5392
  .uk-navbar-dropdown-stretch {
5354
5393
  --uk-position-offset: 0;
@@ -5357,29 +5396,54 @@ ul.uk-nav-sub {
5357
5396
  /* 1 */
5358
5397
  overflow-y: auto;
5359
5398
  -webkit-overflow-scrolling: touch;
5399
+ /* 2 */
5400
+ padding: 15px 15px 15px 15px;
5401
+ background: #fff;
5360
5402
  box-shadow: none;
5361
- background: #f8f8f8;
5403
+ }
5404
+ /* Phone landscape and bigger */
5405
+ @media (min-width: 640px) {
5406
+ .uk-navbar-dropdown-stretch {
5407
+ padding-right: 30px;
5408
+ padding-left: 30px;
5409
+ }
5410
+ }
5411
+ /* Tablet landscape and bigger */
5412
+ @media (min-width: 960px) {
5413
+ .uk-navbar-dropdown-stretch {
5414
+ padding-right: 40px;
5415
+ padding-left: 40px;
5416
+ }
5362
5417
  }
5363
5418
  /*
5364
5419
  * Dropbar modifier
5365
5420
  * 1. Reset dropdown width to prevent to early shifting
5366
- * 2. Set position
5367
- * 3. Bottom padding for dropbar
5368
- * 4. Horizontal padding
5421
+ * 2. Reset style
5422
+ * 3. Padding
5369
5423
  */
5370
5424
  .uk-navbar-dropdown-dropbar {
5371
5425
  /* 1 */
5372
5426
  width: auto;
5373
5427
  /* 2 */
5374
- --uk-position-offset: 0px;
5428
+ background: transparent;
5375
5429
  /* 3 */
5376
- margin-bottom: 0px;
5377
- /* 4 */
5378
- padding-right: 0;
5379
- padding-left: 0;
5430
+ padding: 25px 0 25px 0;
5380
5431
  --uk-position-shift-offset: 0;
5432
+ --uk-position-viewport-offset: 15px;
5381
5433
  box-shadow: none;
5382
5434
  }
5435
+ /* Phone landscape and bigger */
5436
+ @media (min-width: 640px) {
5437
+ .uk-navbar-dropdown-dropbar {
5438
+ --uk-position-viewport-offset: 30px;
5439
+ }
5440
+ }
5441
+ /* Tablet landscape and bigger */
5442
+ @media (min-width: 960px) {
5443
+ .uk-navbar-dropdown-dropbar {
5444
+ --uk-position-viewport-offset: 40px;
5445
+ }
5446
+ }
5383
5447
  /* Dropdown Nav
5384
5448
  * Adopts `uk-nav`
5385
5449
  ========================================================================== */
@@ -7869,6 +7933,14 @@ iframe[data-uk-cover] {
7869
7933
  .uk-overflow-auto > :last-child {
7870
7934
  margin-bottom: 0;
7871
7935
  }
7936
+ /* Box Sizing
7937
+ ========================================================================== */
7938
+ .uk-box-sizing-content {
7939
+ box-sizing: content-box;
7940
+ }
7941
+ .uk-box-sizing-border {
7942
+ box-sizing: border-box;
7943
+ }
7872
7944
  /* Resize
7873
7945
  ========================================================================== */
7874
7946
  .uk-resize {
@@ -8124,23 +8196,31 @@ iframe[data-uk-cover] {
8124
8196
  /* Logo
8125
8197
  ========================================================================== */
8126
8198
  /*
8127
- * 1. Required for `a`
8199
+ * 1. Style
8200
+ * 2. Required for `a`
8201
+ * 3. Behave like image but can be overridden through flex utility classes
8128
8202
  */
8129
8203
  .uk-logo {
8204
+ /* 1 */
8130
8205
  font-size: 1.5rem;
8131
8206
  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";
8132
8207
  color: #333;
8133
- /* 1 */
8208
+ /* 2 */
8134
8209
  text-decoration: none;
8135
8210
  }
8211
+ /* 3 */
8212
+ :where(.uk-logo) {
8213
+ display: inline-block;
8214
+ vertical-align: middle;
8215
+ }
8136
8216
  /* Hover */
8137
8217
  .uk-logo:hover {
8138
8218
  color: #333;
8139
8219
  /* 1 */
8140
8220
  text-decoration: none;
8141
8221
  }
8142
- .uk-logo > :where(img, svg, video) {
8143
- display: inline-block;
8222
+ .uk-logo :where(img, svg, video) {
8223
+ display: block;
8144
8224
  }
8145
8225
  .uk-logo-inverse {
8146
8226
  display: none;
@@ -11107,32 +11187,6 @@ iframe[data-uk-cover] {
11107
11187
  .uk-offcanvas-bar .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
11108
11188
  border-top-color: rgba(255, 255, 255, 0.2);
11109
11189
  }
11110
- .uk-light .uk-nav-parent-icon > .uk-parent > a::after,
11111
- .uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
11112
- .uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
11113
- .uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
11114
- .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
11115
- .uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
11116
- .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
11117
- .uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
11118
- .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
11119
- .uk-overlay-primary .uk-nav-parent-icon > .uk-parent > a::after,
11120
- .uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent > a::after {
11121
- 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");
11122
- }
11123
- .uk-light .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
11124
- .uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
11125
- .uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
11126
- .uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
11127
- .uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
11128
- .uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
11129
- .uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
11130
- .uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
11131
- .uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
11132
- .uk-overlay-primary .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
11133
- .uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
11134
- 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");
11135
- }
11136
11190
  .uk-light .uk-nav-default > li > a,
11137
11191
  .uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a,
11138
11192
  .uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a,
@@ -12009,17 +12063,28 @@ iframe[data-uk-cover] {
12009
12063
  .uk-offcanvas-bar .uk-logo:hover {
12010
12064
  color: #fff;
12011
12065
  }
12012
- .uk-light .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
12013
- .uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
12014
- .uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
12015
- .uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
12016
- .uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
12017
- .uk-card-primary.uk-card-body .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
12018
- .uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
12019
- .uk-card-secondary.uk-card-body .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
12020
- .uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
12021
- .uk-overlay-primary .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
12022
- .uk-offcanvas-bar .uk-logo > :not(.uk-logo-inverse):not(:only-of-type) {
12066
+ .uk-light .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12067
+ .uk-light .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12068
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12069
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12070
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12071
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12072
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12073
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12074
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12075
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12076
+ .uk-card-primary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12077
+ .uk-card-primary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12078
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12079
+ .uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12080
+ .uk-card-secondary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12081
+ .uk-card-secondary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12082
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12083
+ .uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12084
+ .uk-overlay-primary .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12085
+ .uk-overlay-primary .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12086
+ .uk-offcanvas-bar .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12087
+ .uk-offcanvas-bar .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) {
12023
12088
  display: none;
12024
12089
  }
12025
12090
  .uk-light .uk-logo-inverse,