uikit 3.14.1-dev.eeb4cd6ae → 3.14.2-dev.35b3deec9
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 +45 -3
- package/build/util.js +8 -2
- package/dist/css/uikit-core-rtl.css +93 -21
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +93 -21
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +99 -33
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +99 -33
- 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 +2 -2
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +111 -15
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +111 -15
- 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 +18 -3
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +2 -2
- 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 +2 -2
- 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 +147 -34
- 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 +280 -132
- 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 +298 -135
- package/dist/js/uikit.min.js +1 -1
- package/package.json +11 -11
- package/src/js/api/hooks.js +1 -1
- package/src/js/components/filter.js +1 -1
- package/src/js/components/parallax.js +16 -1
- package/src/js/core/accordion.js +3 -3
- package/src/js/core/alert.js +1 -1
- package/src/js/core/drop.js +47 -18
- package/src/js/core/height-viewport.js +15 -11
- package/src/js/core/margin.js +1 -1
- package/src/js/core/navbar.js +19 -18
- package/src/js/core/scrollspy.js +6 -1
- package/src/js/core/toggle.js +9 -8
- package/src/js/mixin/parallax.js +1 -1
- package/src/js/mixin/position.js +36 -20
- package/src/js/mixin/togglable.js +116 -18
- package/src/js/util/animation.js +1 -0
- package/src/js/util/position.js +24 -22
- package/src/js/util/viewport.js +7 -14
- package/src/less/components/drop.less +19 -4
- package/src/less/components/dropdown.less +21 -4
- package/src/less/components/margin.less +13 -14
- package/src/less/components/modal.less +19 -4
- package/src/less/components/nav.less +1 -1
- package/src/less/components/navbar.less +60 -19
- package/src/less/components/offcanvas.less +21 -21
- package/src/less/components/position.less +1 -1
- package/src/less/components/sticky.less +7 -0
- package/src/less/components/tooltip.less +1 -0
- package/src/less/components/utility.less +1 -2
- package/src/less/theme/dropdown.less +11 -0
- package/src/less/theme/navbar.less +10 -10
- package/src/scss/components/drop.scss +19 -4
- package/src/scss/components/dropdown.scss +21 -4
- package/src/scss/components/margin.scss +13 -14
- package/src/scss/components/modal.scss +19 -4
- package/src/scss/components/nav.scss +1 -1
- package/src/scss/components/navbar.scss +49 -8
- package/src/scss/components/offcanvas.scss +21 -21
- package/src/scss/components/position.scss +1 -1
- package/src/scss/components/sticky.scss +7 -0
- package/src/scss/components/tooltip.scss +1 -0
- package/src/scss/components/utility.scss +1 -2
- package/src/scss/mixins-theme.scss +8 -10
- package/src/scss/mixins.scss +2 -0
- package/src/scss/theme/dropdown.scss +8 -0
- package/src/scss/theme/navbar.scss +7 -0
- package/src/scss/variables-theme.scss +26 -11
- package/src/scss/variables.scss +24 -11
- package/tests/drop.html +165 -4
- package/tests/dropdown.html +234 -13
- package/tests/height-viewport.html +62 -0
- package/tests/navbar.html +333 -64
- package/tests/notification.html +1 -1
- package/tests/offcanvas.html +8 -8
- package/tests/sticky-navbar.html +132 -0
- package/tests/sticky-parallax.html +2 -1
- package/tests/sticky.html +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,60 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## WIP mobile_dropdown
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Add `animate-out` option to Drop component
|
|
8
|
+
- Add alignment `stretch` to Drop component
|
|
9
|
+
- Add Height Viewport uses scroll parent as viewport
|
|
10
|
+
- Add zero z-index utility class to Position component
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Make content clickable for sticky cover and reveal effects
|
|
15
|
+
|
|
3
16
|
## WIP
|
|
4
17
|
|
|
5
|
-
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- Add gap variable to navbar items in Navbar component
|
|
21
|
+
- Add color mode variable to navbar dropdown in Navbar component
|
|
22
|
+
- Add small breakpoint padding variables to Modal component
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- Rename `@offcanvas-bar-width-m` to `@offcanvas-bar-width-s`
|
|
27
|
+
- Rename `@offcanvas-bar-padding-vertical-m` to `@offcanvas-bar-padding-vertical-s`
|
|
28
|
+
- Rename `@offcanvas-bar-padding-horizontal-m` to `@offcanvas-bar-padding-horizontal-s`
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
|
|
32
|
+
- Fix logo image not working with text align in Utility component
|
|
33
|
+
- Fix Scroll component on iOS 12
|
|
34
|
+
- Fix offset calculation in Drop component
|
|
35
|
+
- Fix `-justify` positioning in Drop component
|
|
36
|
+
- Fix Toggle component in `mode:media` default prevents click event
|
|
37
|
+
- Fix: Toggle component did not default prevent touch click on anchor with closed target
|
|
38
|
+
- Revert: Height Viewport component sets `uk-height-viewport` class to reduce initial layout shifts
|
|
39
|
+
- Fix Dropbar handles resizing Drop components
|
|
40
|
+
|
|
41
|
+
## 3.14.1 (May 3, 2022)
|
|
42
|
+
|
|
43
|
+
### Added
|
|
6
44
|
|
|
7
45
|
- Add `box-shadow` to `toggleHeight()` hide properties
|
|
46
|
+
- Add adaptive velocity to Alert and Accordion components
|
|
8
47
|
|
|
9
|
-
|
|
48
|
+
### Changed
|
|
10
49
|
|
|
11
50
|
- Set `transition` option to `ease` by default in Togglable mixin
|
|
12
51
|
|
|
13
|
-
|
|
52
|
+
### Fixed
|
|
14
53
|
|
|
15
54
|
- Fix toggling accordion item while transition is in progress
|
|
55
|
+
- Fix Drop positioning with `boundaryAlign: true`
|
|
56
|
+
- Fix Scrollspy component not triggering in some cases
|
|
57
|
+
- Fix Slider component showing wrong initial index
|
|
16
58
|
|
|
17
59
|
## 3.14.0 (April 27, 2022)
|
|
18
60
|
|
package/build/util.js
CHANGED
|
@@ -14,7 +14,7 @@ import replace from '@rollup/plugin-replace';
|
|
|
14
14
|
import { basename, dirname, join } from 'path';
|
|
15
15
|
import { exec as execImport } from 'child_process';
|
|
16
16
|
import { rollup, watch as rollupWatch } from 'rollup';
|
|
17
|
-
import { minify as
|
|
17
|
+
import { minify as esbuildMinify } from 'rollup-plugin-esbuild';
|
|
18
18
|
|
|
19
19
|
const limit = pLimit(Number(process.env.cpus || 2));
|
|
20
20
|
|
|
@@ -148,7 +148,13 @@ export async function compile(file, dest, { external, globals, name, aliases, re
|
|
|
148
148
|
output.push({
|
|
149
149
|
...outputOptions,
|
|
150
150
|
file: `${dest}.min.js`,
|
|
151
|
-
plugins: [
|
|
151
|
+
plugins: [
|
|
152
|
+
debug
|
|
153
|
+
? undefined
|
|
154
|
+
: esbuildMinify({
|
|
155
|
+
target: 'safari12',
|
|
156
|
+
}),
|
|
157
|
+
],
|
|
152
158
|
});
|
|
153
159
|
}
|
|
154
160
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.14.
|
|
1
|
+
/*! UIkit 3.14.2-dev.35b3deec9 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -3231,6 +3231,7 @@ select.uk-form-width-xsmall {
|
|
|
3231
3231
|
position: absolute;
|
|
3232
3232
|
z-index: 1020;
|
|
3233
3233
|
--uk-position-offset: 20px;
|
|
3234
|
+
--uk-position-viewport-offset: 15px;
|
|
3234
3235
|
/* 3 */
|
|
3235
3236
|
box-sizing: border-box;
|
|
3236
3237
|
width: 300px;
|
|
@@ -3239,6 +3240,18 @@ select.uk-form-width-xsmall {
|
|
|
3239
3240
|
.uk-drop.uk-open {
|
|
3240
3241
|
display: block;
|
|
3241
3242
|
}
|
|
3243
|
+
/* Stretch modifier
|
|
3244
|
+
========================================================================== */
|
|
3245
|
+
/*
|
|
3246
|
+
* 1. Allow scrolling
|
|
3247
|
+
*/
|
|
3248
|
+
.uk-drop-stretch {
|
|
3249
|
+
--uk-position-offset: 0;
|
|
3250
|
+
--uk-position-viewport-offset: 0;
|
|
3251
|
+
/* 1 */
|
|
3252
|
+
overflow-y: auto;
|
|
3253
|
+
-webkit-overflow-scrolling: touch;
|
|
3254
|
+
}
|
|
3242
3255
|
/* Grid modifiers
|
|
3243
3256
|
========================================================================== */
|
|
3244
3257
|
.uk-drop-stack .uk-drop-grid > * {
|
|
@@ -3260,6 +3273,7 @@ select.uk-form-width-xsmall {
|
|
|
3260
3273
|
position: absolute;
|
|
3261
3274
|
z-index: 1020;
|
|
3262
3275
|
--uk-position-offset: 10px;
|
|
3276
|
+
--uk-position-viewport-offset: 15px;
|
|
3263
3277
|
/* 3 */
|
|
3264
3278
|
box-sizing: border-box;
|
|
3265
3279
|
min-width: 200px;
|
|
@@ -3273,6 +3287,18 @@ select.uk-form-width-xsmall {
|
|
|
3273
3287
|
.uk-dropdown.uk-open {
|
|
3274
3288
|
display: block;
|
|
3275
3289
|
}
|
|
3290
|
+
/* Stretch modifier
|
|
3291
|
+
========================================================================== */
|
|
3292
|
+
/*
|
|
3293
|
+
* 1. Allow scrolling
|
|
3294
|
+
*/
|
|
3295
|
+
.uk-dropdown-stretch {
|
|
3296
|
+
--uk-position-offset: 0;
|
|
3297
|
+
--uk-position-viewport-offset: 0;
|
|
3298
|
+
/* 1 */
|
|
3299
|
+
overflow-y: auto;
|
|
3300
|
+
-webkit-overflow-scrolling: touch;
|
|
3301
|
+
}
|
|
3276
3302
|
/* Nav
|
|
3277
3303
|
* Adopts `uk-nav`
|
|
3278
3304
|
========================================================================== */
|
|
@@ -3442,18 +3468,30 @@ select.uk-form-width-xsmall {
|
|
|
3442
3468
|
========================================================================== */
|
|
3443
3469
|
.uk-modal-body {
|
|
3444
3470
|
display: flow-root;
|
|
3445
|
-
padding:
|
|
3471
|
+
padding: 20px 20px;
|
|
3446
3472
|
}
|
|
3447
3473
|
.uk-modal-header {
|
|
3448
3474
|
display: flow-root;
|
|
3449
|
-
padding:
|
|
3475
|
+
padding: 10px 20px;
|
|
3450
3476
|
background: #f8f8f8;
|
|
3451
3477
|
}
|
|
3452
3478
|
.uk-modal-footer {
|
|
3453
3479
|
display: flow-root;
|
|
3454
|
-
padding:
|
|
3480
|
+
padding: 10px 20px;
|
|
3455
3481
|
background: #f8f8f8;
|
|
3456
3482
|
}
|
|
3483
|
+
/* Phone landscape and bigger */
|
|
3484
|
+
@media (min-width: 640px) {
|
|
3485
|
+
.uk-modal-body {
|
|
3486
|
+
padding: 30px 30px;
|
|
3487
|
+
}
|
|
3488
|
+
.uk-modal-header {
|
|
3489
|
+
padding: 15px 30px;
|
|
3490
|
+
}
|
|
3491
|
+
.uk-modal-footer {
|
|
3492
|
+
padding: 15px 30px;
|
|
3493
|
+
}
|
|
3494
|
+
}
|
|
3457
3495
|
/*
|
|
3458
3496
|
* Remove margin from the last-child
|
|
3459
3497
|
*/
|
|
@@ -3678,6 +3716,13 @@ select.uk-form-width-xsmall {
|
|
|
3678
3716
|
.uk-sticky.uk-animation-reverse {
|
|
3679
3717
|
animation-duration: 0.2s;
|
|
3680
3718
|
}
|
|
3719
|
+
/*
|
|
3720
|
+
* Placeholder
|
|
3721
|
+
* Make content clickable for sticky cover and reveal effects
|
|
3722
|
+
*/
|
|
3723
|
+
.uk-sticky-placeholder {
|
|
3724
|
+
pointer-events: none;
|
|
3725
|
+
}
|
|
3681
3726
|
/* ========================================================================
|
|
3682
3727
|
Component: Off-canvas
|
|
3683
3728
|
========================================================================== */
|
|
@@ -3724,12 +3769,12 @@ select.uk-form-width-xsmall {
|
|
|
3724
3769
|
overflow-y: auto;
|
|
3725
3770
|
-webkit-overflow-scrolling: touch;
|
|
3726
3771
|
}
|
|
3727
|
-
/*
|
|
3728
|
-
@media (min-width:
|
|
3772
|
+
/* Phone landscape and bigger */
|
|
3773
|
+
@media (min-width: 640px) {
|
|
3729
3774
|
.uk-offcanvas-bar {
|
|
3730
3775
|
right: -350px;
|
|
3731
3776
|
width: 350px;
|
|
3732
|
-
padding:
|
|
3777
|
+
padding: 30px 30px;
|
|
3733
3778
|
}
|
|
3734
3779
|
}
|
|
3735
3780
|
/* Flip modifier */
|
|
@@ -3738,7 +3783,7 @@ select.uk-form-width-xsmall {
|
|
|
3738
3783
|
left: -270px;
|
|
3739
3784
|
}
|
|
3740
3785
|
/* Tablet landscape and bigger */
|
|
3741
|
-
@media (min-width:
|
|
3786
|
+
@media (min-width: 640px) {
|
|
3742
3787
|
.uk-offcanvas-flip .uk-offcanvas-bar {
|
|
3743
3788
|
left: -350px;
|
|
3744
3789
|
}
|
|
@@ -3794,7 +3839,7 @@ select.uk-form-width-xsmall {
|
|
|
3794
3839
|
width: 270px;
|
|
3795
3840
|
}
|
|
3796
3841
|
/* Tablet landscape and bigger */
|
|
3797
|
-
@media (min-width:
|
|
3842
|
+
@media (min-width: 640px) {
|
|
3798
3843
|
.uk-open > .uk-offcanvas-reveal {
|
|
3799
3844
|
width: 350px;
|
|
3800
3845
|
}
|
|
@@ -3817,10 +3862,10 @@ select.uk-form-width-xsmall {
|
|
|
3817
3862
|
padding: 5px;
|
|
3818
3863
|
}
|
|
3819
3864
|
/* Tablet landscape and bigger */
|
|
3820
|
-
@media (min-width:
|
|
3865
|
+
@media (min-width: 640px) {
|
|
3821
3866
|
.uk-offcanvas-close {
|
|
3822
|
-
top:
|
|
3823
|
-
left:
|
|
3867
|
+
top: 10px;
|
|
3868
|
+
left: 10px;
|
|
3824
3869
|
}
|
|
3825
3870
|
}
|
|
3826
3871
|
/*
|
|
@@ -3898,7 +3943,7 @@ select.uk-form-width-xsmall {
|
|
|
3898
3943
|
right: -270px;
|
|
3899
3944
|
}
|
|
3900
3945
|
/* Tablet landscape and bigger */
|
|
3901
|
-
@media (min-width:
|
|
3946
|
+
@media (min-width: 640px) {
|
|
3902
3947
|
:not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
|
|
3903
3948
|
right: 350px;
|
|
3904
3949
|
}
|
|
@@ -4081,6 +4126,7 @@ select.uk-form-width-xsmall {
|
|
|
4081
4126
|
position: absolute;
|
|
4082
4127
|
z-index: 1030;
|
|
4083
4128
|
--uk-position-offset: 10px;
|
|
4129
|
+
--uk-position-viewport-offset: 10;
|
|
4084
4130
|
/* 3 */
|
|
4085
4131
|
top: 0;
|
|
4086
4132
|
/* 4 */
|
|
@@ -4769,6 +4815,7 @@ ul.uk-nav-sub {
|
|
|
4769
4815
|
*/
|
|
4770
4816
|
.uk-navbar {
|
|
4771
4817
|
display: flex;
|
|
4818
|
+
--uk-navbar-nav-item-gap: 0;
|
|
4772
4819
|
/* 1 */
|
|
4773
4820
|
position: relative;
|
|
4774
4821
|
}
|
|
@@ -4789,6 +4836,7 @@ ul.uk-nav-sub {
|
|
|
4789
4836
|
.uk-navbar-center-right > *,
|
|
4790
4837
|
.uk-navbar-center-left > * {
|
|
4791
4838
|
display: flex;
|
|
4839
|
+
gap: var(--uk-navbar-nav-item-gap);
|
|
4792
4840
|
/* 1 */
|
|
4793
4841
|
align-items: center;
|
|
4794
4842
|
}
|
|
@@ -4828,9 +4876,11 @@ ul.uk-nav-sub {
|
|
|
4828
4876
|
}
|
|
4829
4877
|
.uk-navbar-center-right {
|
|
4830
4878
|
left: 100%;
|
|
4879
|
+
left: calc(100% + var(--uk-navbar-nav-item-gap));
|
|
4831
4880
|
}
|
|
4832
4881
|
.uk-navbar-center-left {
|
|
4833
4882
|
right: 100%;
|
|
4883
|
+
right: calc(100% + var(--uk-navbar-nav-item-gap));
|
|
4834
4884
|
}
|
|
4835
4885
|
[class*='uk-navbar-center-'] {
|
|
4836
4886
|
width: max-content;
|
|
@@ -4843,6 +4893,7 @@ ul.uk-nav-sub {
|
|
|
4843
4893
|
*/
|
|
4844
4894
|
.uk-navbar-nav {
|
|
4845
4895
|
display: flex;
|
|
4896
|
+
gap: var(--uk-navbar-nav-item-gap);
|
|
4846
4897
|
/* 1 */
|
|
4847
4898
|
margin: 0;
|
|
4848
4899
|
padding: 0;
|
|
@@ -4909,6 +4960,7 @@ ul.uk-nav-sub {
|
|
|
4909
4960
|
/* Item
|
|
4910
4961
|
========================================================================== */
|
|
4911
4962
|
.uk-navbar-item {
|
|
4963
|
+
padding: 0 15px;
|
|
4912
4964
|
color: #666;
|
|
4913
4965
|
}
|
|
4914
4966
|
/*
|
|
@@ -4964,7 +5016,9 @@ ul.uk-nav-sub {
|
|
|
4964
5016
|
/* 2 */
|
|
4965
5017
|
position: absolute;
|
|
4966
5018
|
z-index: 1020;
|
|
4967
|
-
--uk-position-offset:
|
|
5019
|
+
--uk-position-offset: 0;
|
|
5020
|
+
--uk-position-shift-offset: 0;
|
|
5021
|
+
--uk-position-viewport-offset: 15px;
|
|
4968
5022
|
/* 3 */
|
|
4969
5023
|
box-sizing: border-box;
|
|
4970
5024
|
width: 200px;
|
|
@@ -5012,20 +5066,36 @@ ul.uk-nav-sub {
|
|
|
5012
5066
|
.uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
|
|
5013
5067
|
width: 1000px;
|
|
5014
5068
|
}
|
|
5069
|
+
/*
|
|
5070
|
+
* Stretch modifier
|
|
5071
|
+
* 1. Allow scrolling
|
|
5072
|
+
*/
|
|
5073
|
+
.uk-navbar-dropdown-stretch {
|
|
5074
|
+
--uk-position-offset: 0;
|
|
5075
|
+
--uk-position-shift-offset: 0;
|
|
5076
|
+
--uk-position-viewport-offset: 0;
|
|
5077
|
+
/* 1 */
|
|
5078
|
+
overflow-y: auto;
|
|
5079
|
+
-webkit-overflow-scrolling: touch;
|
|
5080
|
+
}
|
|
5015
5081
|
/*
|
|
5016
5082
|
* Dropbar modifier
|
|
5017
|
-
* 1.
|
|
5018
|
-
* 2.
|
|
5019
|
-
* 3.
|
|
5083
|
+
* 1. Reset dropdown width to prevent to early shifting
|
|
5084
|
+
* 2. Set position
|
|
5085
|
+
* 3. Bottom padding for dropbar
|
|
5086
|
+
* 4. Horizontal padding
|
|
5020
5087
|
*/
|
|
5021
5088
|
.uk-navbar-dropdown-dropbar {
|
|
5022
5089
|
/* 1 */
|
|
5023
|
-
|
|
5090
|
+
width: auto;
|
|
5024
5091
|
/* 2 */
|
|
5025
|
-
|
|
5092
|
+
--uk-position-offset: 0px;
|
|
5026
5093
|
/* 3 */
|
|
5094
|
+
margin-bottom: 0px;
|
|
5095
|
+
/* 4 */
|
|
5027
5096
|
padding-right: 15px;
|
|
5028
5097
|
padding-left: 15px;
|
|
5098
|
+
--uk-position-shift-offset: 0;
|
|
5029
5099
|
}
|
|
5030
5100
|
/* Dropdown Nav
|
|
5031
5101
|
* Adopts `uk-nav`
|
|
@@ -7397,7 +7467,6 @@ iframe[data-uk-cover] {
|
|
|
7397
7467
|
}
|
|
7398
7468
|
/*
|
|
7399
7469
|
* Enable scrollbars if content is clipped
|
|
7400
|
-
* Note: Firefox ignores `padding-bottom` for the scrollable overflow https://bugzilla.mozilla.org/show_bug.cgi?id=748518
|
|
7401
7470
|
*/
|
|
7402
7471
|
.uk-overflow-auto {
|
|
7403
7472
|
overflow: auto;
|
|
@@ -7676,7 +7745,7 @@ iframe[data-uk-cover] {
|
|
|
7676
7745
|
text-decoration: none;
|
|
7677
7746
|
}
|
|
7678
7747
|
.uk-logo > :where(img, svg, video) {
|
|
7679
|
-
display: block;
|
|
7748
|
+
display: inline-block;
|
|
7680
7749
|
}
|
|
7681
7750
|
.uk-logo-inverse {
|
|
7682
7751
|
display: none;
|
|
@@ -8526,6 +8595,9 @@ iframe[data-uk-cover] {
|
|
|
8526
8595
|
.uk-position-z-index {
|
|
8527
8596
|
z-index: 1;
|
|
8528
8597
|
}
|
|
8598
|
+
.uk-position-z-index-zero {
|
|
8599
|
+
z-index: 0;
|
|
8600
|
+
}
|
|
8529
8601
|
.uk-position-z-index-negative {
|
|
8530
8602
|
z-index: -1;
|
|
8531
8603
|
}
|