uikit 3.21.17 → 3.21.18-dev.1d04a2a78

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 (128) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/dist/css/uikit-core-rtl.css +243 -69
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +243 -69
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +247 -65
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +247 -65
  9. package/dist/css/uikit.min.css +1 -1
  10. package/dist/js/components/countdown.js +13 -8
  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 +102 -98
  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 +389 -267
  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/countdown.js +10 -5
  63. package/src/js/components/lightbox-panel.js +181 -45
  64. package/src/js/components/lightbox.js +59 -6
  65. package/src/js/core/height-placeholder.js +1 -1
  66. package/src/js/core/img.js +3 -5
  67. package/src/js/core/navbar.js +3 -6
  68. package/src/js/core/sticky.js +8 -2
  69. package/src/js/mixin/modal.js +1 -4
  70. package/src/js/mixin/slider-drag.js +3 -6
  71. package/src/js/mixin/slider-nav.js +1 -1
  72. package/src/js/mixin/togglable.js +7 -2
  73. package/src/js/util/dimensions.js +2 -2
  74. package/src/js/util/dom.js +3 -1
  75. package/src/less/components/breadcrumb.less +6 -2
  76. package/src/less/components/button.less +1 -1
  77. package/src/less/components/form-range.less +52 -0
  78. package/src/less/components/form.less +1 -1
  79. package/src/less/components/lightbox.less +57 -89
  80. package/src/less/components/margin.less +14 -0
  81. package/src/less/components/search.less +49 -23
  82. package/src/less/components/subnav.less +8 -0
  83. package/src/less/components/text.less +11 -0
  84. package/src/less/components/totop.less +1 -1
  85. package/src/less/components/utility.less +2 -1
  86. package/src/less/components/visibility.less +2 -1
  87. package/src/less/theme/form-range.less +20 -8
  88. package/src/less/theme/lightbox.less +2 -20
  89. package/src/less/theme/search.less +24 -10
  90. package/src/scss/components/breadcrumb.scss +6 -2
  91. package/src/scss/components/button.scss +1 -1
  92. package/src/scss/components/form-range.scss +12 -0
  93. package/src/scss/components/form.scss +1 -1
  94. package/src/scss/components/lightbox.scss +50 -77
  95. package/src/scss/components/margin.scss +13 -0
  96. package/src/scss/components/search.scss +30 -12
  97. package/src/scss/components/subnav.scss +7 -0
  98. package/src/scss/components/text.scss +10 -0
  99. package/src/scss/components/totop.scss +1 -1
  100. package/src/scss/components/utility.scss +1 -1
  101. package/src/scss/components/visibility.scss +2 -1
  102. package/src/scss/mixins-theme.scss +51 -12
  103. package/src/scss/mixins.scss +45 -6
  104. package/src/scss/theme/form-range.scss +14 -4
  105. package/src/scss/theme/lightbox.scss +2 -20
  106. package/src/scss/theme/search.scss +10 -6
  107. package/src/scss/variables-theme.scss +36 -21
  108. package/src/scss/variables.scss +32 -24
  109. package/tests/badge.html +2 -2
  110. package/tests/base.html +1 -1
  111. package/tests/breadcrumb.html +23 -5
  112. package/tests/card.html +24 -24
  113. package/tests/countdown.html +6 -0
  114. package/tests/dropbar.html +15 -15
  115. package/tests/dropdown.html +6 -6
  116. package/tests/dropnav.html +100 -100
  117. package/tests/icon.html +8 -0
  118. package/tests/index.html +15 -15
  119. package/tests/lightbox.html +379 -28
  120. package/tests/margin.html +19 -0
  121. package/tests/nav.html +21 -21
  122. package/tests/navbar.html +273 -273
  123. package/tests/offcanvas.html +27 -27
  124. package/tests/placeholder.html +2 -2
  125. package/tests/sortable.html +5 -5
  126. package/tests/sticky-navbar.html +114 -114
  127. package/tests/sticky.html +7 -1
  128. package/tests/text.html +8 -0
@@ -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.1d04a2a78 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -1779,7 +1779,7 @@ select.uk-form-width-xsmall {
1779
1779
  * 1. Position and resize the form control to always cover its container
1780
1780
  * 2. Required for Firefox for positioning to the left
1781
1781
  * 3. Required for Webkit to make `height` work
1782
- * 4. Hide controle and show cursor
1782
+ * 4. Hide controls and show cursor
1783
1783
  * 5. Needed for the cursor
1784
1784
  * 6. Clip height caused by 5. Needed for Webkit only
1785
1785
  */
@@ -2129,7 +2129,7 @@ select.uk-form-width-xsmall {
2129
2129
  /* Group
2130
2130
  ========================================================================== */
2131
2131
  /*
2132
- * 1. Using `flex` instead of `inline-block` to prevent whitespace betweent child elements
2132
+ * 1. Using `flex` instead of `inline-block` to prevent whitespace between child elements
2133
2133
  * 2. Behave like button
2134
2134
  * 3. Create position context
2135
2135
  */
@@ -2901,7 +2901,7 @@ select.uk-form-width-xsmall {
2901
2901
  Component: Totop
2902
2902
  ========================================================================== */
2903
2903
  /*
2904
- * Addopts `uk-icon`
2904
+ * Adopts `uk-icon`
2905
2905
  */
2906
2906
  .uk-totop {
2907
2907
  padding: 5px;
@@ -3392,7 +3392,8 @@ select.uk-form-width-xsmall {
3392
3392
  * Icon
3393
3393
  */
3394
3394
  .uk-search-default .uk-search-icon {
3395
- width: 40px;
3395
+ padding-right: 10px;
3396
+ padding-left: 10px;
3396
3397
  }
3397
3398
  .uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3398
3399
  padding-right: 40px;
@@ -3424,7 +3425,8 @@ select.uk-form-width-xsmall {
3424
3425
  * Icon
3425
3426
  */
3426
3427
  .uk-search-navbar .uk-search-icon {
3427
- width: 40px;
3428
+ padding-right: 10px;
3429
+ padding-left: 10px;
3428
3430
  }
3429
3431
  .uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3430
3432
  padding-right: 40px;
@@ -3441,22 +3443,30 @@ select.uk-form-width-xsmall {
3441
3443
  * Input
3442
3444
  */
3443
3445
  .uk-search-medium .uk-search-input {
3444
- height: 40px;
3446
+ height: 55px;
3447
+ padding-right: 12px;
3448
+ padding-left: 12px;
3445
3449
  background: transparent;
3446
3450
  font-size: 1.5rem;
3451
+ border: 1px solid #e5e5e5;
3447
3452
  }
3448
3453
  /* Focus */
3454
+ .uk-search-medium .uk-search-input:focus {
3455
+ background-color: rgba(0, 0, 0, 0);
3456
+ border-color: #1e87f0;
3457
+ }
3449
3458
  /*
3450
3459
  * Icon
3451
3460
  */
3452
3461
  .uk-search-medium .uk-search-icon {
3453
- width: 24px;
3462
+ padding-right: 12px;
3463
+ padding-left: 12px;
3454
3464
  }
3455
3465
  .uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3456
- padding-right: 34px;
3466
+ padding-right: 48px;
3457
3467
  }
3458
3468
  .uk-search-medium:has(.uk-search-icon-flip) .uk-search-input {
3459
- padding-left: 34px;
3469
+ padding-left: 48px;
3460
3470
  }
3461
3471
  /* Large modifier
3462
3472
  ========================================================================== */
@@ -3467,22 +3477,30 @@ select.uk-form-width-xsmall {
3467
3477
  * Input
3468
3478
  */
3469
3479
  .uk-search-large .uk-search-input {
3470
- height: 80px;
3480
+ height: 90px;
3481
+ padding-right: 20px;
3482
+ padding-left: 20px;
3471
3483
  background: transparent;
3472
3484
  font-size: 2.625rem;
3485
+ border: 1px solid #e5e5e5;
3473
3486
  }
3474
3487
  /* Focus */
3488
+ .uk-search-large .uk-search-input:focus {
3489
+ background-color: rgba(0, 0, 0, 0);
3490
+ border-color: #1e87f0;
3491
+ }
3475
3492
  /*
3476
3493
  * Icon
3477
3494
  */
3478
3495
  .uk-search-large .uk-search-icon {
3479
- width: 40px;
3496
+ padding-right: 20px;
3497
+ padding-left: 20px;
3480
3498
  }
3481
3499
  .uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3482
- padding-right: 60px;
3500
+ padding-right: 80px;
3483
3501
  }
3484
3502
  .uk-search-large:has(.uk-search-icon-flip) .uk-search-input {
3485
- padding-left: 60px;
3503
+ padding-left: 80px;
3486
3504
  }
3487
3505
  /* Toggle
3488
3506
  ========================================================================== */
@@ -5894,6 +5912,15 @@ ul.uk-nav-sub {
5894
5912
  }
5895
5913
  /* Pill modifier
5896
5914
  ========================================================================== */
5915
+ /*
5916
+ * Gutter
5917
+ */
5918
+ .uk-subnav-pill {
5919
+ margin-right: -20px;
5920
+ }
5921
+ .uk-subnav-pill > * {
5922
+ padding-right: 20px;
5923
+ }
5897
5924
  .uk-subnav-pill > * > :first-child {
5898
5925
  padding: 5px 10px;
5899
5926
  background: transparent;
@@ -5924,11 +5951,15 @@ ul.uk-nav-sub {
5924
5951
  Component: Breadcrumb
5925
5952
  ========================================================================== */
5926
5953
  /*
5927
- * Reset list
5954
+ * 1. Reset list
5955
+ * 2. Remove space between elements
5928
5956
  */
5929
5957
  .uk-breadcrumb {
5958
+ /* 1 */
5930
5959
  padding: 0;
5931
5960
  list-style: none;
5961
+ /* 2 */
5962
+ font-size: 0;
5932
5963
  }
5933
5964
  /*
5934
5965
  * 1. Doesn't generate any box and replaced by child boxes
@@ -5963,7 +5994,7 @@ ul.uk-nav-sub {
5963
5994
  content: "/";
5964
5995
  display: inline-block;
5965
5996
  /* 1 */
5966
- margin: 0 calc(20px - 4px) 0 20px;
5997
+ margin: 0 20px;
5967
5998
  /* 2 */
5968
5999
  font-size: 0.875rem;
5969
6000
  color: #999;
@@ -6417,6 +6448,7 @@ ul.uk-nav-sub {
6417
6448
  * 7. Prevent cancellation of pointer events while dragging
6418
6449
  */
6419
6450
  .uk-lightbox {
6451
+ --uk-inverse: light;
6420
6452
  /* 1 */
6421
6453
  display: none;
6422
6454
  /* 2 */
@@ -6458,14 +6490,21 @@ ul.uk-nav-sub {
6458
6490
  .uk-lightbox-page {
6459
6491
  overflow: hidden;
6460
6492
  }
6461
- /* Item
6493
+ /* Items
6462
6494
  ========================================================================== */
6495
+ /*
6496
+ * Reset list
6497
+ */
6498
+ .uk-lightbox-items {
6499
+ margin: 0;
6500
+ padding: 0;
6501
+ list-style: none;
6502
+ }
6463
6503
  /*
6464
6504
  * 1. Center child within the viewport
6465
6505
  * 2. Not visible by default
6466
- * 3. Color needed for spinner icon
6467
- * 4. Optimize animation
6468
- * 5. Responsiveness
6506
+ * 3. Optimize animation
6507
+ * 4. Responsiveness
6469
6508
  * Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
6470
6509
  */
6471
6510
  .uk-lightbox-items > * {
@@ -6478,70 +6517,63 @@ ul.uk-nav-sub {
6478
6517
  /* 2 */
6479
6518
  display: none;
6480
6519
  justify-content: center;
6481
- align-items: center;
6520
+ align-items: flex-start;
6482
6521
  /* 3 */
6483
- color: rgba(255, 255, 255, 0.7);
6484
- /* 4 */
6485
6522
  will-change: transform, opacity;
6523
+ /* 4 */
6524
+ overflow: auto;
6525
+ }
6526
+ /* 2 */
6527
+ .uk-lightbox-items > .uk-active {
6528
+ display: flex;
6529
+ }
6530
+ .uk-lightbox-items-fit > * {
6531
+ align-items: center;
6486
6532
  }
6487
- /* 5 */
6488
- .uk-lightbox-items > * > * {
6533
+ /* 4 */
6534
+ .uk-lightbox-items-fit > * > * {
6489
6535
  max-width: 100vw;
6490
6536
  max-height: 100vh;
6491
6537
  }
6492
- .uk-lightbox-items > * > :not(iframe) {
6538
+ .uk-lightbox-items-fit > * > :not(iframe) {
6493
6539
  width: auto;
6494
6540
  height: auto;
6495
6541
  }
6496
- .uk-lightbox-items > .uk-active {
6497
- display: flex;
6542
+ /* Zoom Cursor */
6543
+ .uk-lightbox-items.uk-lightbox-items-fit .uk-lightbox-zoom:hover {
6544
+ cursor: zoom-in;
6498
6545
  }
6499
- /* Toolbar
6500
- ========================================================================== */
6501
- .uk-lightbox-toolbar {
6502
- padding: 10px 10px;
6503
- background: rgba(0, 0, 0, 0.3);
6504
- color: rgba(255, 255, 255, 0.7);
6546
+ .uk-lightbox-items:not(.uk-lightbox-items-fit) .uk-lightbox-zoom:hover {
6547
+ cursor: zoom-out;
6505
6548
  }
6506
- .uk-lightbox-toolbar > * {
6507
- color: rgba(255, 255, 255, 0.7);
6508
- }
6509
- /* Toolbar Icon (Close)
6549
+ /* Navs
6510
6550
  ========================================================================== */
6511
- .uk-lightbox-toolbar-icon {
6512
- padding: 5px;
6513
- color: rgba(255, 255, 255, 0.7);
6551
+ .uk-lightbox-thumbnav-vertical :where(img, video) {
6552
+ max-width: 100px;
6514
6553
  }
6515
- /*
6516
- * Hover
6517
- */
6518
- .uk-lightbox-toolbar-icon:hover {
6519
- color: #fff;
6554
+ .uk-lightbox-thumbnav:not(.uk-lightbox-thumbnav-vertical) :where(img, video) {
6555
+ max-height: 100px;
6520
6556
  }
6521
- /* Button (Slidenav)
6557
+ .uk-lightbox-thumbnav:empty,
6558
+ .uk-lightbox-dotnav:empty {
6559
+ display: none;
6560
+ }
6561
+ /* Caption
6522
6562
  ========================================================================== */
6523
- /*
6524
- * 1. Center icon vertically and horizontally
6525
- */
6526
- .uk-lightbox-button {
6527
- box-sizing: border-box;
6528
- width: 50px;
6529
- height: 50px;
6563
+ .uk-lightbox-caption:empty {
6564
+ display: none;
6565
+ }
6566
+ .uk-lightbox-caption {
6567
+ padding: 10px 10px;
6530
6568
  background: rgba(0, 0, 0, 0.3);
6531
6569
  color: rgba(255, 255, 255, 0.7);
6532
- /* 1 */
6533
- display: inline-flex;
6534
- justify-content: center;
6535
- align-items: center;
6536
6570
  }
6537
- /* Hover */
6538
- .uk-lightbox-button:hover {
6539
- color: #fff;
6571
+ .uk-lightbox-caption > * {
6572
+ color: rgba(255, 255, 255, 0.7);
6540
6573
  }
6541
- /* OnClick */
6542
- /* Caption
6574
+ /* Counter
6543
6575
  ========================================================================== */
6544
- .uk-lightbox-caption:empty {
6576
+ .uk-lightbox-counter:empty {
6545
6577
  display: none;
6546
6578
  }
6547
6579
  /* Iframe
@@ -7773,6 +7805,12 @@ th.uk-text-break,
7773
7805
  td.uk-text-break {
7774
7806
  word-break: break-word;
7775
7807
  }
7808
+ /* Stroke modifiers
7809
+ ========================================================================== */
7810
+ .uk-text-stroke {
7811
+ -webkit-text-stroke: calc(1.4px + 0.002em);
7812
+ -webkit-text-fill-color: transparent;
7813
+ }
7776
7814
  /* ========================================================================
7777
7815
  Component: Column
7778
7816
  ========================================================================== */
@@ -9108,6 +9146,26 @@ iframe[data-uk-cover] {
9108
9146
  .uk-margin-left {
9109
9147
  margin-left: 20px !important;
9110
9148
  }
9149
+ /* XSmall
9150
+ ========================================================================== */
9151
+ .uk-margin-xsmall {
9152
+ margin-bottom: 5px;
9153
+ }
9154
+ * + .uk-margin-xsmall {
9155
+ margin-top: 5px !important;
9156
+ }
9157
+ .uk-margin-xsmall-top {
9158
+ margin-top: 5px !important;
9159
+ }
9160
+ .uk-margin-xsmall-bottom {
9161
+ margin-bottom: 5px !important;
9162
+ }
9163
+ .uk-margin-xsmall-right {
9164
+ margin-right: 5px !important;
9165
+ }
9166
+ .uk-margin-xsmall-left {
9167
+ margin-left: 5px !important;
9168
+ }
9111
9169
  /* Small
9112
9170
  ========================================================================== */
9113
9171
  .uk-margin-small {
@@ -9747,7 +9805,8 @@ iframe[data-uk-cover] {
9747
9805
  * `hidden` attribute also set here to make it stronger
9748
9806
  */
9749
9807
  [hidden],
9750
- .uk-hidden {
9808
+ .uk-hidden,
9809
+ .uk-hidden-empty:empty {
9751
9810
  display: none !important;
9752
9811
  }
9753
9812
  /* Phone landscape and bigger */
@@ -9880,6 +9939,10 @@ iframe[data-uk-cover] {
9880
9939
  .uk-overlay-primary,
9881
9940
  .uk-offcanvas-bar {
9882
9941
  color: rgba(255, 255, 255, 0.7);
9942
+ /* Webkit */
9943
+ /* Firefox */
9944
+ /* Webkit */
9945
+ /* Firefox */
9883
9946
  }
9884
9947
  .uk-light a,
9885
9948
  .uk-light .uk-link,
@@ -10826,6 +10889,97 @@ iframe[data-uk-cover] {
10826
10889
  background-color: rgba(255, 255, 255, 0.2);
10827
10890
  color: rgba(255, 255, 255, 0.7);
10828
10891
  }
10892
+ .uk-light .uk-range::-webkit-slider-runnable-track,
10893
+ .uk-section-primary:not(.uk-preserve-color) .uk-range::-webkit-slider-runnable-track,
10894
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range::-webkit-slider-runnable-track,
10895
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range::-webkit-slider-runnable-track,
10896
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range::-webkit-slider-runnable-track,
10897
+ .uk-card-primary.uk-card-body .uk-range::-webkit-slider-runnable-track,
10898
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range::-webkit-slider-runnable-track,
10899
+ .uk-card-secondary.uk-card-body .uk-range::-webkit-slider-runnable-track,
10900
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range::-webkit-slider-runnable-track,
10901
+ .uk-overlay-primary .uk-range::-webkit-slider-runnable-track,
10902
+ .uk-offcanvas-bar .uk-range::-webkit-slider-runnable-track {
10903
+ background: rgba(242, 242, 242, 0.1);
10904
+ }
10905
+ .uk-light .uk-range:focus::-webkit-slider-runnable-track,
10906
+ .uk-light .uk-range:active::-webkit-slider-runnable-track,
10907
+ .uk-section-primary:not(.uk-preserve-color) .uk-range:focus::-webkit-slider-runnable-track,
10908
+ .uk-section-primary:not(.uk-preserve-color) .uk-range:active::-webkit-slider-runnable-track,
10909
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range:focus::-webkit-slider-runnable-track,
10910
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range:active::-webkit-slider-runnable-track,
10911
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range:focus::-webkit-slider-runnable-track,
10912
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range:active::-webkit-slider-runnable-track,
10913
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range:focus::-webkit-slider-runnable-track,
10914
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range:active::-webkit-slider-runnable-track,
10915
+ .uk-card-primary.uk-card-body .uk-range:focus::-webkit-slider-runnable-track,
10916
+ .uk-card-primary.uk-card-body .uk-range:active::-webkit-slider-runnable-track,
10917
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range:focus::-webkit-slider-runnable-track,
10918
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range:active::-webkit-slider-runnable-track,
10919
+ .uk-card-secondary.uk-card-body .uk-range:focus::-webkit-slider-runnable-track,
10920
+ .uk-card-secondary.uk-card-body .uk-range:active::-webkit-slider-runnable-track,
10921
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range:focus::-webkit-slider-runnable-track,
10922
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range:active::-webkit-slider-runnable-track,
10923
+ .uk-overlay-primary .uk-range:focus::-webkit-slider-runnable-track,
10924
+ .uk-overlay-primary .uk-range:active::-webkit-slider-runnable-track,
10925
+ .uk-offcanvas-bar .uk-range:focus::-webkit-slider-runnable-track,
10926
+ .uk-offcanvas-bar .uk-range:active::-webkit-slider-runnable-track {
10927
+ background: rgba(242, 242, 242, 0.15);
10928
+ }
10929
+ .uk-light .uk-range::-moz-range-track,
10930
+ .uk-section-primary:not(.uk-preserve-color) .uk-range::-moz-range-track,
10931
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range::-moz-range-track,
10932
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range::-moz-range-track,
10933
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range::-moz-range-track,
10934
+ .uk-card-primary.uk-card-body .uk-range::-moz-range-track,
10935
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range::-moz-range-track,
10936
+ .uk-card-secondary.uk-card-body .uk-range::-moz-range-track,
10937
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range::-moz-range-track,
10938
+ .uk-overlay-primary .uk-range::-moz-range-track,
10939
+ .uk-offcanvas-bar .uk-range::-moz-range-track {
10940
+ background: rgba(242, 242, 242, 0.1);
10941
+ }
10942
+ .uk-light .uk-range:focus::-moz-range-track,
10943
+ .uk-section-primary:not(.uk-preserve-color) .uk-range:focus::-moz-range-track,
10944
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range:focus::-moz-range-track,
10945
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range:focus::-moz-range-track,
10946
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range:focus::-moz-range-track,
10947
+ .uk-card-primary.uk-card-body .uk-range:focus::-moz-range-track,
10948
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range:focus::-moz-range-track,
10949
+ .uk-card-secondary.uk-card-body .uk-range:focus::-moz-range-track,
10950
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range:focus::-moz-range-track,
10951
+ .uk-overlay-primary .uk-range:focus::-moz-range-track,
10952
+ .uk-offcanvas-bar .uk-range:focus::-moz-range-track {
10953
+ background: rgba(242, 242, 242, 0.15);
10954
+ }
10955
+ .uk-light .uk-range::-webkit-slider-thumb,
10956
+ .uk-section-primary:not(.uk-preserve-color) .uk-range::-webkit-slider-thumb,
10957
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range::-webkit-slider-thumb,
10958
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range::-webkit-slider-thumb,
10959
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range::-webkit-slider-thumb,
10960
+ .uk-card-primary.uk-card-body .uk-range::-webkit-slider-thumb,
10961
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range::-webkit-slider-thumb,
10962
+ .uk-card-secondary.uk-card-body .uk-range::-webkit-slider-thumb,
10963
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range::-webkit-slider-thumb,
10964
+ .uk-overlay-primary .uk-range::-webkit-slider-thumb,
10965
+ .uk-offcanvas-bar .uk-range::-webkit-slider-thumb {
10966
+ background: #808080;
10967
+ border-color: #e6e6e6;
10968
+ }
10969
+ .uk-light .uk-range::-moz-range-thumb,
10970
+ .uk-section-primary:not(.uk-preserve-color) .uk-range::-moz-range-thumb,
10971
+ .uk-section-secondary:not(.uk-preserve-color) .uk-range::-moz-range-thumb,
10972
+ .uk-tile-primary:not(.uk-preserve-color) .uk-range::-moz-range-thumb,
10973
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-range::-moz-range-thumb,
10974
+ .uk-card-primary.uk-card-body .uk-range::-moz-range-thumb,
10975
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-range::-moz-range-thumb,
10976
+ .uk-card-secondary.uk-card-body .uk-range::-moz-range-thumb,
10977
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-range::-moz-range-thumb,
10978
+ .uk-overlay-primary .uk-range::-moz-range-thumb,
10979
+ .uk-offcanvas-bar .uk-range::-moz-range-thumb {
10980
+ background: #808080;
10981
+ border-color: #e6e6e6;
10982
+ }
10829
10983
  .uk-light .uk-input,
10830
10984
  .uk-light .uk-select,
10831
10985
  .uk-light .uk-textarea,
@@ -11668,6 +11822,20 @@ iframe[data-uk-cover] {
11668
11822
  .uk-overlay-primary .uk-search-medium .uk-search-input,
11669
11823
  .uk-offcanvas-bar .uk-search-medium .uk-search-input {
11670
11824
  background-color: transparent;
11825
+ border-color: rgba(255, 255, 255, 0.2);
11826
+ }
11827
+ .uk-light .uk-search-medium .uk-search-input:focus,
11828
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11829
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11830
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11831
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11832
+ .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input:focus,
11833
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11834
+ .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input:focus,
11835
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11836
+ .uk-overlay-primary .uk-search-medium .uk-search-input:focus,
11837
+ .uk-offcanvas-bar .uk-search-medium .uk-search-input:focus {
11838
+ background-color: rgba(0, 0, 0, 0.05);
11671
11839
  }
11672
11840
  .uk-light .uk-search-large .uk-search-input,
11673
11841
  .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
@@ -11681,6 +11849,20 @@ iframe[data-uk-cover] {
11681
11849
  .uk-overlay-primary .uk-search-large .uk-search-input,
11682
11850
  .uk-offcanvas-bar .uk-search-large .uk-search-input {
11683
11851
  background-color: transparent;
11852
+ border-color: rgba(255, 255, 255, 0.2);
11853
+ }
11854
+ .uk-light .uk-search-large .uk-search-input:focus,
11855
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11856
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11857
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11858
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11859
+ .uk-card-primary.uk-card-body .uk-search-large .uk-search-input:focus,
11860
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11861
+ .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input:focus,
11862
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11863
+ .uk-overlay-primary .uk-search-large .uk-search-input:focus,
11864
+ .uk-offcanvas-bar .uk-search-large .uk-search-input:focus {
11865
+ background-color: rgba(0, 0, 0, 0.05);
11684
11866
  }
11685
11867
  .uk-light .uk-search-toggle,
11686
11868
  .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle,