uikit 3.15.15 → 3.15.16-dev.67856a2ee
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 +9 -3
- package/dist/css/uikit-core-rtl.css +4 -1
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +4 -1
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +4 -1
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +4 -1
- 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 +2 -2
- 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 +2 -2
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/less/components/offcanvas.less +6 -1
- package/src/scss/components/offcanvas.scss +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## WIP
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Fix for elements with `position: sticky` to keep their position when Offcanvas is opened
|
|
8
|
+
|
|
3
9
|
## 3.15.15 (December 1, 2022)
|
|
4
10
|
|
|
5
11
|
### Changed
|
|
@@ -762,7 +768,7 @@
|
|
|
762
768
|
|
|
763
769
|
### Fixed
|
|
764
770
|
|
|
765
|
-
- Fix showing/
|
|
771
|
+
- Fix showing/hiding Modal/Offcanvas programmatically
|
|
766
772
|
|
|
767
773
|
## 3.6.14 (January 26, 2021)
|
|
768
774
|
|
|
@@ -1948,7 +1954,7 @@
|
|
|
1948
1954
|
- Fix Slideshow combined with Height Viewport component
|
|
1949
1955
|
- Fix Height Match component's `row` matching
|
|
1950
1956
|
- Fix height calculation in Height Match component
|
|
1951
|
-
- Fix regression with Video component not
|
|
1957
|
+
- Fix regression with Video component not autoplay/pause
|
|
1952
1958
|
|
|
1953
1959
|
## 3.0.0 beta 42 (April 5, 2018)
|
|
1954
1960
|
|
|
@@ -2273,7 +2279,7 @@
|
|
|
2273
2279
|
### Fixed
|
|
2274
2280
|
|
|
2275
2281
|
- Remove stacking context for `uk-inline`
|
|
2276
|
-
- Prevent scrolling in
|
|
2282
|
+
- Prevent scrolling in Lightbox with one slide only
|
|
2277
2283
|
|
|
2278
2284
|
## 3.0.0 beta 26 (July 20, 2017)
|
|
2279
2285
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.15.
|
|
1
|
+
/*! UIkit 3.15.16-dev.67856a2ee | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -3959,10 +3959,13 @@ select.uk-form-width-xsmall {
|
|
|
3959
3959
|
/*
|
|
3960
3960
|
* Prevent horizontal scrollbar when the content is slide-out
|
|
3961
3961
|
* Has to be on the `html` element too to make it work on the `body`
|
|
3962
|
+
* 1. `clip` is needed for `position: sticky` elements to keep their position
|
|
3962
3963
|
*/
|
|
3963
3964
|
.uk-offcanvas-page,
|
|
3964
3965
|
.uk-offcanvas-container {
|
|
3965
3966
|
overflow-x: hidden;
|
|
3967
|
+
/* 1 */
|
|
3968
|
+
overflow-x: clip;
|
|
3966
3969
|
}
|
|
3967
3970
|
/* Container
|
|
3968
3971
|
========================================================================== */
|