uikit 3.13.11-dev.98491b3f4 → 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 +4 -1
- package/dist/css/uikit-core-rtl.css +6 -3
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +6 -3
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +6 -3
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +6 -3
- 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 +1 -1
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +1 -1
- 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 +1 -1
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +1 -1
- 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 +1 -1
- 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 +1 -1
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +1 -1
- 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 +42 -18
- 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 +42 -18
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/core/sticky.js +36 -12
- package/src/less/components/sticky.less +8 -3
- package/src/scss/components/sticky.scss +8 -3
- package/tests/parallax.html +4 -4
- package/tests/sticky-navbar.html +6 -6
- package/tests/sticky-parallax.html +8 -8
- package/tests/sticky.html +149 -74
package/dist/css/uikit-rtl.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.13.11-dev.
|
|
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
|
========================================================================== */
|
|
@@ -3923,17 +3923,20 @@ select.uk-form-width-xsmall {
|
|
|
3923
3923
|
Component: Sticky
|
|
3924
3924
|
========================================================================== */
|
|
3925
3925
|
/*
|
|
3926
|
-
* 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
|
|
3927
3928
|
*/
|
|
3928
3929
|
.uk-sticky {
|
|
3930
|
+
/* 1 */
|
|
3929
3931
|
position: relative;
|
|
3932
|
+
/* 2 */
|
|
3933
|
+
box-sizing: border-box;
|
|
3930
3934
|
}
|
|
3931
3935
|
/*
|
|
3932
3936
|
* 1. Force new layer to resolve frame rate issues on devices with lower frame rates
|
|
3933
3937
|
*/
|
|
3934
3938
|
.uk-sticky-fixed {
|
|
3935
3939
|
z-index: 980;
|
|
3936
|
-
box-sizing: border-box;
|
|
3937
3940
|
margin: 0 !important;
|
|
3938
3941
|
/* 1 */
|
|
3939
3942
|
-webkit-backface-visibility: hidden;
|