uikit 3.21.17 → 3.21.18-dev.25d905542

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist/css/uikit-core-rtl.css +237 -69
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +237 -69
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +241 -65
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +241 -65
  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 +334 -103
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +351 -108
  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 +3 -7
  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 +3 -7
  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 +7 -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 +90 -88
  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 +365 -250
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +3 -3
  43. package/src/images/icons/arrow-down-arrow-up.svg +6 -0
  44. package/src/images/icons/arrow-down.svg +3 -3
  45. package/src/images/icons/arrow-left.svg +3 -3
  46. package/src/images/icons/arrow-right.svg +3 -3
  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/components/lightbox-panel.js +181 -45
  63. package/src/js/components/lightbox.js +59 -6
  64. package/src/js/core/img.js +3 -5
  65. package/src/js/mixin/modal.js +1 -4
  66. package/src/js/mixin/slider-drag.js +3 -6
  67. package/src/js/mixin/slider-nav.js +1 -1
  68. package/src/js/mixin/togglable.js +7 -2
  69. package/src/js/util/dom.js +3 -1
  70. package/src/less/components/breadcrumb.less +6 -2
  71. package/src/less/components/button.less +1 -1
  72. package/src/less/components/form-range.less +52 -0
  73. package/src/less/components/form.less +1 -1
  74. package/src/less/components/lightbox.less +57 -89
  75. package/src/less/components/margin.less +14 -0
  76. package/src/less/components/search.less +49 -23
  77. package/src/less/components/subnav.less +8 -0
  78. package/src/less/components/totop.less +1 -1
  79. package/src/less/components/utility.less +2 -1
  80. package/src/less/components/visibility.less +2 -1
  81. package/src/less/theme/form-range.less +20 -8
  82. package/src/less/theme/lightbox.less +2 -20
  83. package/src/less/theme/search.less +24 -10
  84. package/src/scss/components/breadcrumb.scss +6 -2
  85. package/src/scss/components/button.scss +1 -1
  86. package/src/scss/components/form-range.scss +12 -0
  87. package/src/scss/components/form.scss +1 -1
  88. package/src/scss/components/lightbox.scss +50 -77
  89. package/src/scss/components/margin.scss +13 -0
  90. package/src/scss/components/search.scss +30 -12
  91. package/src/scss/components/subnav.scss +7 -0
  92. package/src/scss/components/totop.scss +1 -1
  93. package/src/scss/components/utility.scss +1 -1
  94. package/src/scss/components/visibility.scss +2 -1
  95. package/src/scss/mixins-theme.scss +51 -12
  96. package/src/scss/mixins.scss +45 -6
  97. package/src/scss/theme/form-range.scss +14 -4
  98. package/src/scss/theme/lightbox.scss +2 -20
  99. package/src/scss/theme/search.scss +10 -6
  100. package/src/scss/variables-theme.scss +35 -21
  101. package/src/scss/variables.scss +31 -24
  102. package/tests/badge.html +2 -2
  103. package/tests/base.html +1 -1
  104. package/tests/breadcrumb.html +23 -5
  105. package/tests/card.html +24 -24
  106. package/tests/dropbar.html +15 -15
  107. package/tests/dropdown.html +6 -6
  108. package/tests/dropnav.html +100 -100
  109. package/tests/icon.html +8 -0
  110. package/tests/index.html +15 -15
  111. package/tests/lightbox.html +379 -28
  112. package/tests/margin.html +19 -0
  113. package/tests/nav.html +21 -21
  114. package/tests/navbar.html +273 -273
  115. package/tests/offcanvas.html +27 -27
  116. package/tests/placeholder.html +2 -2
  117. package/tests/sortable.html +5 -5
  118. package/tests/sticky-navbar.html +114 -114
  119. package/tests/sticky.html +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
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 margin xsmall classes
16
+ - Add horizontal margin variable to subnav pill in Subnav component
17
+ - Add close-circle and arrow-down-arrow-up icons
18
+
19
+ ### Changed
20
+
21
+ - IMPORTANT: Remove `@lightbox-toolbar-icon-*` and `@lightbox-button-*`from Lightbox component
22
+ - IMPORTANT: Rename `@lightbox-toolbar-*` to `@lightbox-caption-*` in Lightbox component
23
+ - IMPORTANT: Rename `@lightbox-item-color` to `@lightbox-color` in Lightbox component
24
+ - Set `delay-controls: 0` prevents hiding controls in Lightbox component
25
+ - Update default lightbox template in Lightbox component
26
+ - Change padding calculation of search box and search icon in Search component
27
+ - Change search style medium and large to look the same as default in Search component
28
+
29
+ ### Fixed
30
+
31
+ - Fix spaces in the markup affecting the horizontal divider margin in Breadcrumb component
32
+
3
33
  ## 3.21.17 (January 7, 2025)
4
34
 
5
35
  ### Fixed
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.21.17 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
1
+ /*! UIkit 3.21.18-dev.25d905542 | https://www.getuikit.com | (c) 2014 - 2025 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
  ========================================================================== */
@@ -5542,6 +5556,15 @@ ul.uk-nav-sub {
5542
5556
  }
5543
5557
  /* Pill modifier
5544
5558
  ========================================================================== */
5559
+ /*
5560
+ * Gutter
5561
+ */
5562
+ .uk-subnav-pill {
5563
+ margin-right: -20px;
5564
+ }
5565
+ .uk-subnav-pill > * {
5566
+ padding-right: 20px;
5567
+ }
5545
5568
  .uk-subnav-pill > * > :first-child {
5546
5569
  padding: 5px 10px;
5547
5570
  background: transparent;
@@ -5572,11 +5595,15 @@ ul.uk-nav-sub {
5572
5595
  Component: Breadcrumb
5573
5596
  ========================================================================== */
5574
5597
  /*
5575
- * Reset list
5598
+ * 1. Reset list
5599
+ * 2. Remove space between elements
5576
5600
  */
5577
5601
  .uk-breadcrumb {
5602
+ /* 1 */
5578
5603
  padding: 0;
5579
5604
  list-style: none;
5605
+ /* 2 */
5606
+ font-size: 0;
5580
5607
  }
5581
5608
  /*
5582
5609
  * 1. Doesn't generate any box and replaced by child boxes
@@ -5611,7 +5638,7 @@ ul.uk-nav-sub {
5611
5638
  content: "/";
5612
5639
  display: inline-block;
5613
5640
  /* 1 */
5614
- margin: 0 calc(20px - 4px) 0 20px;
5641
+ margin: 0 20px;
5615
5642
  /* 2 */
5616
5643
  font-size: 0.875rem;
5617
5644
  color: #999;
@@ -6007,6 +6034,7 @@ ul.uk-nav-sub {
6007
6034
  * 7. Prevent cancellation of pointer events while dragging
6008
6035
  */
6009
6036
  .uk-lightbox {
6037
+ --uk-inverse: light;
6010
6038
  /* 1 */
6011
6039
  display: none;
6012
6040
  /* 2 */
@@ -6048,14 +6076,21 @@ ul.uk-nav-sub {
6048
6076
  .uk-lightbox-page {
6049
6077
  overflow: hidden;
6050
6078
  }
6051
- /* Item
6079
+ /* Items
6052
6080
  ========================================================================== */
6081
+ /*
6082
+ * Reset list
6083
+ */
6084
+ .uk-lightbox-items {
6085
+ margin: 0;
6086
+ padding: 0;
6087
+ list-style: none;
6088
+ }
6053
6089
  /*
6054
6090
  * 1. Center child within the viewport
6055
6091
  * 2. Not visible by default
6056
- * 3. Color needed for spinner icon
6057
- * 4. Optimize animation
6058
- * 5. Responsiveness
6092
+ * 3. Optimize animation
6093
+ * 4. Responsiveness
6059
6094
  * Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
6060
6095
  */
6061
6096
  .uk-lightbox-items > * {
@@ -6068,70 +6103,63 @@ ul.uk-nav-sub {
6068
6103
  /* 2 */
6069
6104
  display: none;
6070
6105
  justify-content: center;
6071
- align-items: center;
6106
+ align-items: flex-start;
6072
6107
  /* 3 */
6073
- color: rgba(255, 255, 255, 0.7);
6074
- /* 4 */
6075
6108
  will-change: transform, opacity;
6109
+ /* 4 */
6110
+ overflow: auto;
6076
6111
  }
6077
- /* 5 */
6078
- .uk-lightbox-items > * > * {
6112
+ /* 2 */
6113
+ .uk-lightbox-items > .uk-active {
6114
+ display: flex;
6115
+ }
6116
+ .uk-lightbox-items-fit > * {
6117
+ align-items: center;
6118
+ }
6119
+ /* 4 */
6120
+ .uk-lightbox-items-fit > * > * {
6079
6121
  max-width: 100vw;
6080
6122
  max-height: 100vh;
6081
6123
  }
6082
- .uk-lightbox-items > * > :not(iframe) {
6124
+ .uk-lightbox-items-fit > * > :not(iframe) {
6083
6125
  width: auto;
6084
6126
  height: auto;
6085
6127
  }
6086
- .uk-lightbox-items > .uk-active {
6087
- display: flex;
6128
+ /* Zoom Cursor */
6129
+ .uk-lightbox-items.uk-lightbox-items-fit .uk-lightbox-zoom:hover {
6130
+ cursor: zoom-in;
6088
6131
  }
6089
- /* Toolbar
6090
- ========================================================================== */
6091
- .uk-lightbox-toolbar {
6092
- padding: 10px 10px;
6093
- background: rgba(0, 0, 0, 0.3);
6094
- color: rgba(255, 255, 255, 0.7);
6132
+ .uk-lightbox-items:not(.uk-lightbox-items-fit) .uk-lightbox-zoom:hover {
6133
+ cursor: zoom-out;
6095
6134
  }
6096
- .uk-lightbox-toolbar > * {
6097
- color: rgba(255, 255, 255, 0.7);
6098
- }
6099
- /* Toolbar Icon (Close)
6135
+ /* Navs
6100
6136
  ========================================================================== */
6101
- .uk-lightbox-toolbar-icon {
6102
- padding: 5px;
6103
- color: rgba(255, 255, 255, 0.7);
6137
+ .uk-lightbox-thumbnav-vertical :where(img, video) {
6138
+ max-width: 100px;
6104
6139
  }
6105
- /*
6106
- * Hover
6107
- */
6108
- .uk-lightbox-toolbar-icon:hover {
6109
- color: #fff;
6140
+ .uk-lightbox-thumbnav:not(.uk-lightbox-thumbnav-vertical) :where(img, video) {
6141
+ max-height: 100px;
6110
6142
  }
6111
- /* Button (Slidenav)
6143
+ .uk-lightbox-thumbnav:empty,
6144
+ .uk-lightbox-dotnav:empty {
6145
+ display: none;
6146
+ }
6147
+ /* Caption
6112
6148
  ========================================================================== */
6113
- /*
6114
- * 1. Center icon vertically and horizontally
6115
- */
6116
- .uk-lightbox-button {
6117
- box-sizing: border-box;
6118
- width: 50px;
6119
- height: 50px;
6149
+ .uk-lightbox-caption:empty {
6150
+ display: none;
6151
+ }
6152
+ .uk-lightbox-caption {
6153
+ padding: 10px 10px;
6120
6154
  background: rgba(0, 0, 0, 0.3);
6121
6155
  color: rgba(255, 255, 255, 0.7);
6122
- /* 1 */
6123
- display: inline-flex;
6124
- justify-content: center;
6125
- align-items: center;
6126
6156
  }
6127
- /* Hover */
6128
- .uk-lightbox-button:hover {
6129
- color: #fff;
6157
+ .uk-lightbox-caption > * {
6158
+ color: rgba(255, 255, 255, 0.7);
6130
6159
  }
6131
- /* OnClick */
6132
- /* Caption
6160
+ /* Counter
6133
6161
  ========================================================================== */
6134
- .uk-lightbox-caption:empty {
6162
+ .uk-lightbox-counter:empty {
6135
6163
  display: none;
6136
6164
  }
6137
6165
  /* Iframe
@@ -8689,6 +8717,26 @@ iframe[data-uk-cover] {
8689
8717
  .uk-margin-left {
8690
8718
  margin-left: 20px !important;
8691
8719
  }
8720
+ /* XSmall
8721
+ ========================================================================== */
8722
+ .uk-margin-xsmall {
8723
+ margin-bottom: 5px;
8724
+ }
8725
+ * + .uk-margin-xsmall {
8726
+ margin-top: 5px !important;
8727
+ }
8728
+ .uk-margin-xsmall-top {
8729
+ margin-top: 5px !important;
8730
+ }
8731
+ .uk-margin-xsmall-bottom {
8732
+ margin-bottom: 5px !important;
8733
+ }
8734
+ .uk-margin-xsmall-right {
8735
+ margin-right: 5px !important;
8736
+ }
8737
+ .uk-margin-xsmall-left {
8738
+ margin-left: 5px !important;
8739
+ }
8692
8740
  /* Small
8693
8741
  ========================================================================== */
8694
8742
  .uk-margin-small {
@@ -9328,7 +9376,8 @@ iframe[data-uk-cover] {
9328
9376
  * `hidden` attribute also set here to make it stronger
9329
9377
  */
9330
9378
  [hidden],
9331
- .uk-hidden {
9379
+ .uk-hidden,
9380
+ .uk-hidden-empty:empty {
9332
9381
  display: none !important;
9333
9382
  }
9334
9383
  /* Phone landscape and bigger */
@@ -9461,6 +9510,10 @@ iframe[data-uk-cover] {
9461
9510
  .uk-overlay-primary,
9462
9511
  .uk-offcanvas-bar {
9463
9512
  color: rgba(255, 255, 255, 0.7);
9513
+ /* Webkit */
9514
+ /* Firefox */
9515
+ /* Webkit */
9516
+ /* Firefox */
9464
9517
  }
9465
9518
  .uk-light a,
9466
9519
  .uk-light .uk-link,
@@ -10364,6 +10417,95 @@ iframe[data-uk-cover] {
10364
10417
  background-color: rgba(255, 255, 255, 0.2);
10365
10418
  color: rgba(255, 255, 255, 0.7);
10366
10419
  }
10420
+ .uk-light .uk-range::-webkit-slider-runnable-track,
10421
+ .uk-section-primary:not(.uk-preserve-color) .uk-range::-webkit-slider-runnable-track,
10422
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range::-webkit-slider-runnable-track,
10423
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range::-webkit-slider-runnable-track,
10424
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range::-webkit-slider-runnable-track,
10425
+ .uk-card-primary.uk-card-body .uk-range::-webkit-slider-runnable-track,
10426
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range::-webkit-slider-runnable-track,
10427
+ .uk-card-secondary.uk-card-body .uk-range::-webkit-slider-runnable-track,
10428
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range::-webkit-slider-runnable-track,
10429
+ .uk-overlay-primary .uk-range::-webkit-slider-runnable-track,
10430
+ .uk-offcanvas-bar .uk-range::-webkit-slider-runnable-track {
10431
+ background: rgba(242, 242, 242, 0.1);
10432
+ }
10433
+ .uk-light .uk-range:focus::-webkit-slider-runnable-track,
10434
+ .uk-light .uk-range:active::-webkit-slider-runnable-track,
10435
+ .uk-section-primary:not(.uk-preserve-color) .uk-range:focus::-webkit-slider-runnable-track,
10436
+ .uk-section-primary:not(.uk-preserve-color) .uk-range:active::-webkit-slider-runnable-track,
10437
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range:focus::-webkit-slider-runnable-track,
10438
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range:active::-webkit-slider-runnable-track,
10439
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range:focus::-webkit-slider-runnable-track,
10440
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range:active::-webkit-slider-runnable-track,
10441
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range:focus::-webkit-slider-runnable-track,
10442
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range:active::-webkit-slider-runnable-track,
10443
+ .uk-card-primary.uk-card-body .uk-range:focus::-webkit-slider-runnable-track,
10444
+ .uk-card-primary.uk-card-body .uk-range:active::-webkit-slider-runnable-track,
10445
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range:focus::-webkit-slider-runnable-track,
10446
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range:active::-webkit-slider-runnable-track,
10447
+ .uk-card-secondary.uk-card-body .uk-range:focus::-webkit-slider-runnable-track,
10448
+ .uk-card-secondary.uk-card-body .uk-range:active::-webkit-slider-runnable-track,
10449
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range:focus::-webkit-slider-runnable-track,
10450
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range:active::-webkit-slider-runnable-track,
10451
+ .uk-overlay-primary .uk-range:focus::-webkit-slider-runnable-track,
10452
+ .uk-overlay-primary .uk-range:active::-webkit-slider-runnable-track,
10453
+ .uk-offcanvas-bar .uk-range:focus::-webkit-slider-runnable-track,
10454
+ .uk-offcanvas-bar .uk-range:active::-webkit-slider-runnable-track {
10455
+ background: rgba(242, 242, 242, 0.15);
10456
+ }
10457
+ .uk-light .uk-range::-moz-range-track,
10458
+ .uk-section-primary:not(.uk-preserve-color) .uk-range::-moz-range-track,
10459
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range::-moz-range-track,
10460
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range::-moz-range-track,
10461
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range::-moz-range-track,
10462
+ .uk-card-primary.uk-card-body .uk-range::-moz-range-track,
10463
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range::-moz-range-track,
10464
+ .uk-card-secondary.uk-card-body .uk-range::-moz-range-track,
10465
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range::-moz-range-track,
10466
+ .uk-overlay-primary .uk-range::-moz-range-track,
10467
+ .uk-offcanvas-bar .uk-range::-moz-range-track {
10468
+ background: rgba(242, 242, 242, 0.1);
10469
+ }
10470
+ .uk-light .uk-range:focus::-moz-range-track,
10471
+ .uk-section-primary:not(.uk-preserve-color) .uk-range:focus::-moz-range-track,
10472
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range:focus::-moz-range-track,
10473
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range:focus::-moz-range-track,
10474
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range:focus::-moz-range-track,
10475
+ .uk-card-primary.uk-card-body .uk-range:focus::-moz-range-track,
10476
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range:focus::-moz-range-track,
10477
+ .uk-card-secondary.uk-card-body .uk-range:focus::-moz-range-track,
10478
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range:focus::-moz-range-track,
10479
+ .uk-overlay-primary .uk-range:focus::-moz-range-track,
10480
+ .uk-offcanvas-bar .uk-range:focus::-moz-range-track {
10481
+ background: rgba(242, 242, 242, 0.15);
10482
+ }
10483
+ .uk-light .uk-range::-webkit-slider-thumb,
10484
+ .uk-section-primary:not(.uk-preserve-color) .uk-range::-webkit-slider-thumb,
10485
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range::-webkit-slider-thumb,
10486
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range::-webkit-slider-thumb,
10487
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range::-webkit-slider-thumb,
10488
+ .uk-card-primary.uk-card-body .uk-range::-webkit-slider-thumb,
10489
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range::-webkit-slider-thumb,
10490
+ .uk-card-secondary.uk-card-body .uk-range::-webkit-slider-thumb,
10491
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range::-webkit-slider-thumb,
10492
+ .uk-overlay-primary .uk-range::-webkit-slider-thumb,
10493
+ .uk-offcanvas-bar .uk-range::-webkit-slider-thumb {
10494
+ background: #ffffff;
10495
+ }
10496
+ .uk-light .uk-range::-moz-range-thumb,
10497
+ .uk-section-primary:not(.uk-preserve-color) .uk-range::-moz-range-thumb,
10498
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range::-moz-range-thumb,
10499
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range::-moz-range-thumb,
10500
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range::-moz-range-thumb,
10501
+ .uk-card-primary.uk-card-body .uk-range::-moz-range-thumb,
10502
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range::-moz-range-thumb,
10503
+ .uk-card-secondary.uk-card-body .uk-range::-moz-range-thumb,
10504
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range::-moz-range-thumb,
10505
+ .uk-overlay-primary .uk-range::-moz-range-thumb,
10506
+ .uk-offcanvas-bar .uk-range::-moz-range-thumb {
10507
+ background: #ffffff;
10508
+ }
10367
10509
  .uk-light .uk-input,
10368
10510
  .uk-light .uk-select,
10369
10511
  .uk-light .uk-textarea,
@@ -11169,7 +11311,20 @@ iframe[data-uk-cover] {
11169
11311
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
11170
11312
  .uk-overlay-primary .uk-search-medium .uk-search-input,
11171
11313
  .uk-offcanvas-bar .uk-search-medium .uk-search-input {
11172
- background-color: transparent;
11314
+ background-color: rgba(255, 255, 255, 0.1);
11315
+ }
11316
+ .uk-light .uk-search-medium .uk-search-input:focus,
11317
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11318
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11319
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11320
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11321
+ .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input:focus,
11322
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11323
+ .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input:focus,
11324
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11325
+ .uk-overlay-primary .uk-search-medium .uk-search-input:focus,
11326
+ .uk-offcanvas-bar .uk-search-medium .uk-search-input:focus {
11327
+ background-color: rgba(255, 255, 255, 0.15);
11173
11328
  }
11174
11329
  .uk-light .uk-search-large .uk-search-input,
11175
11330
  .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
@@ -11182,7 +11337,20 @@ iframe[data-uk-cover] {
11182
11337
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
11183
11338
  .uk-overlay-primary .uk-search-large .uk-search-input,
11184
11339
  .uk-offcanvas-bar .uk-search-large .uk-search-input {
11185
- background-color: transparent;
11340
+ background-color: rgba(255, 255, 255, 0.1);
11341
+ }
11342
+ .uk-light .uk-search-large .uk-search-input:focus,
11343
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11344
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11345
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11346
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11347
+ .uk-card-primary.uk-card-body .uk-search-large .uk-search-input:focus,
11348
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11349
+ .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input:focus,
11350
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11351
+ .uk-overlay-primary .uk-search-large .uk-search-input:focus,
11352
+ .uk-offcanvas-bar .uk-search-large .uk-search-input:focus {
11353
+ background-color: rgba(255, 255, 255, 0.15);
11186
11354
  }
11187
11355
  .uk-light .uk-search-toggle,
11188
11356
  .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle,