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/CHANGELOG.md
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
|
========================================================================== */
|
|
@@ -5416,16 +5416,19 @@ ul.uk-nav-sub {
|
|
|
5416
5416
|
========================================================================== */
|
|
5417
5417
|
/*
|
|
5418
5418
|
* 1. Allow items to wrap into the next line
|
|
5419
|
-
* 2.
|
|
5420
|
-
* 3.
|
|
5419
|
+
* 2. Center items vertically if they have a different height
|
|
5420
|
+
* 3. Gutter
|
|
5421
|
+
* 4. Reset list
|
|
5421
5422
|
*/
|
|
5422
5423
|
.uk-pagination {
|
|
5423
5424
|
display: flex;
|
|
5424
5425
|
/* 1 */
|
|
5425
5426
|
flex-wrap: wrap;
|
|
5426
5427
|
/* 2 */
|
|
5427
|
-
|
|
5428
|
+
align-items: center;
|
|
5428
5429
|
/* 3 */
|
|
5430
|
+
margin-right: 0;
|
|
5431
|
+
/* 4 */
|
|
5429
5432
|
padding: 0;
|
|
5430
5433
|
list-style: none;
|
|
5431
5434
|
}
|
|
@@ -5445,13 +5448,17 @@ ul.uk-nav-sub {
|
|
|
5445
5448
|
/* Items
|
|
5446
5449
|
========================================================================== */
|
|
5447
5450
|
/*
|
|
5448
|
-
* 1.
|
|
5449
|
-
* 2.
|
|
5451
|
+
* 1. Center content vertically, e.g. an icon
|
|
5452
|
+
* 2. Imitate white space gap when using flexbox
|
|
5453
|
+
* 3. Style
|
|
5450
5454
|
*/
|
|
5451
5455
|
.uk-pagination > * > * {
|
|
5452
5456
|
/* 1 */
|
|
5453
|
-
display:
|
|
5457
|
+
display: flex;
|
|
5458
|
+
align-items: center;
|
|
5454
5459
|
/* 2 */
|
|
5460
|
+
column-gap: 0.25em;
|
|
5461
|
+
/* 3 */
|
|
5455
5462
|
padding: 5px 10px;
|
|
5456
5463
|
color: #999;
|
|
5457
5464
|
}
|
|
@@ -7282,7 +7289,22 @@ td.uk-text-break {
|
|
|
7282
7289
|
Component: Cover
|
|
7283
7290
|
========================================================================== */
|
|
7284
7291
|
/*
|
|
7285
|
-
* Works with
|
|
7292
|
+
* Works with embedded content
|
|
7293
|
+
*/
|
|
7294
|
+
img[uk-cover],
|
|
7295
|
+
video[uk-cover],
|
|
7296
|
+
img[data-uk-cover],
|
|
7297
|
+
video[data-uk-cover] {
|
|
7298
|
+
right: 0;
|
|
7299
|
+
top: 0;
|
|
7300
|
+
position: absolute;
|
|
7301
|
+
width: 100%;
|
|
7302
|
+
height: 100%;
|
|
7303
|
+
object-fit: cover;
|
|
7304
|
+
object-position: center;
|
|
7305
|
+
}
|
|
7306
|
+
/*
|
|
7307
|
+
* Works with iframes
|
|
7286
7308
|
* 1. Use attribute to apply transform instantly. Needed if transform is transitioned.
|
|
7287
7309
|
* 2. Reset responsiveness for embedded content
|
|
7288
7310
|
* 3. Center object
|
|
@@ -7290,8 +7312,9 @@ td.uk-text-break {
|
|
|
7290
7312
|
* is absolute positioned or if the container has a height
|
|
7291
7313
|
*/
|
|
7292
7314
|
/* 1 */
|
|
7293
|
-
[uk-cover],
|
|
7294
|
-
[data-uk-cover] {
|
|
7315
|
+
iframe[uk-cover],
|
|
7316
|
+
iframe[data-uk-cover] {
|
|
7317
|
+
pointer-events: none;
|
|
7295
7318
|
/* 2 */
|
|
7296
7319
|
max-width: none;
|
|
7297
7320
|
/* 3 */
|
|
@@ -7302,10 +7325,6 @@ td.uk-text-break {
|
|
|
7302
7325
|
--uk-position-translate-y: -50%;
|
|
7303
7326
|
transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y));
|
|
7304
7327
|
}
|
|
7305
|
-
iframe[uk-cover],
|
|
7306
|
-
iframe[data-uk-cover] {
|
|
7307
|
-
pointer-events: none;
|
|
7308
|
-
}
|
|
7309
7328
|
/* Container
|
|
7310
7329
|
========================================================================== */
|
|
7311
7330
|
/*
|
|
@@ -9216,6 +9235,7 @@ iframe[data-uk-cover] {
|
|
|
9216
9235
|
.uk-light .uk-heading-large,
|
|
9217
9236
|
.uk-light .uk-heading-xlarge,
|
|
9218
9237
|
.uk-light .uk-heading-2xlarge,
|
|
9238
|
+
.uk-light .uk-heading-3xlarge,
|
|
9219
9239
|
.uk-section-primary:not(.uk-preserve-color) h1,
|
|
9220
9240
|
.uk-section-primary:not(.uk-preserve-color) .uk-h1,
|
|
9221
9241
|
.uk-section-primary:not(.uk-preserve-color) h2,
|
|
@@ -9233,6 +9253,7 @@ iframe[data-uk-cover] {
|
|
|
9233
9253
|
.uk-section-primary:not(.uk-preserve-color) .uk-heading-large,
|
|
9234
9254
|
.uk-section-primary:not(.uk-preserve-color) .uk-heading-xlarge,
|
|
9235
9255
|
.uk-section-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
|
|
9256
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-heading-3xlarge,
|
|
9236
9257
|
.uk-section-secondary:not(.uk-preserve-color) h1,
|
|
9237
9258
|
.uk-section-secondary:not(.uk-preserve-color) .uk-h1,
|
|
9238
9259
|
.uk-section-secondary:not(.uk-preserve-color) h2,
|
|
@@ -9250,6 +9271,7 @@ iframe[data-uk-cover] {
|
|
|
9250
9271
|
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-large,
|
|
9251
9272
|
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
|
|
9252
9273
|
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
|
|
9274
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,
|
|
9253
9275
|
.uk-tile-primary:not(.uk-preserve-color) h1,
|
|
9254
9276
|
.uk-tile-primary:not(.uk-preserve-color) .uk-h1,
|
|
9255
9277
|
.uk-tile-primary:not(.uk-preserve-color) h2,
|
|
@@ -9267,6 +9289,7 @@ iframe[data-uk-cover] {
|
|
|
9267
9289
|
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-large,
|
|
9268
9290
|
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-xlarge,
|
|
9269
9291
|
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
|
|
9292
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-3xlarge,
|
|
9270
9293
|
.uk-tile-secondary:not(.uk-preserve-color) h1,
|
|
9271
9294
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-h1,
|
|
9272
9295
|
.uk-tile-secondary:not(.uk-preserve-color) h2,
|
|
@@ -9284,6 +9307,7 @@ iframe[data-uk-cover] {
|
|
|
9284
9307
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-large,
|
|
9285
9308
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
|
|
9286
9309
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
|
|
9310
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,
|
|
9287
9311
|
.uk-card-primary.uk-card-body h1,
|
|
9288
9312
|
.uk-card-primary.uk-card-body .uk-h1,
|
|
9289
9313
|
.uk-card-primary.uk-card-body h2,
|
|
@@ -9301,6 +9325,7 @@ iframe[data-uk-cover] {
|
|
|
9301
9325
|
.uk-card-primary.uk-card-body .uk-heading-large,
|
|
9302
9326
|
.uk-card-primary.uk-card-body .uk-heading-xlarge,
|
|
9303
9327
|
.uk-card-primary.uk-card-body .uk-heading-2xlarge,
|
|
9328
|
+
.uk-card-primary.uk-card-body .uk-heading-3xlarge,
|
|
9304
9329
|
.uk-card-primary > :not([class*='uk-card-media']) h1,
|
|
9305
9330
|
.uk-card-primary > :not([class*='uk-card-media']) .uk-h1,
|
|
9306
9331
|
.uk-card-primary > :not([class*='uk-card-media']) h2,
|
|
@@ -9318,6 +9343,7 @@ iframe[data-uk-cover] {
|
|
|
9318
9343
|
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-large,
|
|
9319
9344
|
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-xlarge,
|
|
9320
9345
|
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-2xlarge,
|
|
9346
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-3xlarge,
|
|
9321
9347
|
.uk-card-secondary.uk-card-body h1,
|
|
9322
9348
|
.uk-card-secondary.uk-card-body .uk-h1,
|
|
9323
9349
|
.uk-card-secondary.uk-card-body h2,
|
|
@@ -9335,6 +9361,7 @@ iframe[data-uk-cover] {
|
|
|
9335
9361
|
.uk-card-secondary.uk-card-body .uk-heading-large,
|
|
9336
9362
|
.uk-card-secondary.uk-card-body .uk-heading-xlarge,
|
|
9337
9363
|
.uk-card-secondary.uk-card-body .uk-heading-2xlarge,
|
|
9364
|
+
.uk-card-secondary.uk-card-body .uk-heading-3xlarge,
|
|
9338
9365
|
.uk-card-secondary > :not([class*='uk-card-media']) h1,
|
|
9339
9366
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h1,
|
|
9340
9367
|
.uk-card-secondary > :not([class*='uk-card-media']) h2,
|
|
@@ -9352,6 +9379,7 @@ iframe[data-uk-cover] {
|
|
|
9352
9379
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-large,
|
|
9353
9380
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-xlarge,
|
|
9354
9381
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-2xlarge,
|
|
9382
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-3xlarge,
|
|
9355
9383
|
.uk-overlay-primary h1,
|
|
9356
9384
|
.uk-overlay-primary .uk-h1,
|
|
9357
9385
|
.uk-overlay-primary h2,
|
|
@@ -9369,6 +9397,7 @@ iframe[data-uk-cover] {
|
|
|
9369
9397
|
.uk-overlay-primary .uk-heading-large,
|
|
9370
9398
|
.uk-overlay-primary .uk-heading-xlarge,
|
|
9371
9399
|
.uk-overlay-primary .uk-heading-2xlarge,
|
|
9400
|
+
.uk-overlay-primary .uk-heading-3xlarge,
|
|
9372
9401
|
.uk-offcanvas-bar h1,
|
|
9373
9402
|
.uk-offcanvas-bar .uk-h1,
|
|
9374
9403
|
.uk-offcanvas-bar h2,
|
|
@@ -9385,7 +9414,8 @@ iframe[data-uk-cover] {
|
|
|
9385
9414
|
.uk-offcanvas-bar .uk-heading-medium,
|
|
9386
9415
|
.uk-offcanvas-bar .uk-heading-large,
|
|
9387
9416
|
.uk-offcanvas-bar .uk-heading-xlarge,
|
|
9388
|
-
.uk-offcanvas-bar .uk-heading-2xlarge
|
|
9417
|
+
.uk-offcanvas-bar .uk-heading-2xlarge,
|
|
9418
|
+
.uk-offcanvas-bar .uk-heading-3xlarge {
|
|
9389
9419
|
color: #fff;
|
|
9390
9420
|
}
|
|
9391
9421
|
.uk-light hr,
|