uikit 3.17.0 → 3.17.1-dev.85059147d
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 +8 -0
- package/dist/css/uikit-core-rtl.css +45 -15
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +45 -15
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +45 -15
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +45 -15
- 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 +5 -5
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +5 -5
- 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 +5 -5
- 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 -27
- 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 +12 -31
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/core/cover.js +1 -21
- package/src/js/core/sticky.js +6 -7
- package/src/js/mixin/parallax.js +4 -7
- package/src/less/components/base.less +2 -1
- package/src/less/components/cover.less +21 -6
- package/src/less/components/pagination.less +13 -6
- package/src/scss/components/cover.scss +21 -6
- package/src/scss/components/pagination.scss +13 -6
- package/src/scss/mixins-theme.scss +2 -1
- package/src/scss/mixins.scss +2 -1
package/dist/css/uikit.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.17.
|
|
1
|
+
/*! UIkit 3.17.1-dev.85059147d | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -5746,16 +5746,19 @@ ul.uk-nav-sub {
|
|
|
5746
5746
|
========================================================================== */
|
|
5747
5747
|
/*
|
|
5748
5748
|
* 1. Allow items to wrap into the next line
|
|
5749
|
-
* 2.
|
|
5750
|
-
* 3.
|
|
5749
|
+
* 2. Center items vertically if they have a different height
|
|
5750
|
+
* 3. Gutter
|
|
5751
|
+
* 4. Reset list
|
|
5751
5752
|
*/
|
|
5752
5753
|
.uk-pagination {
|
|
5753
5754
|
display: flex;
|
|
5754
5755
|
/* 1 */
|
|
5755
5756
|
flex-wrap: wrap;
|
|
5756
5757
|
/* 2 */
|
|
5757
|
-
|
|
5758
|
+
align-items: center;
|
|
5758
5759
|
/* 3 */
|
|
5760
|
+
margin-left: 0;
|
|
5761
|
+
/* 4 */
|
|
5759
5762
|
padding: 0;
|
|
5760
5763
|
list-style: none;
|
|
5761
5764
|
}
|
|
@@ -5775,13 +5778,17 @@ ul.uk-nav-sub {
|
|
|
5775
5778
|
/* Items
|
|
5776
5779
|
========================================================================== */
|
|
5777
5780
|
/*
|
|
5778
|
-
* 1.
|
|
5779
|
-
* 2.
|
|
5781
|
+
* 1. Center content vertically, e.g. an icon
|
|
5782
|
+
* 2. Imitate white space gap when using flexbox
|
|
5783
|
+
* 3. Style
|
|
5780
5784
|
*/
|
|
5781
5785
|
.uk-pagination > * > * {
|
|
5782
5786
|
/* 1 */
|
|
5783
|
-
display:
|
|
5787
|
+
display: flex;
|
|
5788
|
+
align-items: center;
|
|
5784
5789
|
/* 2 */
|
|
5790
|
+
column-gap: 0.25em;
|
|
5791
|
+
/* 3 */
|
|
5785
5792
|
padding: 5px 10px;
|
|
5786
5793
|
color: #999;
|
|
5787
5794
|
transition: color 0.1s ease-in-out;
|
|
@@ -7698,7 +7705,22 @@ td.uk-text-break {
|
|
|
7698
7705
|
Component: Cover
|
|
7699
7706
|
========================================================================== */
|
|
7700
7707
|
/*
|
|
7701
|
-
* Works with
|
|
7708
|
+
* Works with embedded content
|
|
7709
|
+
*/
|
|
7710
|
+
img[uk-cover],
|
|
7711
|
+
video[uk-cover],
|
|
7712
|
+
img[data-uk-cover],
|
|
7713
|
+
video[data-uk-cover] {
|
|
7714
|
+
left: 0;
|
|
7715
|
+
top: 0;
|
|
7716
|
+
position: absolute;
|
|
7717
|
+
width: 100%;
|
|
7718
|
+
height: 100%;
|
|
7719
|
+
object-fit: cover;
|
|
7720
|
+
object-position: center;
|
|
7721
|
+
}
|
|
7722
|
+
/*
|
|
7723
|
+
* Works with iframes
|
|
7702
7724
|
* 1. Use attribute to apply transform instantly. Needed if transform is transitioned.
|
|
7703
7725
|
* 2. Reset responsiveness for embedded content
|
|
7704
7726
|
* 3. Center object
|
|
@@ -7706,8 +7728,9 @@ td.uk-text-break {
|
|
|
7706
7728
|
* is absolute positioned or if the container has a height
|
|
7707
7729
|
*/
|
|
7708
7730
|
/* 1 */
|
|
7709
|
-
[uk-cover],
|
|
7710
|
-
[data-uk-cover] {
|
|
7731
|
+
iframe[uk-cover],
|
|
7732
|
+
iframe[data-uk-cover] {
|
|
7733
|
+
pointer-events: none;
|
|
7711
7734
|
/* 2 */
|
|
7712
7735
|
max-width: none;
|
|
7713
7736
|
/* 3 */
|
|
@@ -7718,10 +7741,6 @@ td.uk-text-break {
|
|
|
7718
7741
|
--uk-position-translate-y: -50%;
|
|
7719
7742
|
transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y));
|
|
7720
7743
|
}
|
|
7721
|
-
iframe[uk-cover],
|
|
7722
|
-
iframe[data-uk-cover] {
|
|
7723
|
-
pointer-events: none;
|
|
7724
|
-
}
|
|
7725
7744
|
/* Container
|
|
7726
7745
|
========================================================================== */
|
|
7727
7746
|
/*
|
|
@@ -9634,6 +9653,7 @@ iframe[data-uk-cover] {
|
|
|
9634
9653
|
.uk-light .uk-heading-large,
|
|
9635
9654
|
.uk-light .uk-heading-xlarge,
|
|
9636
9655
|
.uk-light .uk-heading-2xlarge,
|
|
9656
|
+
.uk-light .uk-heading-3xlarge,
|
|
9637
9657
|
.uk-section-primary:not(.uk-preserve-color) h1,
|
|
9638
9658
|
.uk-section-primary:not(.uk-preserve-color) .uk-h1,
|
|
9639
9659
|
.uk-section-primary:not(.uk-preserve-color) h2,
|
|
@@ -9651,6 +9671,7 @@ iframe[data-uk-cover] {
|
|
|
9651
9671
|
.uk-section-primary:not(.uk-preserve-color) .uk-heading-large,
|
|
9652
9672
|
.uk-section-primary:not(.uk-preserve-color) .uk-heading-xlarge,
|
|
9653
9673
|
.uk-section-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
|
|
9674
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-heading-3xlarge,
|
|
9654
9675
|
.uk-section-secondary:not(.uk-preserve-color) h1,
|
|
9655
9676
|
.uk-section-secondary:not(.uk-preserve-color) .uk-h1,
|
|
9656
9677
|
.uk-section-secondary:not(.uk-preserve-color) h2,
|
|
@@ -9668,6 +9689,7 @@ iframe[data-uk-cover] {
|
|
|
9668
9689
|
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-large,
|
|
9669
9690
|
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
|
|
9670
9691
|
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
|
|
9692
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,
|
|
9671
9693
|
.uk-tile-primary:not(.uk-preserve-color) h1,
|
|
9672
9694
|
.uk-tile-primary:not(.uk-preserve-color) .uk-h1,
|
|
9673
9695
|
.uk-tile-primary:not(.uk-preserve-color) h2,
|
|
@@ -9685,6 +9707,7 @@ iframe[data-uk-cover] {
|
|
|
9685
9707
|
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-large,
|
|
9686
9708
|
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-xlarge,
|
|
9687
9709
|
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
|
|
9710
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-3xlarge,
|
|
9688
9711
|
.uk-tile-secondary:not(.uk-preserve-color) h1,
|
|
9689
9712
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-h1,
|
|
9690
9713
|
.uk-tile-secondary:not(.uk-preserve-color) h2,
|
|
@@ -9702,6 +9725,7 @@ iframe[data-uk-cover] {
|
|
|
9702
9725
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-large,
|
|
9703
9726
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
|
|
9704
9727
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
|
|
9728
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,
|
|
9705
9729
|
.uk-card-primary.uk-card-body h1,
|
|
9706
9730
|
.uk-card-primary.uk-card-body .uk-h1,
|
|
9707
9731
|
.uk-card-primary.uk-card-body h2,
|
|
@@ -9719,6 +9743,7 @@ iframe[data-uk-cover] {
|
|
|
9719
9743
|
.uk-card-primary.uk-card-body .uk-heading-large,
|
|
9720
9744
|
.uk-card-primary.uk-card-body .uk-heading-xlarge,
|
|
9721
9745
|
.uk-card-primary.uk-card-body .uk-heading-2xlarge,
|
|
9746
|
+
.uk-card-primary.uk-card-body .uk-heading-3xlarge,
|
|
9722
9747
|
.uk-card-primary > :not([class*='uk-card-media']) h1,
|
|
9723
9748
|
.uk-card-primary > :not([class*='uk-card-media']) .uk-h1,
|
|
9724
9749
|
.uk-card-primary > :not([class*='uk-card-media']) h2,
|
|
@@ -9736,6 +9761,7 @@ iframe[data-uk-cover] {
|
|
|
9736
9761
|
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-large,
|
|
9737
9762
|
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-xlarge,
|
|
9738
9763
|
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-2xlarge,
|
|
9764
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-3xlarge,
|
|
9739
9765
|
.uk-card-secondary.uk-card-body h1,
|
|
9740
9766
|
.uk-card-secondary.uk-card-body .uk-h1,
|
|
9741
9767
|
.uk-card-secondary.uk-card-body h2,
|
|
@@ -9753,6 +9779,7 @@ iframe[data-uk-cover] {
|
|
|
9753
9779
|
.uk-card-secondary.uk-card-body .uk-heading-large,
|
|
9754
9780
|
.uk-card-secondary.uk-card-body .uk-heading-xlarge,
|
|
9755
9781
|
.uk-card-secondary.uk-card-body .uk-heading-2xlarge,
|
|
9782
|
+
.uk-card-secondary.uk-card-body .uk-heading-3xlarge,
|
|
9756
9783
|
.uk-card-secondary > :not([class*='uk-card-media']) h1,
|
|
9757
9784
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h1,
|
|
9758
9785
|
.uk-card-secondary > :not([class*='uk-card-media']) h2,
|
|
@@ -9770,6 +9797,7 @@ iframe[data-uk-cover] {
|
|
|
9770
9797
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-large,
|
|
9771
9798
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-xlarge,
|
|
9772
9799
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-2xlarge,
|
|
9800
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-3xlarge,
|
|
9773
9801
|
.uk-overlay-primary h1,
|
|
9774
9802
|
.uk-overlay-primary .uk-h1,
|
|
9775
9803
|
.uk-overlay-primary h2,
|
|
@@ -9787,6 +9815,7 @@ iframe[data-uk-cover] {
|
|
|
9787
9815
|
.uk-overlay-primary .uk-heading-large,
|
|
9788
9816
|
.uk-overlay-primary .uk-heading-xlarge,
|
|
9789
9817
|
.uk-overlay-primary .uk-heading-2xlarge,
|
|
9818
|
+
.uk-overlay-primary .uk-heading-3xlarge,
|
|
9790
9819
|
.uk-offcanvas-bar h1,
|
|
9791
9820
|
.uk-offcanvas-bar .uk-h1,
|
|
9792
9821
|
.uk-offcanvas-bar h2,
|
|
@@ -9803,7 +9832,8 @@ iframe[data-uk-cover] {
|
|
|
9803
9832
|
.uk-offcanvas-bar .uk-heading-medium,
|
|
9804
9833
|
.uk-offcanvas-bar .uk-heading-large,
|
|
9805
9834
|
.uk-offcanvas-bar .uk-heading-xlarge,
|
|
9806
|
-
.uk-offcanvas-bar .uk-heading-2xlarge
|
|
9835
|
+
.uk-offcanvas-bar .uk-heading-2xlarge,
|
|
9836
|
+
.uk-offcanvas-bar .uk-heading-3xlarge {
|
|
9807
9837
|
color: #fff;
|
|
9808
9838
|
}
|
|
9809
9839
|
.uk-light blockquote,
|