uikit 3.15.25-dev.ef4c64c1a → 3.16.0

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 (135) hide show
  1. package/CHANGELOG.md +37 -4
  2. package/build/publishDev.js +3 -3
  3. package/build/release.js +3 -3
  4. package/build/util.js +8 -19
  5. package/dist/css/uikit-core-rtl.css +91 -85
  6. package/dist/css/uikit-core-rtl.min.css +1 -1
  7. package/dist/css/uikit-core.css +91 -85
  8. package/dist/css/uikit-core.min.css +1 -1
  9. package/dist/css/uikit-rtl.css +92 -85
  10. package/dist/css/uikit-rtl.min.css +1 -1
  11. package/dist/css/uikit.css +92 -85
  12. package/dist/css/uikit.min.css +1 -1
  13. package/dist/js/components/countdown.js +42 -50
  14. package/dist/js/components/countdown.min.js +1 -1
  15. package/dist/js/components/filter.js +145 -259
  16. package/dist/js/components/filter.min.js +1 -1
  17. package/dist/js/components/lightbox-panel.js +783 -962
  18. package/dist/js/components/lightbox-panel.min.js +1 -1
  19. package/dist/js/components/lightbox.js +812 -1004
  20. package/dist/js/components/lightbox.min.js +1 -1
  21. package/dist/js/components/notification.js +25 -51
  22. package/dist/js/components/notification.min.js +1 -1
  23. package/dist/js/components/parallax.js +120 -240
  24. package/dist/js/components/parallax.min.js +1 -1
  25. package/dist/js/components/slider-parallax.js +145 -251
  26. package/dist/js/components/slider-parallax.min.js +1 -1
  27. package/dist/js/components/slider.js +419 -517
  28. package/dist/js/components/slider.min.js +1 -1
  29. package/dist/js/components/slideshow-parallax.js +145 -251
  30. package/dist/js/components/slideshow-parallax.min.js +1 -1
  31. package/dist/js/components/slideshow.js +412 -452
  32. package/dist/js/components/slideshow.min.js +1 -1
  33. package/dist/js/components/sortable.js +119 -316
  34. package/dist/js/components/sortable.min.js +1 -1
  35. package/dist/js/components/tooltip.js +151 -236
  36. package/dist/js/components/tooltip.min.js +1 -1
  37. package/dist/js/components/upload.js +96 -69
  38. package/dist/js/components/upload.min.js +1 -1
  39. package/dist/js/uikit-core.js +2783 -4306
  40. package/dist/js/uikit-core.min.js +1 -1
  41. package/dist/js/uikit-icons.js +153 -151
  42. package/dist/js/uikit-icons.min.js +1 -1
  43. package/dist/js/uikit.js +3871 -6062
  44. package/dist/js/uikit.min.js +1 -1
  45. package/package.json +62 -65
  46. package/src/images/icons/android-robot.svg +6 -0
  47. package/src/images/icons/android.svg +3 -0
  48. package/src/images/icons/apple.svg +3 -0
  49. package/src/images/icons/microsoft.svg +3 -0
  50. package/src/js/api/state.js +2 -0
  51. package/src/js/components/countdown.js +21 -8
  52. package/src/js/components/filter.js +31 -10
  53. package/src/js/components/lightbox-panel.js +23 -9
  54. package/src/js/components/lightbox.js +20 -2
  55. package/src/js/components/slider.js +16 -1
  56. package/src/js/components/tooltip.js +3 -2
  57. package/src/js/components/upload.js +68 -10
  58. package/src/js/core/accordion.js +60 -5
  59. package/src/js/core/drop.js +15 -11
  60. package/src/js/core/dropnav.js +467 -0
  61. package/src/js/core/icon.js +72 -18
  62. package/src/js/core/index.js +9 -8
  63. package/src/js/core/modal.js +16 -10
  64. package/src/js/core/navbar.js +10 -427
  65. package/src/js/core/scroll.js +1 -8
  66. package/src/js/core/scrollspy-nav.js +1 -2
  67. package/src/js/core/svg.js +1 -16
  68. package/src/js/core/switcher.js +101 -12
  69. package/src/js/core/tab.js +1 -0
  70. package/src/js/core/toggle.js +21 -46
  71. package/src/js/mixin/i18n.js +21 -0
  72. package/src/js/mixin/internal/animate-slide.js +5 -0
  73. package/src/js/mixin/modal.js +15 -48
  74. package/src/js/mixin/parallax.js +1 -1
  75. package/src/js/mixin/slider-autoplay.js +31 -6
  76. package/src/js/mixin/slider-nav.js +188 -29
  77. package/src/js/mixin/slider.js +6 -5
  78. package/src/js/mixin/utils.js +91 -0
  79. package/src/js/util/class.js +1 -1
  80. package/src/js/util/index.js +0 -1
  81. package/src/js/util/lang.js +3 -1
  82. package/src/js/util/options.js +1 -1
  83. package/src/js/util/player.js +2 -3
  84. package/src/js/util/style.js +1 -1
  85. package/src/less/components/_import.less +1 -0
  86. package/src/less/components/drop.less +15 -0
  87. package/src/less/components/dropbar.less +11 -13
  88. package/src/less/components/dropdown.less +61 -26
  89. package/src/less/components/dropnav.less +43 -0
  90. package/src/less/components/nav.less +6 -3
  91. package/src/less/components/navbar.less +18 -43
  92. package/src/less/components/subnav.less +0 -12
  93. package/src/less/theme/dropdown.less +8 -0
  94. package/src/scss/components/_import.scss +1 -0
  95. package/src/scss/components/drop.scss +15 -0
  96. package/src/scss/components/dropbar.scss +11 -13
  97. package/src/scss/components/dropdown.scss +61 -26
  98. package/src/scss/components/dropnav.scss +43 -0
  99. package/src/scss/components/nav.scss +6 -3
  100. package/src/scss/components/navbar.scss +18 -43
  101. package/src/scss/components/subnav.scss +0 -12
  102. package/src/scss/mixins-theme.scss +3 -0
  103. package/src/scss/mixins.scss +3 -0
  104. package/src/scss/theme/dropdown.scss +8 -0
  105. package/src/scss/variables-theme.scss +10 -6
  106. package/src/scss/variables.scss +10 -6
  107. package/tests/accordion.html +12 -12
  108. package/tests/close.html +44 -0
  109. package/tests/drop.html +1 -1
  110. package/tests/dropbar.html +5 -5
  111. package/tests/dropdown.html +2 -2
  112. package/tests/dropnav.html +844 -0
  113. package/tests/filter.html +42 -42
  114. package/tests/form.html +18 -18
  115. package/tests/icon.html +16 -0
  116. package/tests/image.html +4 -4
  117. package/tests/index.html +41 -37
  118. package/tests/lightbox.html +42 -0
  119. package/tests/marker.html +44 -0
  120. package/tests/modal.html +4 -4
  121. package/tests/navbar.html +48 -571
  122. package/tests/offcanvas.html +8 -8
  123. package/tests/pagination.html +50 -6
  124. package/tests/scroll.html +1 -1
  125. package/tests/search.html +8 -8
  126. package/tests/slider.html +58 -16
  127. package/tests/slideshow.html +59 -17
  128. package/tests/subnav.html +63 -57
  129. package/tests/switcher.html +56 -44
  130. package/tests/tab.html +27 -26
  131. package/tests/thumbnav.html +6 -6
  132. package/tests/totop.html +44 -0
  133. package/tests/upload.html +38 -10
  134. package/src/js/util/ajax.js +0 -74
  135. /package/src/images/components/{subnav-parent-icon.svg → drop-parent-icon.svg} +0 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,42 @@
1
+ ## 3.16.0 (February 23, 2023) (Feature Accessibility)
2
+
3
+ ### Added
4
+
5
+ - Add WAI-ARIA roles, states and properties to interactive JavaScript components
6
+ - Add WAI-ARIA keyboard interaction pattern to interactive JavaScript components
7
+ - Add language internationalization (i18n) for interactive JavaScript components
8
+ - Add `i18n` option to corresponding JavaScript components
9
+ - Add Dropnav component
10
+ - Add parent icon to Drop component
11
+ - Add support for YouTube Shorts URLs in Lightbox component
12
+ - Add Android, Android Robot, Apple and Microsoft icons
13
+ - Add `uikit:init` event triggered on document before components initialize
14
+ - Add `countdownstart`, `countdownstop` and `countdownend` events to Countdown component
15
+
16
+ ### Changed
17
+
18
+ - IMPORTANT: Remove `.uk-dropdown-close` from Dropdown component. Use `uk-drop-close` instead
19
+ - IMPORTANT: Remove `.uk-dropdown-grid` from Dropdown component. Use `uk-drop-grid` instead
20
+ - IMPORTANT: Remove `.uk-navbar-dropdown-close` from Navbar component. Use `uk-drop-close` instead
21
+ - IMPORTANT: Remove `.uk-navbar-dropdown-grid` from Navbar component. Use `uk-drop-grid` instead
22
+ - IMPORTANT: Remove error message options in Upload component, use `i18n` option
23
+ - IMPORTANT: Rename `labels` default property and option on `UIkit.modal` to `i18n`
24
+ - Move functional CSS from Dropdown, Dropbar and Navbar component to Drop component
25
+
26
+ ### Removed
27
+
28
+ - Remove `ajax()` util function, use native `fetch` instead
29
+ - Remove `getImage()` util function
30
+
1
31
  # Changelog
2
32
 
33
+ ## 3.15.25 (February 23, 2023)
34
+
35
+ ### Fixed
36
+
37
+ - Fix Dropbar partially closing before opening when switching between Navbar items
38
+ - Fix Parallax component updating too late during slide animation in Filter component
39
+
3
40
  ## 3.15.24 (February 9, 2023)
4
41
 
5
42
  ### Fixed
@@ -9,10 +46,6 @@
9
46
 
10
47
  ## 3.15.23 (February 1, 2023)
11
48
 
12
- ### Added
13
-
14
- - Add subnav parent icon to Subnav component
15
-
16
49
  ### Fixed
17
50
 
18
51
  - Fix prevent background scrolling in Safari
@@ -12,13 +12,13 @@ if (args.f || args.force || (await isDevCommit())) {
12
12
  const hash = (await run('git rev-parse --short HEAD')).trim();
13
13
 
14
14
  // set version of package.json
15
- await run(`npm version ${version}-dev.${hash} --git-tag-version false`);
15
+ await run(`pnpm version ${version}-dev.${hash} --no-git-tag-version`);
16
16
 
17
17
  // create dist files
18
- await run('yarn compile && yarn compile-rtl && yarn build-scss');
18
+ await run('pnpm compile && pnpm compile-rtl && pnpm build-scss');
19
19
 
20
20
  // publish to dev tag
21
- await run('npm publish --tag dev');
21
+ await run('pnpm publish --tag dev --no-git-checks');
22
22
  }
23
23
 
24
24
  async function isDevCommit() {
package/build/release.js CHANGED
@@ -23,9 +23,9 @@ await Promise.all([
23
23
  ),
24
24
  ]);
25
25
 
26
- await run('yarn compile');
27
- await run('yarn compile-rtl');
28
- await run('yarn build-scss');
26
+ await run('pnpm compile');
27
+ await run('pnpm compile-rtl');
28
+ await run('pnpm build-scss');
29
29
 
30
30
  await createPackage(version);
31
31
 
package/build/util.js CHANGED
@@ -9,12 +9,11 @@ import CleanCSS from 'clean-css';
9
9
  import html from 'rollup-plugin-html';
10
10
  import alias from '@rollup/plugin-alias';
11
11
  import modify from 'rollup-plugin-modify';
12
- import { babel } from '@rollup/plugin-babel';
13
12
  import replace from '@rollup/plugin-replace';
14
13
  import { basename, dirname, join } from 'path';
15
14
  import { exec as execImport } from 'child_process';
16
15
  import { rollup, watch as rollupWatch } from 'rollup';
17
- import { minify as esbuildMinify } from 'rollup-plugin-esbuild';
16
+ import { default as esbuild, minify as esbuildMinify } from 'rollup-plugin-esbuild';
18
17
 
19
18
  const limit = pLimit(Number(process.env.cpus || 2));
20
19
 
@@ -110,23 +109,13 @@ export async function compile(file, dest, { external, globals, name, aliases, re
110
109
  },
111
110
  },
112
111
  }),
113
- !debug &&
114
- babel({
115
- presets: [
116
- [
117
- '@babel/preset-env',
118
- {
119
- loose: true,
120
- targets: { safari: '12' },
121
- bugfixes: true,
122
- },
123
- ],
124
- ],
125
- extensions: ['.js'],
126
- babelHelpers: 'bundled',
127
- retainLines: true,
128
- compact: false,
129
- }),
112
+
113
+ esbuild({
114
+ target: 'safari12',
115
+ sourceMap: !!debug,
116
+ minify: false,
117
+ }),
118
+
130
119
  !debug &&
131
120
  modify({
132
121
  find: /(>)\n\s+|\n\s+(<)/,
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.15.25-dev.ef4c64c1a | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */
1
+ /*! UIkit 3.16.0 | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -3251,33 +3251,34 @@ select.uk-form-width-xsmall {
3251
3251
  .uk-drop-stack .uk-drop-grid > * {
3252
3252
  width: 100% !important;
3253
3253
  }
3254
+ /* Parent icon
3255
+ ========================================================================== */
3256
+ .uk-drop-parent-icon {
3257
+ margin-right: 0.25em;
3258
+ transition: transform 0.3s ease-out;
3259
+ }
3260
+ [aria-expanded="true"] > .uk-drop-parent-icon {
3261
+ transform: rotateX(180deg);
3262
+ }
3254
3263
  /* ========================================================================
3255
3264
  Component: Dropbar
3256
3265
  ========================================================================== */
3257
3266
  /*
3258
- * 1. Hide by default
3259
- * 2. Set position
3260
- * 3. Style
3267
+ * Adopts `uk-drop`
3268
+ * 1. Reset drop
3269
+ * 2. Style
3261
3270
  */
3262
3271
  .uk-dropbar {
3263
3272
  --uk-position-offset: 0;
3264
3273
  --uk-position-shift-offset: 0;
3265
3274
  --uk-position-viewport-offset: 0;
3266
3275
  /* 1 */
3267
- display: none;
3276
+ width: auto;
3268
3277
  /* 2 */
3269
- position: absolute;
3270
- z-index: 1020;
3271
- /* 3 */
3272
- box-sizing: border-box;
3273
3278
  padding: 15px 15px 15px 15px;
3274
3279
  background: #f8f8f8;
3275
3280
  color: #666;
3276
3281
  }
3277
- /* Show */
3278
- .uk-dropbar.uk-open {
3279
- display: block;
3280
- }
3281
3282
  /*
3282
3283
  * Remove margin from the last-child
3283
3284
  */
@@ -3306,6 +3307,24 @@ select.uk-form-width-xsmall {
3306
3307
  }
3307
3308
  /* Direction modifier
3308
3309
  ========================================================================== */
3310
+ /* ========================================================================
3311
+ Component: Dropnav
3312
+ ========================================================================== */
3313
+ /*
3314
+ * 1. Position
3315
+ * 2. Reset dropbar
3316
+ * 3. Width
3317
+ */
3318
+ .uk-dropnav-dropbar {
3319
+ /* 1 */
3320
+ position: absolute;
3321
+ z-index: 980;
3322
+ /* 2 */
3323
+ padding: 0;
3324
+ /* 3 */
3325
+ right: 0;
3326
+ left: 0;
3327
+ }
3309
3328
  /* ========================================================================
3310
3329
  Component: Modal
3311
3330
  ========================================================================== */
@@ -4622,9 +4641,10 @@ ul.uk-nav-sub {
4622
4641
  ========================================================================== */
4623
4642
  .uk-nav-parent-icon {
4624
4643
  margin-right: auto;
4644
+ transition: transform 0.3s ease-out;
4625
4645
  }
4626
- .uk-nav > li > a[aria-expanded="true"] .uk-nav-parent-icon {
4627
- transform: rotate(-180deg);
4646
+ .uk-nav > li.uk-open > a .uk-nav-parent-icon {
4647
+ transform: rotateX(180deg);
4628
4648
  }
4629
4649
  /* Header
4630
4650
  ========================================================================== */
@@ -4833,7 +4853,7 @@ ul.uk-nav-sub {
4833
4853
  }
4834
4854
  /* Parent icon */
4835
4855
  .uk-nav-center .uk-nav-parent-icon {
4836
- margin-right: 4px;
4856
+ margin-right: 0.25em;
4837
4857
  }
4838
4858
  /* Style modifier
4839
4859
  ========================================================================== */
@@ -4994,9 +5014,10 @@ ul.uk-nav-sub {
4994
5014
  ========================================================================== */
4995
5015
  .uk-navbar-parent-icon {
4996
5016
  margin-right: 4px;
5017
+ transition: transform 0.3s ease-out;
4997
5018
  }
4998
5019
  .uk-navbar-nav > li > a[aria-expanded="true"] .uk-navbar-parent-icon {
4999
- transform: rotate(-180deg);
5020
+ transform: rotateX(180deg);
5000
5021
  }
5001
5022
  /* Item
5002
5023
  ========================================================================== */
@@ -5046,33 +5067,21 @@ ul.uk-nav-sub {
5046
5067
  /* Dropdown
5047
5068
  ========================================================================== */
5048
5069
  /*
5049
- * Adopts `uk-dropdown`
5050
- * 1. Hide by default
5051
- * 2. Set position
5052
- * 3. Set a default width
5053
- * 4. Style
5070
+ * Adopts `uk-drop`
5071
+ * 1. Set a default width
5072
+ * 2. Style
5054
5073
  */
5055
5074
  .uk-navbar-dropdown {
5056
- /* 1 */
5057
- display: none;
5058
- /* 2 */
5059
- position: absolute;
5060
- z-index: 1020;
5061
5075
  --uk-position-offset: 0;
5062
5076
  --uk-position-shift-offset: 0;
5063
5077
  --uk-position-viewport-offset: 15px;
5064
- /* 3 */
5065
- box-sizing: border-box;
5078
+ /* 1 */
5066
5079
  width: 200px;
5067
- /* 4 */
5080
+ /* 2 */
5068
5081
  padding: 15px;
5069
5082
  background: #f8f8f8;
5070
5083
  color: #666;
5071
5084
  }
5072
- /* Show */
5073
- .uk-navbar-dropdown.uk-open {
5074
- display: block;
5075
- }
5076
5085
  /*
5077
5086
  * Remove margin from the last-child
5078
5087
  */
@@ -5084,33 +5093,29 @@ ul.uk-nav-sub {
5084
5093
  * Adopts `uk-grid`
5085
5094
  */
5086
5095
  /* Gutter Horizontal */
5087
- .uk-navbar-dropdown-grid {
5096
+ .uk-navbar-dropdown .uk-drop-grid {
5088
5097
  margin-right: -30px;
5089
5098
  }
5090
- .uk-navbar-dropdown-grid > * {
5099
+ .uk-navbar-dropdown .uk-drop-grid > * {
5091
5100
  padding-right: 30px;
5092
5101
  }
5093
5102
  /* Gutter Vertical */
5094
- .uk-navbar-dropdown-grid > .uk-grid-margin {
5103
+ .uk-navbar-dropdown .uk-drop-grid > .uk-grid-margin {
5095
5104
  margin-top: 30px;
5096
5105
  }
5097
- /* Stack */
5098
- .uk-navbar-dropdown-stack .uk-navbar-dropdown-grid > * {
5099
- width: 100% !important;
5100
- }
5101
5106
  /*
5102
5107
  * Width modifier
5103
5108
  */
5104
- .uk-navbar-dropdown-width-2:not(.uk-navbar-dropdown-stack) {
5109
+ .uk-navbar-dropdown-width-2:not(.uk-drop-stack) {
5105
5110
  width: 400px;
5106
5111
  }
5107
- .uk-navbar-dropdown-width-3:not(.uk-navbar-dropdown-stack) {
5112
+ .uk-navbar-dropdown-width-3:not(.uk-drop-stack) {
5108
5113
  width: 600px;
5109
5114
  }
5110
- .uk-navbar-dropdown-width-4:not(.uk-navbar-dropdown-stack) {
5115
+ .uk-navbar-dropdown-width-4:not(.uk-drop-stack) {
5111
5116
  width: 800px;
5112
5117
  }
5113
- .uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
5118
+ .uk-navbar-dropdown-width-5:not(.uk-drop-stack) {
5114
5119
  width: 1000px;
5115
5120
  }
5116
5121
  /*
@@ -5204,18 +5209,8 @@ ul.uk-nav-sub {
5204
5209
  /* Dropbar
5205
5210
  ========================================================================== */
5206
5211
  /*
5207
- * 1. Reset dropbar
5208
- * 2. Width
5212
+ * Adopts `uk-dropnav-dropbar`
5209
5213
  */
5210
- .uk-navbar-dropbar {
5211
- /* 1 */
5212
- display: block !important;
5213
- z-index: 980;
5214
- padding: 0;
5215
- /* 2 */
5216
- right: 0;
5217
- left: 0;
5218
- }
5219
5214
  /* ========================================================================
5220
5215
  Component: Subnav
5221
5216
  ========================================================================== */
@@ -5277,14 +5272,6 @@ ul.uk-nav-sub {
5277
5272
  .uk-subnav > .uk-active > a {
5278
5273
  color: #333;
5279
5274
  }
5280
- /* Parent icon modifier
5281
- ========================================================================== */
5282
- .uk-subnav-parent-icon {
5283
- margin-right: 4px;
5284
- }
5285
- .uk-subnav > li > a[aria-expanded="true"] .uk-subnav-parent-icon {
5286
- transform: rotate(-180deg);
5287
- }
5288
5275
  /* Divider modifier
5289
5276
  ========================================================================== */
5290
5277
  /*
@@ -5787,31 +5774,23 @@ ul.uk-nav-sub {
5787
5774
  Component: Dropdown
5788
5775
  ========================================================================== */
5789
5776
  /*
5790
- * 1. Hide by default
5791
- * 2. Set position
5792
- * 3. Set a default width
5793
- * 4. Style
5777
+ * Adopts `uk-drop`
5778
+ * 1. Reset drop and let text expand the width instead of wrapping
5779
+ * 2. Set a default width
5780
+ * 3. Style
5794
5781
  */
5795
5782
  .uk-dropdown {
5796
- /* 1 */
5797
- display: none;
5798
- /* 2 */
5799
- position: absolute;
5800
- z-index: 1020;
5801
5783
  --uk-position-offset: 10px;
5802
5784
  --uk-position-viewport-offset: 15px;
5803
- /* 3 */
5804
- box-sizing: border-box;
5785
+ /* 1 */
5786
+ width: auto;
5787
+ /* 2 */
5805
5788
  min-width: 200px;
5806
- /* 4 */
5789
+ /* 3 */
5807
5790
  padding: 15px;
5808
5791
  background: #f8f8f8;
5809
5792
  color: #666;
5810
5793
  }
5811
- /* Show */
5812
- .uk-dropdown.uk-open {
5813
- display: block;
5814
- }
5815
5794
  /*
5816
5795
  * Remove margin from the last-child
5817
5796
  */
@@ -5823,6 +5802,38 @@ ul.uk-nav-sub {
5823
5802
  .uk-dropdown-large {
5824
5803
  padding: 40px;
5825
5804
  }
5805
+ /* Dropbar modifier
5806
+ ========================================================================== */
5807
+ /*
5808
+ * 1. Reset dropdown width to prevent to early shifting
5809
+ * 2. Reset style
5810
+ * 3. Padding
5811
+ */
5812
+ .uk-dropdown-dropbar {
5813
+ /* 1 */
5814
+ width: auto;
5815
+ /* 2 */
5816
+ background: transparent;
5817
+ /* 3 */
5818
+ padding: 15px 0 15px 0;
5819
+ --uk-position-viewport-offset: 15px;
5820
+ }
5821
+ /* Phone landscape and bigger */
5822
+ @media (min-width: 640px) {
5823
+ .uk-dropdown-dropbar {
5824
+ --uk-position-viewport-offset: 30px;
5825
+ }
5826
+ }
5827
+ /* Tablet landscape and bigger */
5828
+ @media (min-width: 960px) {
5829
+ .uk-dropdown-dropbar {
5830
+ --uk-position-viewport-offset: 40px;
5831
+ }
5832
+ }
5833
+ .uk-dropdown-dropbar-large {
5834
+ padding-top: 40px;
5835
+ padding-bottom: 40px;
5836
+ }
5826
5837
  /* Nav
5827
5838
  * Adopts `uk-nav`
5828
5839
  ========================================================================== */
@@ -5865,11 +5876,6 @@ ul.uk-nav-sub {
5865
5876
  .uk-dropdown-nav .uk-nav-sub li.uk-active > a {
5866
5877
  color: #666;
5867
5878
  }
5868
- /* Grid modifiers
5869
- ========================================================================== */
5870
- .uk-dropdown-stack .uk-dropdown-grid > * {
5871
- width: 100% !important;
5872
- }
5873
5879
  /* ========================================================================
5874
5880
  Component: Lightbox
5875
5881
  ========================================================================== */