uikit 3.13.2-dev.13a8eb3ff → 3.13.2-dev.aa6a91433

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 (59) hide show
  1. package/.eslintrc.json +9 -0
  2. package/CHANGELOG.md +6 -0
  3. package/dist/css/uikit-core-rtl.css +12 -63
  4. package/dist/css/uikit-core-rtl.min.css +1 -1
  5. package/dist/css/uikit-core.css +12 -63
  6. package/dist/css/uikit-core.min.css +1 -1
  7. package/dist/css/uikit-rtl.css +12 -63
  8. package/dist/css/uikit-rtl.min.css +1 -1
  9. package/dist/css/uikit.css +12 -63
  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 +1 -1
  14. package/dist/js/components/filter.min.js +1 -1
  15. package/dist/js/components/lightbox-panel.js +1 -1
  16. package/dist/js/components/lightbox-panel.min.js +1 -1
  17. package/dist/js/components/lightbox.js +1 -1
  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 +1 -1
  22. package/dist/js/components/parallax.min.js +1 -1
  23. package/dist/js/components/slider-parallax.js +1 -1
  24. package/dist/js/components/slider-parallax.min.js +1 -1
  25. package/dist/js/components/slider.js +1 -1
  26. package/dist/js/components/slider.min.js +1 -1
  27. package/dist/js/components/slideshow-parallax.js +1 -1
  28. package/dist/js/components/slideshow-parallax.min.js +1 -1
  29. package/dist/js/components/slideshow.js +1 -1
  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 +9 -15
  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 +21 -36
  38. package/dist/js/uikit-core.min.js +1 -1
  39. package/dist/js/uikit-icons.js +1 -1
  40. package/dist/js/uikit-icons.min.js +1 -1
  41. package/dist/js/uikit.js +25 -41
  42. package/dist/js/uikit.min.js +1 -1
  43. package/package.json +1 -1
  44. package/src/js/components/tooltip.js +2 -3
  45. package/src/js/core/drop.js +7 -10
  46. package/src/js/core/sticky.js +1 -1
  47. package/src/js/mixin/media.js +4 -4
  48. package/src/js/mixin/position.js +4 -9
  49. package/src/js/util/style.js +8 -15
  50. package/src/less/components/drop.less +1 -10
  51. package/src/less/components/dropdown.less +1 -10
  52. package/src/less/components/navbar.less +9 -11
  53. package/src/less/components/tooltip.less +1 -10
  54. package/src/scss/components/drop.scss +1 -10
  55. package/src/scss/components/dropdown.scss +1 -10
  56. package/src/scss/components/navbar.scss +9 -11
  57. package/src/scss/components/tooltip.scss +1 -10
  58. package/src/scss/variables-theme.scss +1 -0
  59. package/src/scss/variables.scss +1 -0
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.13.2-dev.13a8eb3ff | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.13.2-dev.aa6a91433 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -3488,6 +3488,7 @@ select.uk-form-width-xsmall {
3488
3488
  /* 2 */
3489
3489
  position: absolute;
3490
3490
  z-index: 1020;
3491
+ --uk-position-margin-offset: 20px;
3491
3492
  /* 3 */
3492
3493
  box-sizing: border-box;
3493
3494
  width: 300px;
@@ -3496,21 +3497,6 @@ select.uk-form-width-xsmall {
3496
3497
  .uk-drop.uk-open {
3497
3498
  display: block;
3498
3499
  }
3499
- /* Direction / Alignment modifiers
3500
- ========================================================================== */
3501
- /* Direction */
3502
- [class*='uk-drop-top'] {
3503
- margin-top: -20px;
3504
- }
3505
- [class*='uk-drop-bottom'] {
3506
- margin-top: 20px;
3507
- }
3508
- [class*='uk-drop-right'] {
3509
- margin-right: -20px;
3510
- }
3511
- [class*='uk-drop-left'] {
3512
- margin-right: 20px;
3513
- }
3514
3500
  /* Grid modifiers
3515
3501
  ========================================================================== */
3516
3502
  .uk-drop-stack .uk-drop-grid > * {
@@ -3531,6 +3517,7 @@ select.uk-form-width-xsmall {
3531
3517
  /* 2 */
3532
3518
  position: absolute;
3533
3519
  z-index: 1020;
3520
+ --uk-position-margin-offset: 10px;
3534
3521
  /* 3 */
3535
3522
  box-sizing: border-box;
3536
3523
  min-width: 200px;
@@ -3584,21 +3571,6 @@ select.uk-form-width-xsmall {
3584
3571
  .uk-dropdown-nav .uk-nav-sub li.uk-active > a {
3585
3572
  color: #666;
3586
3573
  }
3587
- /* Direction / Alignment modifiers
3588
- ========================================================================== */
3589
- /* Direction */
3590
- [class*='uk-dropdown-top'] {
3591
- margin-top: -10px;
3592
- }
3593
- [class*='uk-dropdown-bottom'] {
3594
- margin-top: 10px;
3595
- }
3596
- [class*='uk-dropdown-right'] {
3597
- margin-right: -10px;
3598
- }
3599
- [class*='uk-dropdown-left'] {
3600
- margin-right: 10px;
3601
- }
3602
3574
  /* Grid modifiers
3603
3575
  ========================================================================== */
3604
3576
  .uk-dropdown-stack .uk-dropdown-grid > * {
@@ -4369,6 +4341,7 @@ select.uk-form-width-xsmall {
4369
4341
  /* 2 */
4370
4342
  position: absolute;
4371
4343
  z-index: 1030;
4344
+ --uk-position-margin-offset: 10px;
4372
4345
  /* 3 */
4373
4346
  top: 0;
4374
4347
  /* 4 */
@@ -4385,21 +4358,6 @@ select.uk-form-width-xsmall {
4385
4358
  .uk-tooltip.uk-active {
4386
4359
  display: block;
4387
4360
  }
4388
- /* Direction / Alignment modifiers
4389
- ========================================================================== */
4390
- /* Direction */
4391
- [class*='uk-tooltip-top'] {
4392
- margin-top: -10px;
4393
- }
4394
- [class*='uk-tooltip-bottom'] {
4395
- margin-top: 10px;
4396
- }
4397
- [class*='uk-tooltip-right'] {
4398
- margin-right: -10px;
4399
- }
4400
- [class*='uk-tooltip-left'] {
4401
- margin-right: 10px;
4402
- }
4403
4361
  /* ========================================================================
4404
4362
  Component: Sortable
4405
4363
  ========================================================================== */
@@ -5256,6 +5214,7 @@ ul.uk-nav-sub {
5256
5214
  /* 2 */
5257
5215
  position: absolute;
5258
5216
  z-index: 1020;
5217
+ --uk-position-margin-offset: 15px;
5259
5218
  /* 3 */
5260
5219
  box-sizing: border-box;
5261
5220
  width: 200px;
@@ -5269,22 +5228,6 @@ ul.uk-nav-sub {
5269
5228
  .uk-navbar-dropdown.uk-open {
5270
5229
  display: block;
5271
5230
  }
5272
- /*
5273
- * Direction / Alignment modifiers
5274
- */
5275
- /* Direction */
5276
- [class*='uk-navbar-dropdown-top'] {
5277
- margin-top: -15px;
5278
- }
5279
- [class*='uk-navbar-dropdown-bottom'] {
5280
- margin-top: 15px;
5281
- }
5282
- [class*='uk-navbar-dropdown-right'] {
5283
- margin-right: -15px;
5284
- }
5285
- [class*='uk-navbar-dropdown-left'] {
5286
- margin-right: 15px;
5287
- }
5288
5231
  /*
5289
5232
  * Grid
5290
5233
  * Adopts `uk-grid`
@@ -5321,10 +5264,16 @@ ul.uk-nav-sub {
5321
5264
  }
5322
5265
  /*
5323
5266
  * Dropbar modifier
5267
+ * 1. Set position
5268
+ * 2. Bottom padding for dropbar
5269
+ * 3. Horizontal padding
5324
5270
  */
5325
5271
  .uk-navbar-dropdown-dropbar {
5326
- margin-top: 0;
5272
+ /* 1 */
5273
+ --uk-position-margin-offset: 0;
5274
+ /* 2 */
5327
5275
  margin-bottom: 0;
5276
+ padding: 15px;
5328
5277
  box-shadow: none;
5329
5278
  }
5330
5279
  /* Dropdown Nav