uikit 3.19.2-dev.8313ce565 → 3.19.3-dev.16ee14962
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 +5 -1
- package/build/util.js +37 -2
- package/dist/css/uikit-core-rtl.css +13 -3
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +13 -3
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +13 -3
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +13 -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 +8 -6
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +36 -36
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +8 -6
- package/dist/js/uikit.min.js +1 -1
- package/package.json +11 -11
- package/src/js/core/sticky.js +5 -4
- package/src/less/components/position.less +12 -2
- package/src/scss/components/position.scss +12 -2
- package/tests/position.html +41 -0
package/dist/css/uikit.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.19.
|
|
1
|
+
/*! UIkit 3.19.3-dev.16ee14962 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -9463,7 +9463,8 @@ iframe[data-uk-cover] {
|
|
|
9463
9463
|
}
|
|
9464
9464
|
/* Vertical */
|
|
9465
9465
|
[class*="uk-position-center-left"],
|
|
9466
|
-
[class*="uk-position-center-right"]
|
|
9466
|
+
[class*="uk-position-center-right"],
|
|
9467
|
+
.uk-position-center-vertical {
|
|
9467
9468
|
top: calc(50% - var(--uk-position-margin-offset));
|
|
9468
9469
|
--uk-position-translate-y: -50%;
|
|
9469
9470
|
transform: translate(0, var(--uk-position-translate-y));
|
|
@@ -9474,6 +9475,10 @@ iframe[data-uk-cover] {
|
|
|
9474
9475
|
.uk-position-center-right {
|
|
9475
9476
|
right: 0;
|
|
9476
9477
|
}
|
|
9478
|
+
.uk-position-center-vertical {
|
|
9479
|
+
left: 0;
|
|
9480
|
+
right: 0;
|
|
9481
|
+
}
|
|
9477
9482
|
.uk-position-center-left-out {
|
|
9478
9483
|
right: 100%;
|
|
9479
9484
|
width: max-content;
|
|
@@ -9484,7 +9489,8 @@ iframe[data-uk-cover] {
|
|
|
9484
9489
|
}
|
|
9485
9490
|
/* Horizontal */
|
|
9486
9491
|
.uk-position-top-center,
|
|
9487
|
-
.uk-position-bottom-center
|
|
9492
|
+
.uk-position-bottom-center,
|
|
9493
|
+
.uk-position-center-horizontal {
|
|
9488
9494
|
left: calc(50% - var(--uk-position-margin-offset));
|
|
9489
9495
|
--uk-position-translate-x: -50%;
|
|
9490
9496
|
transform: translate(var(--uk-position-translate-x), 0);
|
|
@@ -9497,6 +9503,10 @@ iframe[data-uk-cover] {
|
|
|
9497
9503
|
.uk-position-bottom-center {
|
|
9498
9504
|
bottom: 0;
|
|
9499
9505
|
}
|
|
9506
|
+
.uk-position-center-horizontal {
|
|
9507
|
+
top: 0;
|
|
9508
|
+
bottom: 0;
|
|
9509
|
+
}
|
|
9500
9510
|
/*
|
|
9501
9511
|
* Cover
|
|
9502
9512
|
*/
|