uikit 3.13.10 → 3.13.11-dev.eb080f280
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.
- package/CHANGELOG.md +29 -1
- package/dist/css/uikit-core-rtl.css +46 -8
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +46 -8
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +46 -6
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +46 -6
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +1 -1
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +1 -1
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +7 -3
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +7 -3
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +18 -11
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +18 -11
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +1 -1
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +18 -11
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +1 -1
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +2 -2
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +62 -30
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +349 -253
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +392 -259
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/components/sortable.js +2 -3
- package/src/js/components/tooltip.js +38 -3
- package/src/js/core/drop.js +20 -10
- package/src/js/core/navbar.js +18 -6
- package/src/js/core/scrollspy-nav.js +4 -9
- package/src/js/core/sticky.js +55 -21
- package/src/js/mixin/media.js +12 -9
- package/src/js/mixin/modal.js +6 -2
- package/src/js/mixin/parallax.js +5 -1
- package/src/js/mixin/position.js +24 -24
- package/src/js/uikit-core.js +0 -4
- package/src/js/util/lang.js +0 -4
- package/src/js/util/position.js +180 -125
- package/src/js/util/viewport.js +42 -22
- package/src/less/components/drop.less +0 -1
- package/src/less/components/dropdown.less +11 -1
- package/src/less/components/icon.less +3 -0
- package/src/less/components/nav.less +22 -0
- package/src/less/components/navbar.less +26 -2
- package/src/less/components/search.less +2 -0
- package/src/less/components/sticky.less +8 -3
- package/src/less/theme/dropdown.less +4 -0
- package/src/less/theme/nav.less +6 -0
- package/src/less/theme/navbar.less +4 -0
- package/src/less/theme/search.less +6 -0
- package/src/scss/components/drop.scss +0 -1
- package/src/scss/components/dropdown.scss +11 -1
- package/src/scss/components/icon.scss +3 -0
- package/src/scss/components/nav.scss +22 -0
- package/src/scss/components/navbar.scss +26 -2
- package/src/scss/components/search.scss +2 -0
- package/src/scss/components/sticky.scss +8 -3
- package/src/scss/mixins-theme.scss +5 -0
- package/src/scss/mixins.scss +5 -0
- package/src/scss/theme/dropdown.scss +4 -0
- package/src/scss/theme/nav.scss +6 -0
- package/src/scss/theme/navbar.scss +4 -0
- package/src/scss/theme/search.scss +6 -0
- package/src/scss/variables-theme.scss +5 -1
- package/src/scss/variables.scss +5 -1
- package/tests/animation.html +216 -214
- package/tests/dropdown.html +16 -2
- package/tests/nav.html +27 -0
- package/tests/navbar.html +55 -4
- package/tests/parallax.html +4 -4
- package/tests/position.html +38 -39
- package/tests/sticky-navbar.html +6 -6
- package/tests/sticky-parallax.html +23 -7
- package/tests/sticky.html +300 -49
- package/src/js/core/core.js +0 -25
package/dist/css/uikit.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.13.
|
|
1
|
+
/*! UIkit 3.13.11-dev.eb080f280 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -1164,9 +1164,12 @@ button.uk-icon:not(:disabled) {
|
|
|
1164
1164
|
========================================================================== */
|
|
1165
1165
|
/*
|
|
1166
1166
|
* Link
|
|
1167
|
+
* 1. Allow text within link
|
|
1167
1168
|
*/
|
|
1168
1169
|
.uk-icon-link {
|
|
1169
1170
|
color: #999;
|
|
1171
|
+
/* 1 */
|
|
1172
|
+
text-decoration: none !important;
|
|
1170
1173
|
}
|
|
1171
1174
|
.uk-icon-link:hover {
|
|
1172
1175
|
color: #666;
|
|
@@ -3492,7 +3495,6 @@ select.uk-form-width-xsmall {
|
|
|
3492
3495
|
/* 3 */
|
|
3493
3496
|
box-sizing: border-box;
|
|
3494
3497
|
width: 300px;
|
|
3495
|
-
max-width: 100vw;
|
|
3496
3498
|
}
|
|
3497
3499
|
/* Show */
|
|
3498
3500
|
.uk-drop.uk-open {
|
|
@@ -3537,7 +3539,6 @@ select.uk-form-width-xsmall {
|
|
|
3537
3539
|
* Adopts `uk-nav`
|
|
3538
3540
|
========================================================================== */
|
|
3539
3541
|
.uk-dropdown-nav {
|
|
3540
|
-
white-space: nowrap;
|
|
3541
3542
|
font-size: 0.875rem;
|
|
3542
3543
|
}
|
|
3543
3544
|
/*
|
|
@@ -3551,6 +3552,12 @@ select.uk-form-width-xsmall {
|
|
|
3551
3552
|
.uk-dropdown-nav > li.uk-active > a {
|
|
3552
3553
|
color: #666;
|
|
3553
3554
|
}
|
|
3555
|
+
/*
|
|
3556
|
+
* Subtitle
|
|
3557
|
+
*/
|
|
3558
|
+
.uk-dropdown-nav .uk-nav-subtitle {
|
|
3559
|
+
font-size: 12px;
|
|
3560
|
+
}
|
|
3554
3561
|
/*
|
|
3555
3562
|
* Header
|
|
3556
3563
|
*/
|
|
@@ -3916,17 +3923,20 @@ select.uk-form-width-xsmall {
|
|
|
3916
3923
|
Component: Sticky
|
|
3917
3924
|
========================================================================== */
|
|
3918
3925
|
/*
|
|
3919
|
-
* Create position context so it's t the same like when fixed.
|
|
3926
|
+
* 1. Create position context so it's t the same like when fixed.
|
|
3927
|
+
* 2. More robust if padding and border are used and the sticky height is transitioned
|
|
3920
3928
|
*/
|
|
3921
3929
|
.uk-sticky {
|
|
3930
|
+
/* 1 */
|
|
3922
3931
|
position: relative;
|
|
3932
|
+
/* 2 */
|
|
3933
|
+
box-sizing: border-box;
|
|
3923
3934
|
}
|
|
3924
3935
|
/*
|
|
3925
3936
|
* 1. Force new layer to resolve frame rate issues on devices with lower frame rates
|
|
3926
3937
|
*/
|
|
3927
3938
|
.uk-sticky-fixed {
|
|
3928
3939
|
z-index: 980;
|
|
3929
|
-
box-sizing: border-box;
|
|
3930
3940
|
margin: 0 !important;
|
|
3931
3941
|
/* 1 */
|
|
3932
3942
|
-webkit-backface-visibility: hidden;
|
|
@@ -4919,6 +4929,12 @@ ul.uk-nav-sub {
|
|
|
4919
4929
|
.uk-nav-default > li.uk-active > a {
|
|
4920
4930
|
color: #333;
|
|
4921
4931
|
}
|
|
4932
|
+
/*
|
|
4933
|
+
* Subtitle
|
|
4934
|
+
*/
|
|
4935
|
+
.uk-nav-default .uk-nav-subtitle {
|
|
4936
|
+
font-size: 12px;
|
|
4937
|
+
}
|
|
4922
4938
|
/*
|
|
4923
4939
|
* Header
|
|
4924
4940
|
*/
|
|
@@ -4961,6 +4977,12 @@ ul.uk-nav-sub {
|
|
|
4961
4977
|
.uk-nav-primary > li.uk-active > a {
|
|
4962
4978
|
color: #333;
|
|
4963
4979
|
}
|
|
4980
|
+
/*
|
|
4981
|
+
* Subtitle
|
|
4982
|
+
*/
|
|
4983
|
+
.uk-nav-primary .uk-nav-subtitle {
|
|
4984
|
+
font-size: 1.25rem;
|
|
4985
|
+
}
|
|
4964
4986
|
/*
|
|
4965
4987
|
* Header
|
|
4966
4988
|
*/
|
|
@@ -5194,6 +5216,16 @@ ul.uk-nav-sub {
|
|
|
5194
5216
|
.uk-navbar-subtitle {
|
|
5195
5217
|
font-size: 0.875rem;
|
|
5196
5218
|
}
|
|
5219
|
+
/* Justify modifier
|
|
5220
|
+
========================================================================== */
|
|
5221
|
+
.uk-navbar-justify .uk-navbar-left,
|
|
5222
|
+
.uk-navbar-justify .uk-navbar-right,
|
|
5223
|
+
.uk-navbar-justify .uk-navbar-nav,
|
|
5224
|
+
.uk-navbar-justify .uk-navbar-nav > li,
|
|
5225
|
+
.uk-navbar-justify .uk-navbar-item,
|
|
5226
|
+
.uk-navbar-justify .uk-navbar-toggle {
|
|
5227
|
+
flex-grow: 1;
|
|
5228
|
+
}
|
|
5197
5229
|
/* Style modifiers
|
|
5198
5230
|
========================================================================== */
|
|
5199
5231
|
/* Dropdown
|
|
@@ -5271,7 +5303,9 @@ ul.uk-nav-sub {
|
|
|
5271
5303
|
--uk-position-offset: 0px;
|
|
5272
5304
|
/* 2 */
|
|
5273
5305
|
margin-bottom: 0px;
|
|
5274
|
-
|
|
5306
|
+
/* 3 */
|
|
5307
|
+
padding-left: 15px;
|
|
5308
|
+
padding-right: 15px;
|
|
5275
5309
|
box-shadow: none;
|
|
5276
5310
|
}
|
|
5277
5311
|
/* Dropdown Nav
|
|
@@ -5294,6 +5328,12 @@ ul.uk-nav-sub {
|
|
|
5294
5328
|
.uk-navbar-dropdown-nav > li.uk-active > a {
|
|
5295
5329
|
color: #333;
|
|
5296
5330
|
}
|
|
5331
|
+
/*
|
|
5332
|
+
* Subtitle
|
|
5333
|
+
*/
|
|
5334
|
+
.uk-navbar-dropdown-nav .uk-nav-subtitle {
|
|
5335
|
+
font-size: 12px;
|
|
5336
|
+
}
|
|
5297
5337
|
/*
|
|
5298
5338
|
* Header
|
|
5299
5339
|
*/
|