uikit 3.21.14-dev.60ed95dfb → 3.21.14-dev.ac55757fb

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 (118) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/dist/css/uikit-core-rtl.css +216 -85
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +216 -85
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +220 -81
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +220 -81
  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 +1 -1
  13. package/dist/js/components/filter.min.js +1 -1
  14. package/dist/js/components/lightbox-panel.js +406 -109
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +423 -114
  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 +1 -1
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +1 -1
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +15 -20
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +1 -1
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +20 -26
  29. package/dist/js/components/slideshow.min.js +1 -1
  30. package/dist/js/components/sortable.js +1 -1
  31. package/dist/js/components/sortable.min.js +1 -1
  32. package/dist/js/components/tooltip.js +5 -2
  33. package/dist/js/components/tooltip.min.js +1 -1
  34. package/dist/js/components/upload.js +1 -1
  35. package/dist/js/components/upload.min.js +1 -1
  36. package/dist/js/uikit-core.js +125 -130
  37. package/dist/js/uikit-core.min.js +1 -1
  38. package/dist/js/uikit-icons.js +20 -17
  39. package/dist/js/uikit-icons.min.js +1 -1
  40. package/dist/js/uikit.js +478 -368
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +2 -2
  43. package/src/images/icons/arrow-down.svg +3 -3
  44. package/src/images/icons/arrow-left.svg +3 -3
  45. package/src/images/icons/arrow-right.svg +3 -3
  46. package/src/images/icons/arrow-up-arrow-down.svg +6 -0
  47. package/src/images/icons/arrow-up-right.svg +3 -3
  48. package/src/images/icons/arrow-up.svg +3 -3
  49. package/src/images/icons/close-circle.svg +5 -0
  50. package/src/images/icons/cloud-download.svg +4 -4
  51. package/src/images/icons/cloud-upload.svg +4 -4
  52. package/src/images/icons/download.svg +4 -4
  53. package/src/images/icons/expand.svg +5 -5
  54. package/src/images/icons/link-external.svg +4 -4
  55. package/src/images/icons/pull.svg +4 -4
  56. package/src/images/icons/push.svg +3 -3
  57. package/src/images/icons/shrink.svg +5 -5
  58. package/src/images/icons/sign-in.svg +4 -3
  59. package/src/images/icons/sign-out.svg +4 -3
  60. package/src/images/icons/sorting.svg +6 -0
  61. package/src/images/icons/upload.svg +4 -4
  62. package/src/js/api/instance.js +1 -1
  63. package/src/js/components/internal/lightbox-animations.js +2 -1
  64. package/src/js/components/internal/slideshow-animations.js +5 -5
  65. package/src/js/components/lightbox-panel.js +172 -31
  66. package/src/js/components/lightbox.js +59 -6
  67. package/src/js/components/slideshow.js +1 -2
  68. package/src/js/core/icon.js +2 -2
  69. package/src/js/core/img.js +3 -5
  70. package/src/js/core/svg.js +8 -10
  71. package/src/js/core/video.js +4 -3
  72. package/src/js/mixin/internal/slideshow-animations.js +1 -6
  73. package/src/js/mixin/modal.js +1 -4
  74. package/src/js/mixin/slider-drag.js +5 -6
  75. package/src/js/mixin/slider-nav.js +1 -1
  76. package/src/js/mixin/slider.js +11 -13
  77. package/src/js/mixin/slideshow.js +1 -1
  78. package/src/js/mixin/togglable.js +4 -2
  79. package/src/js/util/dom.js +3 -1
  80. package/src/js/util/player.js +0 -4
  81. package/src/less/components/background.less +1 -9
  82. package/src/less/components/breadcrumb.less +6 -2
  83. package/src/less/components/button.less +1 -1
  84. package/src/less/components/form-range.less +52 -0
  85. package/src/less/components/form.less +1 -1
  86. package/src/less/components/lightbox.less +57 -89
  87. package/src/less/components/search.less +49 -23
  88. package/src/less/components/sticky.less +1 -10
  89. package/src/less/components/totop.less +1 -1
  90. package/src/less/components/transition.less +4 -4
  91. package/src/less/components/visibility.less +3 -2
  92. package/src/less/theme/form-range.less +12 -0
  93. package/src/less/theme/lightbox.less +2 -20
  94. package/src/less/theme/search.less +24 -10
  95. package/src/scss/components/background.scss +1 -9
  96. package/src/scss/components/breadcrumb.scss +6 -2
  97. package/src/scss/components/button.scss +1 -1
  98. package/src/scss/components/form-range.scss +12 -0
  99. package/src/scss/components/form.scss +1 -1
  100. package/src/scss/components/lightbox.scss +49 -77
  101. package/src/scss/components/search.scss +30 -12
  102. package/src/scss/components/sticky.scss +1 -10
  103. package/src/scss/components/totop.scss +1 -1
  104. package/src/scss/components/transition.scss +4 -4
  105. package/src/scss/components/visibility.scss +3 -2
  106. package/src/scss/mixins-theme.scss +51 -12
  107. package/src/scss/mixins.scss +45 -6
  108. package/src/scss/theme/form-range.scss +10 -0
  109. package/src/scss/theme/lightbox.scss +2 -20
  110. package/src/scss/theme/search.scss +10 -6
  111. package/src/scss/variables-theme.scss +32 -20
  112. package/src/scss/variables.scss +29 -24
  113. package/tests/breadcrumb.html +23 -5
  114. package/tests/icon.html +8 -0
  115. package/tests/lightbox.html +345 -30
  116. package/tests/navbar.html +19 -19
  117. package/tests/slideshow.html +1 -1
  118. package/tests/transition.html +2 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # Changelog
2
2
 
3
+ ## WIP Lightbox
4
+
5
+ ### Added
6
+
7
+ - Add `slidnav` option to disable slidenav to Lightbox component
8
+ - Add `nav` option to show a vertical thumbnav or dotnav to Lightbox component
9
+ - Add `counter` option to show counter with current item number and total number of items to Lightbox component
10
+ - Add `video-autoplay: inline` option to autoplay video without controls and muted to Lightbox component
11
+ - Add zoom behavior to images and inline videos if they are higher than the viewport to Lightbox component
12
+ - Allow `template` option to reference a `template` element in the DOM for the lightbox layout in Lightbox component
13
+ - Add hidden class to hide empty elements to Visibility component
14
+ - Add inverse style for form rang to Form component
15
+ - Add close-circle and arrow-up-arrow-down icons
16
+
17
+ ### Changed
18
+
19
+ - IMPORTANT: Remove `@lightbox-toolbar-icon-*` and `@lightbox-button-*`from Lightbox component
20
+ - IMPORTANT: Rename `@lightbox-toolbar-*` to `@lightbox-caption-*` in Lightbox component
21
+ - IMPORTANT: Rename `@lightbox-item-color` to `@lightbox-color` in Lightbox component
22
+ - Set `delay-controls: 0` prevents hiding controls in Lightbox component
23
+ - Update default lightbox template in Lightbox component
24
+ - Change padding calculation of search box and search icon in Search component
25
+ - Change search style medium and large to look the same as default in Search component
26
+
27
+ ### Fixed
28
+
29
+ - Fix hidden class keep showing elements on hover if a link is clicked in Visibility component
30
+ - Fix spaces in the markup affecting the horizontal divider margin in Breadcrumb component
31
+ - Fix showing elements if an element has focus within in Transition component
32
+ - Fix Slideshow component list does not fill available space in Safari
33
+
3
34
  ## 3.21.13 (September 26, 2024)
4
35
 
5
36
  ### Fixed
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.21.14-dev.60ed95dfb | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
1
+ /*! UIkit 3.21.14-dev.ac55757fb | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -1727,7 +1727,7 @@ select.uk-form-width-xsmall {
1727
1727
  * 1. Position and resize the form control to always cover its container
1728
1728
  * 2. Required for Firefox for positioning to the left
1729
1729
  * 3. Required for Webkit to make `height` work
1730
- * 4. Hide controle and show cursor
1730
+ * 4. Hide controls and show cursor
1731
1731
  * 5. Needed for the cursor
1732
1732
  * 6. Clip height caused by 5. Needed for Webkit only
1733
1733
  */
@@ -2047,7 +2047,7 @@ select.uk-form-width-xsmall {
2047
2047
  /* Group
2048
2048
  ========================================================================== */
2049
2049
  /*
2050
- * 1. Using `flex` instead of `inline-block` to prevent whitespace betweent child elements
2050
+ * 1. Using `flex` instead of `inline-block` to prevent whitespace between child elements
2051
2051
  * 2. Behave like button
2052
2052
  * 3. Create position context
2053
2053
  */
@@ -2696,7 +2696,7 @@ select.uk-form-width-xsmall {
2696
2696
  Component: Totop
2697
2697
  ========================================================================== */
2698
2698
  /*
2699
- * Addopts `uk-icon`
2699
+ * Adopts `uk-icon`
2700
2700
  */
2701
2701
  .uk-totop {
2702
2702
  padding: 5px;
@@ -3144,7 +3144,8 @@ select.uk-form-width-xsmall {
3144
3144
  * Icon
3145
3145
  */
3146
3146
  .uk-search-default .uk-search-icon {
3147
- width: 40px;
3147
+ padding-right: 10px;
3148
+ padding-left: 10px;
3148
3149
  }
3149
3150
  .uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3150
3151
  padding-right: 40px;
@@ -3174,7 +3175,8 @@ select.uk-form-width-xsmall {
3174
3175
  * Icon
3175
3176
  */
3176
3177
  .uk-search-navbar .uk-search-icon {
3177
- width: 40px;
3178
+ padding-right: 10px;
3179
+ padding-left: 10px;
3178
3180
  }
3179
3181
  .uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3180
3182
  padding-right: 40px;
@@ -3191,22 +3193,28 @@ select.uk-form-width-xsmall {
3191
3193
  * Input
3192
3194
  */
3193
3195
  .uk-search-medium .uk-search-input {
3194
- height: 40px;
3195
- background: transparent;
3196
+ height: 55px;
3197
+ padding-right: 12px;
3198
+ padding-left: 12px;
3199
+ background: #f8f8f8;
3196
3200
  font-size: 1.5rem;
3197
3201
  }
3198
3202
  /* Focus */
3203
+ .uk-search-medium .uk-search-input:focus {
3204
+ background-color: #f3f3f3;
3205
+ }
3199
3206
  /*
3200
3207
  * Icon
3201
3208
  */
3202
3209
  .uk-search-medium .uk-search-icon {
3203
- width: 24px;
3210
+ padding-right: 12px;
3211
+ padding-left: 12px;
3204
3212
  }
3205
3213
  .uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3206
- padding-right: 34px;
3214
+ padding-right: 48px;
3207
3215
  }
3208
3216
  .uk-search-medium:has(.uk-search-icon-flip) .uk-search-input {
3209
- padding-left: 34px;
3217
+ padding-left: 48px;
3210
3218
  }
3211
3219
  /* Large modifier
3212
3220
  ========================================================================== */
@@ -3217,22 +3225,28 @@ select.uk-form-width-xsmall {
3217
3225
  * Input
3218
3226
  */
3219
3227
  .uk-search-large .uk-search-input {
3220
- height: 80px;
3221
- background: transparent;
3228
+ height: 90px;
3229
+ padding-right: 20px;
3230
+ padding-left: 20px;
3231
+ background: #f8f8f8;
3222
3232
  font-size: 2.625rem;
3223
3233
  }
3224
3234
  /* Focus */
3235
+ .uk-search-large .uk-search-input:focus {
3236
+ background-color: #f3f3f3;
3237
+ }
3225
3238
  /*
3226
3239
  * Icon
3227
3240
  */
3228
3241
  .uk-search-large .uk-search-icon {
3229
- width: 40px;
3242
+ padding-right: 20px;
3243
+ padding-left: 20px;
3230
3244
  }
3231
3245
  .uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3232
- padding-right: 60px;
3246
+ padding-right: 80px;
3233
3247
  }
3234
3248
  .uk-search-large:has(.uk-search-icon-flip) .uk-search-input {
3235
- padding-left: 60px;
3249
+ padding-left: 80px;
3236
3250
  }
3237
3251
  /* Toggle
3238
3252
  ========================================================================== */
@@ -3746,14 +3760,8 @@ select.uk-form-width-xsmall {
3746
3760
  /* 3 */
3747
3761
  box-sizing: border-box;
3748
3762
  }
3749
- /*
3750
- * 1. Force new layer to resolve frame rate issues on devices with lower frame rates
3751
- */
3752
3763
  .uk-sticky-fixed {
3753
3764
  margin: 0 !important;
3754
- /* 1 */
3755
- -webkit-backface-visibility: hidden;
3756
- backface-visibility: hidden;
3757
3765
  }
3758
3766
  /*
3759
3767
  * Faster animations
@@ -5578,11 +5586,15 @@ ul.uk-nav-sub {
5578
5586
  Component: Breadcrumb
5579
5587
  ========================================================================== */
5580
5588
  /*
5581
- * Reset list
5589
+ * 1. Reset list
5590
+ * 2. Remove space between elements
5582
5591
  */
5583
5592
  .uk-breadcrumb {
5593
+ /* 1 */
5584
5594
  padding: 0;
5585
5595
  list-style: none;
5596
+ /* 2 */
5597
+ font-size: 0;
5586
5598
  }
5587
5599
  /*
5588
5600
  * 1. Doesn't generate any box and replaced by child boxes
@@ -5617,7 +5629,7 @@ ul.uk-nav-sub {
5617
5629
  content: "/";
5618
5630
  display: inline-block;
5619
5631
  /* 1 */
5620
- margin: 0 calc(20px - 4px) 0 20px;
5632
+ margin: 0 20px;
5621
5633
  /* 2 */
5622
5634
  font-size: 0.875rem;
5623
5635
  color: #999;
@@ -6011,8 +6023,10 @@ ul.uk-nav-sub {
6011
6023
  * 5. Mask the background page
6012
6024
  * 6. Fade-in transition
6013
6025
  * 7. Prevent cancellation of pointer events while dragging
6026
+ * 8. Style for count and spinner icon
6014
6027
  */
6015
6028
  .uk-lightbox {
6029
+ --uk-inverse: light;
6016
6030
  /* 1 */
6017
6031
  display: none;
6018
6032
  /* 2 */
@@ -6029,6 +6043,8 @@ ul.uk-nav-sub {
6029
6043
  transition: opacity 0.15s linear;
6030
6044
  /* 7 */
6031
6045
  touch-action: pinch-zoom;
6046
+ /* 8 */
6047
+ color: rgba(255, 255, 255, 0.7);
6032
6048
  }
6033
6049
  /*
6034
6050
  * Open
@@ -6054,14 +6070,21 @@ ul.uk-nav-sub {
6054
6070
  .uk-lightbox-page {
6055
6071
  overflow: hidden;
6056
6072
  }
6057
- /* Item
6073
+ /* Items
6058
6074
  ========================================================================== */
6075
+ /*
6076
+ * Reset list
6077
+ */
6078
+ .uk-lightbox-items {
6079
+ margin: 0;
6080
+ padding: 0;
6081
+ list-style: none;
6082
+ }
6059
6083
  /*
6060
6084
  * 1. Center child within the viewport
6061
6085
  * 2. Not visible by default
6062
- * 3. Color needed for spinner icon
6063
- * 4. Optimize animation
6064
- * 5. Responsiveness
6086
+ * 3. Optimize animation
6087
+ * 4. Responsiveness
6065
6088
  * Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
6066
6089
  */
6067
6090
  .uk-lightbox-items > * {
@@ -6074,70 +6097,63 @@ ul.uk-nav-sub {
6074
6097
  /* 2 */
6075
6098
  display: none;
6076
6099
  justify-content: center;
6077
- align-items: center;
6100
+ align-items: flex-start;
6078
6101
  /* 3 */
6079
- color: rgba(255, 255, 255, 0.7);
6080
- /* 4 */
6081
6102
  will-change: transform, opacity;
6103
+ /* 4 */
6104
+ overflow: auto;
6082
6105
  }
6083
- /* 5 */
6084
- .uk-lightbox-items > * > * {
6106
+ /* 2 */
6107
+ .uk-lightbox-items > .uk-active {
6108
+ display: flex;
6109
+ }
6110
+ .uk-lightbox-items-fit > * {
6111
+ align-items: center;
6112
+ }
6113
+ /* 4 */
6114
+ .uk-lightbox-items-fit > * > * {
6085
6115
  max-width: 100vw;
6086
6116
  max-height: 100vh;
6087
6117
  }
6088
- .uk-lightbox-items > * > :not(iframe) {
6118
+ .uk-lightbox-items-fit > * > :not(iframe) {
6089
6119
  width: auto;
6090
6120
  height: auto;
6091
6121
  }
6092
- .uk-lightbox-items > .uk-active {
6093
- display: flex;
6094
- }
6095
- /* Toolbar
6096
- ========================================================================== */
6097
- .uk-lightbox-toolbar {
6098
- padding: 10px 10px;
6099
- background: rgba(0, 0, 0, 0.3);
6100
- color: rgba(255, 255, 255, 0.7);
6122
+ /* Zoom Cursor */
6123
+ .uk-lightbox-items.uk-lightbox-items-fit .uk-lightbox-zoom:hover {
6124
+ cursor: zoom-in;
6101
6125
  }
6102
- .uk-lightbox-toolbar > * {
6103
- color: rgba(255, 255, 255, 0.7);
6126
+ .uk-lightbox-items:not(.uk-lightbox-items-fit) .uk-lightbox-zoom:hover {
6127
+ cursor: zoom-out;
6104
6128
  }
6105
- /* Toolbar Icon (Close)
6129
+ /* Navs
6106
6130
  ========================================================================== */
6107
- .uk-lightbox-toolbar-icon {
6108
- padding: 5px;
6109
- color: rgba(255, 255, 255, 0.7);
6131
+ .uk-lightbox-thumbnav-vertical :where(img, video) {
6132
+ max-width: 100px;
6110
6133
  }
6111
- /*
6112
- * Hover
6113
- */
6114
- .uk-lightbox-toolbar-icon:hover {
6115
- color: #fff;
6134
+ .uk-lightbox-thumbnav:not(.uk-lightbox-thumbnav-vertical) :where(img, video) {
6135
+ max-height: 100px;
6116
6136
  }
6117
- /* Button (Slidenav)
6137
+ .uk-lightbox-thumbnav:empty,
6138
+ .uk-lightbox-dotnav:empty {
6139
+ display: none;
6140
+ }
6141
+ /* Caption
6118
6142
  ========================================================================== */
6119
- /*
6120
- * 1. Center icon vertically and horizontally
6121
- */
6122
- .uk-lightbox-button {
6123
- box-sizing: border-box;
6124
- width: 50px;
6125
- height: 50px;
6143
+ .uk-lightbox-caption:empty {
6144
+ display: none;
6145
+ }
6146
+ .uk-lightbox-caption {
6147
+ padding: 10px 10px;
6126
6148
  background: rgba(0, 0, 0, 0.3);
6127
6149
  color: rgba(255, 255, 255, 0.7);
6128
- /* 1 */
6129
- display: inline-flex;
6130
- justify-content: center;
6131
- align-items: center;
6132
6150
  }
6133
- /* Hover */
6134
- .uk-lightbox-button:hover {
6135
- color: #fff;
6151
+ .uk-lightbox-caption > * {
6152
+ color: rgba(255, 255, 255, 0.7);
6136
6153
  }
6137
- /* OnClick */
6138
- /* Caption
6154
+ /* Counter
6139
6155
  ========================================================================== */
6140
- .uk-lightbox-caption:empty {
6156
+ .uk-lightbox-counter:empty {
6141
6157
  display: none;
6142
6158
  }
6143
6159
  /* Iframe
@@ -7616,13 +7632,8 @@ iframe[data-uk-cover] {
7616
7632
  }
7617
7633
  /* Attachment
7618
7634
  ========================================================================== */
7619
- /*
7620
- * 1. Fix bug introduced in Chrome 67: the background image is not visible if any element on the page uses `translate3d`
7621
- */
7622
7635
  .uk-background-fixed {
7623
7636
  background-attachment: fixed;
7624
- /* 1 */
7625
- backface-visibility: hidden;
7626
7637
  }
7627
7638
  /*
7628
7639
  * Exclude touch devices because `fixed` doesn't work on iOS and Android
@@ -9230,7 +9241,7 @@ iframe[data-uk-cover] {
9230
9241
  */
9231
9242
  .uk-transition-toggle:hover .uk-transition-fade,
9232
9243
  .uk-transition-toggle:focus .uk-transition-fade,
9233
- .uk-transition-toggle .uk-transition-fade:focus-within,
9244
+ .uk-transition-toggle:focus-within .uk-transition-fade,
9234
9245
  .uk-transition-active.uk-active .uk-transition-fade {
9235
9246
  opacity: 1;
9236
9247
  }
@@ -9253,7 +9264,7 @@ iframe[data-uk-cover] {
9253
9264
  /* Show */
9254
9265
  .uk-transition-toggle:hover .uk-transition-scale-up,
9255
9266
  .uk-transition-toggle:focus .uk-transition-scale-up,
9256
- .uk-transition-toggle .uk-transition-scale-up:focus-within,
9267
+ .uk-transition-toggle:focus-within .uk-transition-scale-up,
9257
9268
  .uk-transition-active.uk-active .uk-transition-scale-up {
9258
9269
  --uk-scale-x: 1.03;
9259
9270
  --uk-scale-y: 1.03;
@@ -9261,7 +9272,7 @@ iframe[data-uk-cover] {
9261
9272
  }
9262
9273
  .uk-transition-toggle:hover .uk-transition-scale-down,
9263
9274
  .uk-transition-toggle:focus .uk-transition-scale-down,
9264
- .uk-transition-toggle .uk-transition-scale-down:focus-within,
9275
+ .uk-transition-toggle:focus-within .uk-transition-scale-down,
9265
9276
  .uk-transition-active.uk-active .uk-transition-scale-down {
9266
9277
  --uk-scale-x: 1;
9267
9278
  --uk-scale-y: 1;
@@ -9309,7 +9320,7 @@ iframe[data-uk-cover] {
9309
9320
  /* Show */
9310
9321
  .uk-transition-toggle:hover [class*="uk-transition-slide"],
9311
9322
  .uk-transition-toggle:focus [class*="uk-transition-slide"],
9312
- .uk-transition-toggle [class*="uk-transition-slide"]:focus-within,
9323
+ .uk-transition-toggle:focus-within [class*="uk-transition-slide"],
9313
9324
  .uk-transition-active.uk-active [class*="uk-transition-slide"] {
9314
9325
  --uk-translate-x: 0;
9315
9326
  --uk-translate-y: 0;
@@ -9339,7 +9350,8 @@ iframe[data-uk-cover] {
9339
9350
  * `hidden` attribute also set here to make it stronger
9340
9351
  */
9341
9352
  [hidden],
9342
- .uk-hidden {
9353
+ .uk-hidden,
9354
+ .uk-hidden-empty:empty {
9343
9355
  display: none !important;
9344
9356
  }
9345
9357
  /* Phone landscape and bigger */
@@ -9416,7 +9428,7 @@ iframe[data-uk-cover] {
9416
9428
  * Note: `clip-path` doesn't work with `tabindex` on touch devices.
9417
9429
  */
9418
9430
  .uk-hidden-visually:not(:focus):not(:active):not(:focus-within),
9419
- .uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within) {
9431
+ .uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-visible):not(:has(:focus-visible)) {
9420
9432
  /* 1 */
9421
9433
  position: absolute !important;
9422
9434
  /* 2 */
@@ -9472,6 +9484,10 @@ iframe[data-uk-cover] {
9472
9484
  .uk-overlay-primary,
9473
9485
  .uk-offcanvas-bar {
9474
9486
  color: rgba(255, 255, 255, 0.7);
9487
+ /* Webkit */
9488
+ /* Firefox */
9489
+ /* Webkit */
9490
+ /* Firefox */
9475
9491
  }
9476
9492
  .uk-light a,
9477
9493
  .uk-light .uk-link,
@@ -10375,6 +10391,95 @@ iframe[data-uk-cover] {
10375
10391
  background-color: rgba(255, 255, 255, 0.2);
10376
10392
  color: rgba(255, 255, 255, 0.7);
10377
10393
  }
10394
+ .uk-light .uk-range::-webkit-slider-runnable-track,
10395
+ .uk-section-primary:not(.uk-preserve-color) .uk-range::-webkit-slider-runnable-track,
10396
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range::-webkit-slider-runnable-track,
10397
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range::-webkit-slider-runnable-track,
10398
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range::-webkit-slider-runnable-track,
10399
+ .uk-card-primary.uk-card-body .uk-range::-webkit-slider-runnable-track,
10400
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range::-webkit-slider-runnable-track,
10401
+ .uk-card-secondary.uk-card-body .uk-range::-webkit-slider-runnable-track,
10402
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range::-webkit-slider-runnable-track,
10403
+ .uk-overlay-primary .uk-range::-webkit-slider-runnable-track,
10404
+ .uk-offcanvas-bar .uk-range::-webkit-slider-runnable-track {
10405
+ background: rgba(242, 242, 242, 0.1);
10406
+ }
10407
+ .uk-light .uk-range:focus::-webkit-slider-runnable-track,
10408
+ .uk-light .uk-range:active::-webkit-slider-runnable-track,
10409
+ .uk-section-primary:not(.uk-preserve-color) .uk-range:focus::-webkit-slider-runnable-track,
10410
+ .uk-section-primary:not(.uk-preserve-color) .uk-range:active::-webkit-slider-runnable-track,
10411
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range:focus::-webkit-slider-runnable-track,
10412
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range:active::-webkit-slider-runnable-track,
10413
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range:focus::-webkit-slider-runnable-track,
10414
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range:active::-webkit-slider-runnable-track,
10415
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range:focus::-webkit-slider-runnable-track,
10416
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range:active::-webkit-slider-runnable-track,
10417
+ .uk-card-primary.uk-card-body .uk-range:focus::-webkit-slider-runnable-track,
10418
+ .uk-card-primary.uk-card-body .uk-range:active::-webkit-slider-runnable-track,
10419
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range:focus::-webkit-slider-runnable-track,
10420
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range:active::-webkit-slider-runnable-track,
10421
+ .uk-card-secondary.uk-card-body .uk-range:focus::-webkit-slider-runnable-track,
10422
+ .uk-card-secondary.uk-card-body .uk-range:active::-webkit-slider-runnable-track,
10423
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range:focus::-webkit-slider-runnable-track,
10424
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range:active::-webkit-slider-runnable-track,
10425
+ .uk-overlay-primary .uk-range:focus::-webkit-slider-runnable-track,
10426
+ .uk-overlay-primary .uk-range:active::-webkit-slider-runnable-track,
10427
+ .uk-offcanvas-bar .uk-range:focus::-webkit-slider-runnable-track,
10428
+ .uk-offcanvas-bar .uk-range:active::-webkit-slider-runnable-track {
10429
+ background: rgba(242, 242, 242, 0.15);
10430
+ }
10431
+ .uk-light .uk-range::-moz-range-track,
10432
+ .uk-section-primary:not(.uk-preserve-color) .uk-range::-moz-range-track,
10433
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range::-moz-range-track,
10434
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range::-moz-range-track,
10435
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range::-moz-range-track,
10436
+ .uk-card-primary.uk-card-body .uk-range::-moz-range-track,
10437
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range::-moz-range-track,
10438
+ .uk-card-secondary.uk-card-body .uk-range::-moz-range-track,
10439
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range::-moz-range-track,
10440
+ .uk-overlay-primary .uk-range::-moz-range-track,
10441
+ .uk-offcanvas-bar .uk-range::-moz-range-track {
10442
+ background: rgba(242, 242, 242, 0.1);
10443
+ }
10444
+ .uk-light .uk-range:focus::-moz-range-track,
10445
+ .uk-section-primary:not(.uk-preserve-color) .uk-range:focus::-moz-range-track,
10446
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range:focus::-moz-range-track,
10447
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range:focus::-moz-range-track,
10448
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range:focus::-moz-range-track,
10449
+ .uk-card-primary.uk-card-body .uk-range:focus::-moz-range-track,
10450
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range:focus::-moz-range-track,
10451
+ .uk-card-secondary.uk-card-body .uk-range:focus::-moz-range-track,
10452
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range:focus::-moz-range-track,
10453
+ .uk-overlay-primary .uk-range:focus::-moz-range-track,
10454
+ .uk-offcanvas-bar .uk-range:focus::-moz-range-track {
10455
+ background: rgba(242, 242, 242, 0.15);
10456
+ }
10457
+ .uk-light .uk-range::-webkit-slider-thumb,
10458
+ .uk-section-primary:not(.uk-preserve-color) .uk-range::-webkit-slider-thumb,
10459
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range::-webkit-slider-thumb,
10460
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range::-webkit-slider-thumb,
10461
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range::-webkit-slider-thumb,
10462
+ .uk-card-primary.uk-card-body .uk-range::-webkit-slider-thumb,
10463
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range::-webkit-slider-thumb,
10464
+ .uk-card-secondary.uk-card-body .uk-range::-webkit-slider-thumb,
10465
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range::-webkit-slider-thumb,
10466
+ .uk-overlay-primary .uk-range::-webkit-slider-thumb,
10467
+ .uk-offcanvas-bar .uk-range::-webkit-slider-thumb {
10468
+ background: #ffffff;
10469
+ }
10470
+ .uk-light .uk-range::-moz-range-thumb,
10471
+ .uk-section-primary:not(.uk-preserve-color) .uk-range::-moz-range-thumb,
10472
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range::-moz-range-thumb,
10473
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range::-moz-range-thumb,
10474
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range::-moz-range-thumb,
10475
+ .uk-card-primary.uk-card-body .uk-range::-moz-range-thumb,
10476
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range::-moz-range-thumb,
10477
+ .uk-card-secondary.uk-card-body .uk-range::-moz-range-thumb,
10478
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range::-moz-range-thumb,
10479
+ .uk-overlay-primary .uk-range::-moz-range-thumb,
10480
+ .uk-offcanvas-bar .uk-range::-moz-range-thumb {
10481
+ background: #ffffff;
10482
+ }
10378
10483
  .uk-light .uk-input,
10379
10484
  .uk-light .uk-select,
10380
10485
  .uk-light .uk-textarea,
@@ -11180,7 +11285,20 @@ iframe[data-uk-cover] {
11180
11285
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
11181
11286
  .uk-overlay-primary .uk-search-medium .uk-search-input,
11182
11287
  .uk-offcanvas-bar .uk-search-medium .uk-search-input {
11183
- background-color: transparent;
11288
+ background-color: rgba(255, 255, 255, 0.1);
11289
+ }
11290
+ .uk-light .uk-search-medium .uk-search-input:focus,
11291
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11292
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11293
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11294
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11295
+ .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input:focus,
11296
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11297
+ .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input:focus,
11298
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11299
+ .uk-overlay-primary .uk-search-medium .uk-search-input:focus,
11300
+ .uk-offcanvas-bar .uk-search-medium .uk-search-input:focus {
11301
+ background-color: rgba(255, 255, 255, 0.15);
11184
11302
  }
11185
11303
  .uk-light .uk-search-large .uk-search-input,
11186
11304
  .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
@@ -11193,7 +11311,20 @@ iframe[data-uk-cover] {
11193
11311
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
11194
11312
  .uk-overlay-primary .uk-search-large .uk-search-input,
11195
11313
  .uk-offcanvas-bar .uk-search-large .uk-search-input {
11196
- background-color: transparent;
11314
+ background-color: rgba(255, 255, 255, 0.1);
11315
+ }
11316
+ .uk-light .uk-search-large .uk-search-input:focus,
11317
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11318
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11319
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11320
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11321
+ .uk-card-primary.uk-card-body .uk-search-large .uk-search-input:focus,
11322
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11323
+ .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input:focus,
11324
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11325
+ .uk-overlay-primary .uk-search-large .uk-search-input:focus,
11326
+ .uk-offcanvas-bar .uk-search-large .uk-search-input:focus {
11327
+ background-color: rgba(255, 255, 255, 0.15);
11197
11328
  }
11198
11329
  .uk-light .uk-search-toggle,
11199
11330
  .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle,