uikit 3.19.2-dev.8313ce565 → 3.19.2
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/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 +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 +10 -10
- package/src/less/components/position.less +12 -2
- package/src/scss/components/position.scss +12 -2
- package/tests/position.html +41 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.19.2
|
|
1
|
+
/*! UIkit 3.19.2 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -9046,7 +9046,8 @@ iframe[data-uk-cover] {
|
|
|
9046
9046
|
}
|
|
9047
9047
|
/* Vertical */
|
|
9048
9048
|
[class*="uk-position-center-right"],
|
|
9049
|
-
[class*="uk-position-center-left"]
|
|
9049
|
+
[class*="uk-position-center-left"],
|
|
9050
|
+
.uk-position-center-vertical {
|
|
9050
9051
|
top: calc(50% - var(--uk-position-margin-offset));
|
|
9051
9052
|
--uk-position-translate-y: -50%;
|
|
9052
9053
|
transform: translate(0, var(--uk-position-translate-y));
|
|
@@ -9057,6 +9058,10 @@ iframe[data-uk-cover] {
|
|
|
9057
9058
|
.uk-position-center-left {
|
|
9058
9059
|
left: 0;
|
|
9059
9060
|
}
|
|
9061
|
+
.uk-position-center-vertical {
|
|
9062
|
+
right: 0;
|
|
9063
|
+
left: 0;
|
|
9064
|
+
}
|
|
9060
9065
|
.uk-position-center-right-out {
|
|
9061
9066
|
left: 100%;
|
|
9062
9067
|
width: max-content;
|
|
@@ -9067,7 +9072,8 @@ iframe[data-uk-cover] {
|
|
|
9067
9072
|
}
|
|
9068
9073
|
/* Horizontal */
|
|
9069
9074
|
.uk-position-top-center,
|
|
9070
|
-
.uk-position-bottom-center
|
|
9075
|
+
.uk-position-bottom-center,
|
|
9076
|
+
.uk-position-center-horizontal {
|
|
9071
9077
|
right: calc(50% - var(--uk-position-margin-offset));
|
|
9072
9078
|
--uk-position-translate-x: 50%;
|
|
9073
9079
|
transform: translate(var(--uk-position-translate-x), 0);
|
|
@@ -9080,6 +9086,10 @@ iframe[data-uk-cover] {
|
|
|
9080
9086
|
.uk-position-bottom-center {
|
|
9081
9087
|
bottom: 0;
|
|
9082
9088
|
}
|
|
9089
|
+
.uk-position-center-horizontal {
|
|
9090
|
+
top: 0;
|
|
9091
|
+
bottom: 0;
|
|
9092
|
+
}
|
|
9083
9093
|
/*
|
|
9084
9094
|
* Cover
|
|
9085
9095
|
*/
|