uikit 3.21.14-dev.df667ac16 → 3.21.14

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 (104) hide show
  1. package/CHANGELOG.md +5 -26
  2. package/build/publishDev.js +0 -0
  3. package/dist/css/uikit-core-rtl.css +69 -211
  4. package/dist/css/uikit-core-rtl.min.css +1 -1
  5. package/dist/css/uikit-core.css +69 -211
  6. package/dist/css/uikit-core.min.css +1 -1
  7. package/dist/css/uikit-rtl.css +65 -215
  8. package/dist/css/uikit-rtl.min.css +1 -1
  9. package/dist/css/uikit.css +65 -215
  10. package/dist/css/uikit.min.css +1 -1
  11. package/dist/js/components/countdown.js +1 -1
  12. package/dist/js/components/countdown.min.js +1 -1
  13. package/dist/js/components/filter.js +2 -11
  14. package/dist/js/components/filter.min.js +1 -1
  15. package/dist/js/components/lightbox-panel.js +93 -321
  16. package/dist/js/components/lightbox-panel.min.js +1 -1
  17. package/dist/js/components/lightbox.js +98 -338
  18. package/dist/js/components/lightbox.min.js +1 -1
  19. package/dist/js/components/notification.js +1 -1
  20. package/dist/js/components/notification.min.js +1 -1
  21. package/dist/js/components/parallax.js +2 -2
  22. package/dist/js/components/parallax.min.js +1 -1
  23. package/dist/js/components/slider-parallax.js +2 -2
  24. package/dist/js/components/slider-parallax.min.js +1 -1
  25. package/dist/js/components/slider.js +9 -10
  26. package/dist/js/components/slider.min.js +1 -1
  27. package/dist/js/components/slideshow-parallax.js +2 -2
  28. package/dist/js/components/slideshow-parallax.min.js +1 -1
  29. package/dist/js/components/slideshow.js +9 -10
  30. package/dist/js/components/slideshow.min.js +1 -1
  31. package/dist/js/components/sortable.js +1 -1
  32. package/dist/js/components/sortable.min.js +1 -1
  33. package/dist/js/components/tooltip.js +4 -16
  34. package/dist/js/components/tooltip.min.js +1 -1
  35. package/dist/js/components/upload.js +1 -1
  36. package/dist/js/components/upload.min.js +1 -1
  37. package/dist/js/uikit-core.js +19 -16
  38. package/dist/js/uikit-core.min.js +1 -1
  39. package/dist/js/uikit-icons.js +17 -20
  40. package/dist/js/uikit-icons.min.js +1 -1
  41. package/dist/js/uikit.js +170 -284
  42. package/dist/js/uikit.min.js +1 -1
  43. package/package.json +65 -64
  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/cloud-download.svg +4 -4
  50. package/src/images/icons/cloud-upload.svg +4 -4
  51. package/src/images/icons/download.svg +4 -4
  52. package/src/images/icons/expand.svg +5 -5
  53. package/src/images/icons/link-external.svg +4 -4
  54. package/src/images/icons/pull.svg +4 -4
  55. package/src/images/icons/push.svg +3 -3
  56. package/src/images/icons/shrink.svg +5 -5
  57. package/src/images/icons/sign-in.svg +3 -4
  58. package/src/images/icons/sign-out.svg +3 -4
  59. package/src/images/icons/upload.svg +4 -4
  60. package/src/js/components/lightbox-panel.js +31 -172
  61. package/src/js/components/lightbox.js +6 -59
  62. package/src/js/components/tooltip.js +1 -1
  63. package/src/js/core/grid.js +1 -1
  64. package/src/js/core/img.js +5 -3
  65. package/src/js/core/navbar.js +6 -2
  66. package/src/js/core/toggle.js +1 -1
  67. package/src/js/mixin/modal.js +4 -1
  68. package/src/js/mixin/slider-drag.js +6 -3
  69. package/src/js/mixin/slider-nav.js +1 -1
  70. package/src/js/mixin/togglable.js +2 -4
  71. package/src/js/util/dom.js +1 -3
  72. package/src/less/components/breadcrumb.less +2 -6
  73. package/src/less/components/button.less +1 -1
  74. package/src/less/components/form-range.less +0 -52
  75. package/src/less/components/form.less +1 -1
  76. package/src/less/components/lightbox.less +89 -57
  77. package/src/less/components/search.less +23 -49
  78. package/src/less/components/totop.less +1 -1
  79. package/src/less/components/visibility.less +1 -2
  80. package/src/less/theme/form-range.less +0 -12
  81. package/src/less/theme/lightbox.less +20 -2
  82. package/src/less/theme/search.less +10 -24
  83. package/src/scss/components/breadcrumb.scss +2 -6
  84. package/src/scss/components/button.scss +1 -1
  85. package/src/scss/components/form-range.scss +0 -12
  86. package/src/scss/components/form.scss +1 -1
  87. package/src/scss/components/lightbox.scss +77 -49
  88. package/src/scss/components/search.scss +12 -30
  89. package/src/scss/components/totop.scss +1 -1
  90. package/src/scss/components/visibility.scss +1 -2
  91. package/src/scss/mixins-theme.scss +12 -51
  92. package/src/scss/mixins.scss +6 -45
  93. package/src/scss/theme/form-range.scss +0 -10
  94. package/src/scss/theme/lightbox.scss +20 -2
  95. package/src/scss/theme/search.scss +6 -10
  96. package/src/scss/variables-theme.scss +20 -32
  97. package/src/scss/variables.scss +24 -29
  98. package/tests/breadcrumb.html +5 -23
  99. package/tests/icon.html +0 -8
  100. package/tests/lightbox.html +28 -379
  101. package/tests/slider.html +0 -1
  102. package/src/images/icons/arrow-down-arrow-up.svg +0 -6
  103. package/src/images/icons/close-circle.svg +0 -5
  104. package/src/images/icons/sorting.svg +0 -6
package/CHANGELOG.md CHANGED
@@ -1,36 +1,15 @@
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-down-arrow-up 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
3
+ ## 3.21.14 (November 21, 2024)
26
4
 
27
5
  ### Fixed
28
6
 
7
+ - Fix child components in Dropdown components toggling transparency in Navbar component
8
+ - Fix Navbar toggles Dropdown component when hovering with mouse on initial page load
9
+ - Fix Scrollspy Nav component checks if targets exists before activating state
10
+ - Fix Slideshow component list does not fill available space in Safari
29
11
  - 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
12
  - 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
- - Fix Scrollspy Nav component checks if targets exists before activating state
34
13
 
35
14
  ## 3.21.13 (September 26, 2024)
36
15
 
File without changes
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.21.14-dev.df667ac16 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
1
+ /*! UIkit 3.21.14 | 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 controls and show cursor
1730
+ * 4. Hide controle 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 between child elements
2050
+ * 1. Using `flex` instead of `inline-block` to prevent whitespace betweent 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
- * Adopts `uk-icon`
2699
+ * Addopts `uk-icon`
2700
2700
  */
2701
2701
  .uk-totop {
2702
2702
  padding: 5px;
@@ -3144,8 +3144,7 @@ select.uk-form-width-xsmall {
3144
3144
  * Icon
3145
3145
  */
3146
3146
  .uk-search-default .uk-search-icon {
3147
- padding-right: 10px;
3148
- padding-left: 10px;
3147
+ width: 40px;
3149
3148
  }
3150
3149
  .uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3151
3150
  padding-right: 40px;
@@ -3175,8 +3174,7 @@ select.uk-form-width-xsmall {
3175
3174
  * Icon
3176
3175
  */
3177
3176
  .uk-search-navbar .uk-search-icon {
3178
- padding-right: 10px;
3179
- padding-left: 10px;
3177
+ width: 40px;
3180
3178
  }
3181
3179
  .uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3182
3180
  padding-right: 40px;
@@ -3193,28 +3191,22 @@ select.uk-form-width-xsmall {
3193
3191
  * Input
3194
3192
  */
3195
3193
  .uk-search-medium .uk-search-input {
3196
- height: 55px;
3197
- padding-right: 12px;
3198
- padding-left: 12px;
3199
- background: #f8f8f8;
3194
+ height: 40px;
3195
+ background: transparent;
3200
3196
  font-size: 1.5rem;
3201
3197
  }
3202
3198
  /* Focus */
3203
- .uk-search-medium .uk-search-input:focus {
3204
- background-color: #f3f3f3;
3205
- }
3206
3199
  /*
3207
3200
  * Icon
3208
3201
  */
3209
3202
  .uk-search-medium .uk-search-icon {
3210
- padding-right: 12px;
3211
- padding-left: 12px;
3203
+ width: 24px;
3212
3204
  }
3213
3205
  .uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3214
- padding-right: 48px;
3206
+ padding-right: 34px;
3215
3207
  }
3216
3208
  .uk-search-medium:has(.uk-search-icon-flip) .uk-search-input {
3217
- padding-left: 48px;
3209
+ padding-left: 34px;
3218
3210
  }
3219
3211
  /* Large modifier
3220
3212
  ========================================================================== */
@@ -3225,28 +3217,22 @@ select.uk-form-width-xsmall {
3225
3217
  * Input
3226
3218
  */
3227
3219
  .uk-search-large .uk-search-input {
3228
- height: 90px;
3229
- padding-right: 20px;
3230
- padding-left: 20px;
3231
- background: #f8f8f8;
3220
+ height: 80px;
3221
+ background: transparent;
3232
3222
  font-size: 2.625rem;
3233
3223
  }
3234
3224
  /* Focus */
3235
- .uk-search-large .uk-search-input:focus {
3236
- background-color: #f3f3f3;
3237
- }
3238
3225
  /*
3239
3226
  * Icon
3240
3227
  */
3241
3228
  .uk-search-large .uk-search-icon {
3242
- padding-right: 20px;
3243
- padding-left: 20px;
3229
+ width: 40px;
3244
3230
  }
3245
3231
  .uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3246
- padding-right: 80px;
3232
+ padding-right: 60px;
3247
3233
  }
3248
3234
  .uk-search-large:has(.uk-search-icon-flip) .uk-search-input {
3249
- padding-left: 80px;
3235
+ padding-left: 60px;
3250
3236
  }
3251
3237
  /* Toggle
3252
3238
  ========================================================================== */
@@ -5586,15 +5572,11 @@ ul.uk-nav-sub {
5586
5572
  Component: Breadcrumb
5587
5573
  ========================================================================== */
5588
5574
  /*
5589
- * 1. Reset list
5590
- * 2. Remove space between elements
5575
+ * Reset list
5591
5576
  */
5592
5577
  .uk-breadcrumb {
5593
- /* 1 */
5594
5578
  padding: 0;
5595
5579
  list-style: none;
5596
- /* 2 */
5597
- font-size: 0;
5598
5580
  }
5599
5581
  /*
5600
5582
  * 1. Doesn't generate any box and replaced by child boxes
@@ -5629,7 +5611,7 @@ ul.uk-nav-sub {
5629
5611
  content: "/";
5630
5612
  display: inline-block;
5631
5613
  /* 1 */
5632
- margin: 0 20px;
5614
+ margin: 0 calc(20px - 4px) 0 20px;
5633
5615
  /* 2 */
5634
5616
  font-size: 0.875rem;
5635
5617
  color: #999;
@@ -6023,10 +6005,8 @@ ul.uk-nav-sub {
6023
6005
  * 5. Mask the background page
6024
6006
  * 6. Fade-in transition
6025
6007
  * 7. Prevent cancellation of pointer events while dragging
6026
- * 8. Style for count and spinner icon
6027
6008
  */
6028
6009
  .uk-lightbox {
6029
- --uk-inverse: light;
6030
6010
  /* 1 */
6031
6011
  display: none;
6032
6012
  /* 2 */
@@ -6043,8 +6023,6 @@ ul.uk-nav-sub {
6043
6023
  transition: opacity 0.15s linear;
6044
6024
  /* 7 */
6045
6025
  touch-action: pinch-zoom;
6046
- /* 8 */
6047
- color: rgba(255, 255, 255, 0.7);
6048
6026
  }
6049
6027
  /*
6050
6028
  * Open
@@ -6070,21 +6048,14 @@ ul.uk-nav-sub {
6070
6048
  .uk-lightbox-page {
6071
6049
  overflow: hidden;
6072
6050
  }
6073
- /* Items
6051
+ /* Item
6074
6052
  ========================================================================== */
6075
- /*
6076
- * Reset list
6077
- */
6078
- .uk-lightbox-items {
6079
- margin: 0;
6080
- padding: 0;
6081
- list-style: none;
6082
- }
6083
6053
  /*
6084
6054
  * 1. Center child within the viewport
6085
6055
  * 2. Not visible by default
6086
- * 3. Optimize animation
6087
- * 4. Responsiveness
6056
+ * 3. Color needed for spinner icon
6057
+ * 4. Optimize animation
6058
+ * 5. Responsiveness
6088
6059
  * Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
6089
6060
  */
6090
6061
  .uk-lightbox-items > * {
@@ -6097,63 +6068,70 @@ ul.uk-nav-sub {
6097
6068
  /* 2 */
6098
6069
  display: none;
6099
6070
  justify-content: center;
6100
- align-items: flex-start;
6071
+ align-items: center;
6101
6072
  /* 3 */
6102
- will-change: transform, opacity;
6073
+ color: rgba(255, 255, 255, 0.7);
6103
6074
  /* 4 */
6104
- overflow: auto;
6105
- }
6106
- /* 2 */
6107
- .uk-lightbox-items > .uk-active {
6108
- display: flex;
6109
- }
6110
- .uk-lightbox-items-fit > * {
6111
- align-items: center;
6075
+ will-change: transform, opacity;
6112
6076
  }
6113
- /* 4 */
6114
- .uk-lightbox-items-fit > * > * {
6077
+ /* 5 */
6078
+ .uk-lightbox-items > * > * {
6115
6079
  max-width: 100vw;
6116
6080
  max-height: 100vh;
6117
6081
  }
6118
- .uk-lightbox-items-fit > * > :not(iframe) {
6082
+ .uk-lightbox-items > * > :not(iframe) {
6119
6083
  width: auto;
6120
6084
  height: auto;
6121
6085
  }
6122
- /* Zoom Cursor */
6123
- .uk-lightbox-items.uk-lightbox-items-fit .uk-lightbox-zoom:hover {
6124
- cursor: zoom-in;
6125
- }
6126
- .uk-lightbox-items:not(.uk-lightbox-items-fit) .uk-lightbox-zoom:hover {
6127
- cursor: zoom-out;
6086
+ .uk-lightbox-items > .uk-active {
6087
+ display: flex;
6128
6088
  }
6129
- /* Navs
6089
+ /* Toolbar
6130
6090
  ========================================================================== */
6131
- .uk-lightbox-thumbnav-vertical :where(img, video) {
6132
- max-width: 100px;
6133
- }
6134
- .uk-lightbox-thumbnav:not(.uk-lightbox-thumbnav-vertical) :where(img, video) {
6135
- max-height: 100px;
6091
+ .uk-lightbox-toolbar {
6092
+ padding: 10px 10px;
6093
+ background: rgba(0, 0, 0, 0.3);
6094
+ color: rgba(255, 255, 255, 0.7);
6136
6095
  }
6137
- .uk-lightbox-thumbnav:empty,
6138
- .uk-lightbox-dotnav:empty {
6139
- display: none;
6096
+ .uk-lightbox-toolbar > * {
6097
+ color: rgba(255, 255, 255, 0.7);
6140
6098
  }
6141
- /* Caption
6099
+ /* Toolbar Icon (Close)
6142
6100
  ========================================================================== */
6143
- .uk-lightbox-caption:empty {
6144
- display: none;
6101
+ .uk-lightbox-toolbar-icon {
6102
+ padding: 5px;
6103
+ color: rgba(255, 255, 255, 0.7);
6145
6104
  }
6146
- .uk-lightbox-caption {
6147
- padding: 10px 10px;
6105
+ /*
6106
+ * Hover
6107
+ */
6108
+ .uk-lightbox-toolbar-icon:hover {
6109
+ color: #fff;
6110
+ }
6111
+ /* Button (Slidenav)
6112
+ ========================================================================== */
6113
+ /*
6114
+ * 1. Center icon vertically and horizontally
6115
+ */
6116
+ .uk-lightbox-button {
6117
+ box-sizing: border-box;
6118
+ width: 50px;
6119
+ height: 50px;
6148
6120
  background: rgba(0, 0, 0, 0.3);
6149
6121
  color: rgba(255, 255, 255, 0.7);
6122
+ /* 1 */
6123
+ display: inline-flex;
6124
+ justify-content: center;
6125
+ align-items: center;
6150
6126
  }
6151
- .uk-lightbox-caption > * {
6152
- color: rgba(255, 255, 255, 0.7);
6127
+ /* Hover */
6128
+ .uk-lightbox-button:hover {
6129
+ color: #fff;
6153
6130
  }
6154
- /* Counter
6131
+ /* OnClick */
6132
+ /* Caption
6155
6133
  ========================================================================== */
6156
- .uk-lightbox-counter:empty {
6134
+ .uk-lightbox-caption:empty {
6157
6135
  display: none;
6158
6136
  }
6159
6137
  /* Iframe
@@ -9350,8 +9328,7 @@ iframe[data-uk-cover] {
9350
9328
  * `hidden` attribute also set here to make it stronger
9351
9329
  */
9352
9330
  [hidden],
9353
- .uk-hidden,
9354
- .uk-hidden-empty:empty {
9331
+ .uk-hidden {
9355
9332
  display: none !important;
9356
9333
  }
9357
9334
  /* Phone landscape and bigger */
@@ -9484,10 +9461,6 @@ iframe[data-uk-cover] {
9484
9461
  .uk-overlay-primary,
9485
9462
  .uk-offcanvas-bar {
9486
9463
  color: rgba(255, 255, 255, 0.7);
9487
- /* Webkit */
9488
- /* Firefox */
9489
- /* Webkit */
9490
- /* Firefox */
9491
9464
  }
9492
9465
  .uk-light a,
9493
9466
  .uk-light .uk-link,
@@ -10391,95 +10364,6 @@ iframe[data-uk-cover] {
10391
10364
  background-color: rgba(255, 255, 255, 0.2);
10392
10365
  color: rgba(255, 255, 255, 0.7);
10393
10366
  }
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
- }
10483
10367
  .uk-light .uk-input,
10484
10368
  .uk-light .uk-select,
10485
10369
  .uk-light .uk-textarea,
@@ -11285,20 +11169,7 @@ iframe[data-uk-cover] {
11285
11169
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
11286
11170
  .uk-overlay-primary .uk-search-medium .uk-search-input,
11287
11171
  .uk-offcanvas-bar .uk-search-medium .uk-search-input {
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);
11172
+ background-color: transparent;
11302
11173
  }
11303
11174
  .uk-light .uk-search-large .uk-search-input,
11304
11175
  .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
@@ -11311,20 +11182,7 @@ iframe[data-uk-cover] {
11311
11182
  .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
11312
11183
  .uk-overlay-primary .uk-search-large .uk-search-input,
11313
11184
  .uk-offcanvas-bar .uk-search-large .uk-search-input {
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);
11185
+ background-color: transparent;
11328
11186
  }
11329
11187
  .uk-light .uk-search-toggle,
11330
11188
  .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle,