uikit 3.18.4-dev.cee46c589 → 3.19.1-dev.a49c72e42
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 +28 -0
- package/build/scss.js +3 -0
- package/dist/css/uikit-core-rtl.css +314 -43
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +314 -43
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +314 -43
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +314 -43
- 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 +12 -9
- 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 +2 -2
- 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 +19 -17
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +2 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +31 -26
- package/dist/js/uikit.min.js +1 -1
- package/package.json +2 -2
- package/src/images/components/navbar-toggle-icon.svg +2 -2
- package/src/images/icons/bluesky.svg +3 -0
- package/src/js/components/internal/slider-transitioner.js +2 -2
- package/src/js/components/slider.js +12 -7
- package/src/js/components/tooltip.js +1 -1
- package/src/js/core/height-match.js +12 -0
- package/src/js/core/img.js +1 -16
- package/src/js/core/video.js +6 -8
- package/src/less/components/flex.less +110 -2
- package/src/less/components/heading.less +2 -2
- package/src/less/components/slider.less +1 -1
- package/src/less/components/utility.less +1 -1
- package/src/less/components/width.less +146 -30
- package/src/less/theme/text.less +1 -1
- package/src/scss/components/flex.scss +110 -2
- package/src/scss/components/heading.scss +2 -2
- package/src/scss/components/slider.scss +1 -1
- package/src/scss/components/width.scss +146 -30
- package/src/scss/mixins-theme.scss +1 -1
- package/src/scss/mixins.scss +1 -1
- package/src/scss/variables-theme.scss +1 -1
- package/tests/slider.html +12 -1
- package/tests/slideshow.html +2 -2
- package/tests/utility.html +36 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## WIP
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Fix Video component handles fullscreen mode correctly
|
|
8
|
+
|
|
9
|
+
## 3.19.0 (February 29, 2024)
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Add breakpoint classes for flex direction, dimension and alignment
|
|
14
|
+
- Add `active` option to Slider component
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Remove obsolete fix for rounding issues in Width component in IE11/Edge
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- Fix width expand classes mixed with other width classes of higher breakpoints in Width component
|
|
23
|
+
- Fix combination of width auto and expand breakpoint classes
|
|
24
|
+
- Fix logo inverse selector to work with different types of images
|
|
25
|
+
- Fix Tooltips not showing in iOS
|
|
26
|
+
- Fix parallax scrolling for Slideshow/Slider component with finite mode
|
|
27
|
+
- Fix Slider component disables infinite scrolling prematurely
|
|
28
|
+
- Fix Sass sources by renaming spin() (LESS) to adjust-hue() (Sass)
|
|
29
|
+
- Fix Height Match component recalculates its heights, when a font has loaded
|
|
30
|
+
|
|
3
31
|
## 3.18.3 (February 13, 2024)
|
|
4
32
|
|
|
5
33
|
### Fixed
|
package/build/scss.js
CHANGED
|
@@ -38,6 +38,9 @@ for (const file of (await glob('src/less/**/*.less'))
|
|
|
38
38
|
.replace(/fade\((\$[\w-]*), ([0-9]+)%\)/g, (match, p1, p2) => {
|
|
39
39
|
return `rgba(${p1}, ${p2 / 100})`;
|
|
40
40
|
}) // replace Less function fade with rgba
|
|
41
|
+
.replace(/spin\((\$[\w-]*), ([0-9]+)\)/g, (match, p1, p2) => {
|
|
42
|
+
return `adjust-hue(${p1}, ${p2})`;
|
|
43
|
+
}) // replace Less function spin with adjust-hue
|
|
41
44
|
.replace(/fade(in|out)\((\$[\w-]*), ([0-9]+)%\)/g, (match, p1, p2, p3) => {
|
|
42
45
|
return `fade-${p1}(${p2}, ${p3 / 100})`;
|
|
43
46
|
}) // replace Less function fadeout with fade-out
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.
|
|
1
|
+
/*! UIkit 3.19.1-dev.a49c72e42 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -3679,7 +3679,7 @@ select.uk-form-width-xsmall {
|
|
|
3679
3679
|
*/
|
|
3680
3680
|
.uk-slider-items > * {
|
|
3681
3681
|
/* 1 */
|
|
3682
|
-
flex: none;
|
|
3682
|
+
flex: none !important;
|
|
3683
3683
|
box-sizing: border-box;
|
|
3684
3684
|
max-width: 100%;
|
|
3685
3685
|
/* 2 */
|
|
@@ -6418,7 +6418,7 @@ ul.uk-nav-sub {
|
|
|
6418
6418
|
width: 50%;
|
|
6419
6419
|
}
|
|
6420
6420
|
.uk-child-width-1-3 > * {
|
|
6421
|
-
width: calc(100%
|
|
6421
|
+
width: calc(100% / 3);
|
|
6422
6422
|
}
|
|
6423
6423
|
.uk-child-width-1-4 > * {
|
|
6424
6424
|
width: 25%;
|
|
@@ -6427,7 +6427,7 @@ ul.uk-nav-sub {
|
|
|
6427
6427
|
width: 20%;
|
|
6428
6428
|
}
|
|
6429
6429
|
.uk-child-width-1-6 > * {
|
|
6430
|
-
width: calc(100%
|
|
6430
|
+
width: calc(100% / 6);
|
|
6431
6431
|
}
|
|
6432
6432
|
.uk-child-width-auto > * {
|
|
6433
6433
|
width: auto;
|
|
@@ -6452,7 +6452,7 @@ ul.uk-nav-sub {
|
|
|
6452
6452
|
width: 50%;
|
|
6453
6453
|
}
|
|
6454
6454
|
.uk-child-width-1-3\@s > * {
|
|
6455
|
-
width: calc(100%
|
|
6455
|
+
width: calc(100% / 3);
|
|
6456
6456
|
}
|
|
6457
6457
|
.uk-child-width-1-4\@s > * {
|
|
6458
6458
|
width: 25%;
|
|
@@ -6461,7 +6461,7 @@ ul.uk-nav-sub {
|
|
|
6461
6461
|
width: 20%;
|
|
6462
6462
|
}
|
|
6463
6463
|
.uk-child-width-1-6\@s > * {
|
|
6464
|
-
width: calc(100%
|
|
6464
|
+
width: calc(100% / 6);
|
|
6465
6465
|
}
|
|
6466
6466
|
.uk-child-width-auto\@s > * {
|
|
6467
6467
|
width: auto;
|
|
@@ -6470,6 +6470,16 @@ ul.uk-nav-sub {
|
|
|
6470
6470
|
flex: 1;
|
|
6471
6471
|
min-width: 1px;
|
|
6472
6472
|
}
|
|
6473
|
+
/* Reset expand */
|
|
6474
|
+
.uk-child-width-1-1\@s > :not([class*="uk-width"]),
|
|
6475
|
+
.uk-child-width-1-2\@s > :not([class*="uk-width"]),
|
|
6476
|
+
.uk-child-width-1-3\@s > :not([class*="uk-width"]),
|
|
6477
|
+
.uk-child-width-1-4\@s > :not([class*="uk-width"]),
|
|
6478
|
+
.uk-child-width-1-5\@s > :not([class*="uk-width"]),
|
|
6479
|
+
.uk-child-width-1-6\@s > :not([class*="uk-width"]),
|
|
6480
|
+
.uk-child-width-auto\@s > :not([class*="uk-width"]) {
|
|
6481
|
+
flex: initial;
|
|
6482
|
+
}
|
|
6473
6483
|
}
|
|
6474
6484
|
/* Tablet landscape and bigger */
|
|
6475
6485
|
@media (min-width: 960px) {
|
|
@@ -6480,7 +6490,7 @@ ul.uk-nav-sub {
|
|
|
6480
6490
|
width: 50%;
|
|
6481
6491
|
}
|
|
6482
6492
|
.uk-child-width-1-3\@m > * {
|
|
6483
|
-
width: calc(100%
|
|
6493
|
+
width: calc(100% / 3);
|
|
6484
6494
|
}
|
|
6485
6495
|
.uk-child-width-1-4\@m > * {
|
|
6486
6496
|
width: 25%;
|
|
@@ -6489,7 +6499,7 @@ ul.uk-nav-sub {
|
|
|
6489
6499
|
width: 20%;
|
|
6490
6500
|
}
|
|
6491
6501
|
.uk-child-width-1-6\@m > * {
|
|
6492
|
-
width: calc(100%
|
|
6502
|
+
width: calc(100% / 6);
|
|
6493
6503
|
}
|
|
6494
6504
|
.uk-child-width-auto\@m > * {
|
|
6495
6505
|
width: auto;
|
|
@@ -6498,6 +6508,16 @@ ul.uk-nav-sub {
|
|
|
6498
6508
|
flex: 1;
|
|
6499
6509
|
min-width: 1px;
|
|
6500
6510
|
}
|
|
6511
|
+
/* Reset expand */
|
|
6512
|
+
.uk-child-width-1-1\@m > :not([class*="uk-width"]),
|
|
6513
|
+
.uk-child-width-1-2\@m > :not([class*="uk-width"]),
|
|
6514
|
+
.uk-child-width-1-3\@m > :not([class*="uk-width"]),
|
|
6515
|
+
.uk-child-width-1-4\@m > :not([class*="uk-width"]),
|
|
6516
|
+
.uk-child-width-1-5\@m > :not([class*="uk-width"]),
|
|
6517
|
+
.uk-child-width-1-6\@m > :not([class*="uk-width"]),
|
|
6518
|
+
.uk-child-width-auto\@m > :not([class*="uk-width"]) {
|
|
6519
|
+
flex: initial;
|
|
6520
|
+
}
|
|
6501
6521
|
}
|
|
6502
6522
|
/* Desktop and bigger */
|
|
6503
6523
|
@media (min-width: 1200px) {
|
|
@@ -6508,7 +6528,7 @@ ul.uk-nav-sub {
|
|
|
6508
6528
|
width: 50%;
|
|
6509
6529
|
}
|
|
6510
6530
|
.uk-child-width-1-3\@l > * {
|
|
6511
|
-
width: calc(100%
|
|
6531
|
+
width: calc(100% / 3);
|
|
6512
6532
|
}
|
|
6513
6533
|
.uk-child-width-1-4\@l > * {
|
|
6514
6534
|
width: 25%;
|
|
@@ -6517,7 +6537,7 @@ ul.uk-nav-sub {
|
|
|
6517
6537
|
width: 20%;
|
|
6518
6538
|
}
|
|
6519
6539
|
.uk-child-width-1-6\@l > * {
|
|
6520
|
-
width: calc(100%
|
|
6540
|
+
width: calc(100% / 6);
|
|
6521
6541
|
}
|
|
6522
6542
|
.uk-child-width-auto\@l > * {
|
|
6523
6543
|
width: auto;
|
|
@@ -6526,6 +6546,16 @@ ul.uk-nav-sub {
|
|
|
6526
6546
|
flex: 1;
|
|
6527
6547
|
min-width: 1px;
|
|
6528
6548
|
}
|
|
6549
|
+
/* Reset expand */
|
|
6550
|
+
.uk-child-width-1-1\@l > :not([class*="uk-width"]),
|
|
6551
|
+
.uk-child-width-1-2\@l > :not([class*="uk-width"]),
|
|
6552
|
+
.uk-child-width-1-3\@l > :not([class*="uk-width"]),
|
|
6553
|
+
.uk-child-width-1-4\@l > :not([class*="uk-width"]),
|
|
6554
|
+
.uk-child-width-1-5\@l > :not([class*="uk-width"]),
|
|
6555
|
+
.uk-child-width-1-6\@l > :not([class*="uk-width"]),
|
|
6556
|
+
.uk-child-width-auto\@l > :not([class*="uk-width"]) {
|
|
6557
|
+
flex: initial;
|
|
6558
|
+
}
|
|
6529
6559
|
}
|
|
6530
6560
|
/* Large screen and bigger */
|
|
6531
6561
|
@media (min-width: 1600px) {
|
|
@@ -6536,7 +6566,7 @@ ul.uk-nav-sub {
|
|
|
6536
6566
|
width: 50%;
|
|
6537
6567
|
}
|
|
6538
6568
|
.uk-child-width-1-3\@xl > * {
|
|
6539
|
-
width: calc(100%
|
|
6569
|
+
width: calc(100% / 3);
|
|
6540
6570
|
}
|
|
6541
6571
|
.uk-child-width-1-4\@xl > * {
|
|
6542
6572
|
width: 25%;
|
|
@@ -6545,7 +6575,7 @@ ul.uk-nav-sub {
|
|
|
6545
6575
|
width: 20%;
|
|
6546
6576
|
}
|
|
6547
6577
|
.uk-child-width-1-6\@xl > * {
|
|
6548
|
-
width: calc(100%
|
|
6578
|
+
width: calc(100% / 6);
|
|
6549
6579
|
}
|
|
6550
6580
|
.uk-child-width-auto\@xl > * {
|
|
6551
6581
|
width: auto;
|
|
@@ -6554,6 +6584,16 @@ ul.uk-nav-sub {
|
|
|
6554
6584
|
flex: 1;
|
|
6555
6585
|
min-width: 1px;
|
|
6556
6586
|
}
|
|
6587
|
+
/* Reset expand */
|
|
6588
|
+
.uk-child-width-1-1\@xl > :not([class*="uk-width"]),
|
|
6589
|
+
.uk-child-width-1-2\@xl > :not([class*="uk-width"]),
|
|
6590
|
+
.uk-child-width-1-3\@xl > :not([class*="uk-width"]),
|
|
6591
|
+
.uk-child-width-1-4\@xl > :not([class*="uk-width"]),
|
|
6592
|
+
.uk-child-width-1-5\@xl > :not([class*="uk-width"]),
|
|
6593
|
+
.uk-child-width-1-6\@xl > :not([class*="uk-width"]),
|
|
6594
|
+
.uk-child-width-auto\@xl > :not([class*="uk-width"]) {
|
|
6595
|
+
flex: initial;
|
|
6596
|
+
}
|
|
6557
6597
|
}
|
|
6558
6598
|
/* Single Widths
|
|
6559
6599
|
========================================================================== */
|
|
@@ -6572,10 +6612,10 @@ ul.uk-nav-sub {
|
|
|
6572
6612
|
}
|
|
6573
6613
|
/* Thirds */
|
|
6574
6614
|
.uk-width-1-3 {
|
|
6575
|
-
width: calc(100%
|
|
6615
|
+
width: calc(100% / 3);
|
|
6576
6616
|
}
|
|
6577
6617
|
.uk-width-2-3 {
|
|
6578
|
-
width: calc(
|
|
6618
|
+
width: calc(200% / 3);
|
|
6579
6619
|
}
|
|
6580
6620
|
/* Quarters */
|
|
6581
6621
|
.uk-width-1-4 {
|
|
@@ -6599,10 +6639,10 @@ ul.uk-nav-sub {
|
|
|
6599
6639
|
}
|
|
6600
6640
|
/* Sixths */
|
|
6601
6641
|
.uk-width-1-6 {
|
|
6602
|
-
width: calc(100%
|
|
6642
|
+
width: calc(100% / 6);
|
|
6603
6643
|
}
|
|
6604
6644
|
.uk-width-5-6 {
|
|
6605
|
-
width: calc(
|
|
6645
|
+
width: calc(500% / 6);
|
|
6606
6646
|
}
|
|
6607
6647
|
/* Pixel */
|
|
6608
6648
|
.uk-width-small {
|
|
@@ -6641,10 +6681,10 @@ ul.uk-nav-sub {
|
|
|
6641
6681
|
}
|
|
6642
6682
|
/* Thirds */
|
|
6643
6683
|
.uk-width-1-3\@s {
|
|
6644
|
-
width: calc(100%
|
|
6684
|
+
width: calc(100% / 3);
|
|
6645
6685
|
}
|
|
6646
6686
|
.uk-width-2-3\@s {
|
|
6647
|
-
width: calc(
|
|
6687
|
+
width: calc(200% / 3);
|
|
6648
6688
|
}
|
|
6649
6689
|
/* Quarters */
|
|
6650
6690
|
.uk-width-1-4\@s {
|
|
@@ -6668,10 +6708,10 @@ ul.uk-nav-sub {
|
|
|
6668
6708
|
}
|
|
6669
6709
|
/* Sixths */
|
|
6670
6710
|
.uk-width-1-6\@s {
|
|
6671
|
-
width: calc(100%
|
|
6711
|
+
width: calc(100% / 6);
|
|
6672
6712
|
}
|
|
6673
6713
|
.uk-width-5-6\@s {
|
|
6674
|
-
width: calc(
|
|
6714
|
+
width: calc(500% / 6);
|
|
6675
6715
|
}
|
|
6676
6716
|
/* Pixel */
|
|
6677
6717
|
.uk-width-small\@s {
|
|
@@ -6698,6 +6738,27 @@ ul.uk-nav-sub {
|
|
|
6698
6738
|
flex: 1;
|
|
6699
6739
|
min-width: 1px;
|
|
6700
6740
|
}
|
|
6741
|
+
/* Reset expand */
|
|
6742
|
+
.uk-width-1-1\@s,
|
|
6743
|
+
.uk-width-1-2\@s,
|
|
6744
|
+
.uk-width-1-3\@s,
|
|
6745
|
+
.uk-width-2-3\@s,
|
|
6746
|
+
.uk-width-1-4\@s,
|
|
6747
|
+
.uk-width-3-4\@s,
|
|
6748
|
+
.uk-width-1-5\@s,
|
|
6749
|
+
.uk-width-2-5\@s,
|
|
6750
|
+
.uk-width-3-5\@s,
|
|
6751
|
+
.uk-width-4-5\@s,
|
|
6752
|
+
.uk-width-1-6\@s,
|
|
6753
|
+
.uk-width-5-6\@s,
|
|
6754
|
+
.uk-width-small\@s,
|
|
6755
|
+
.uk-width-medium\@s,
|
|
6756
|
+
.uk-width-large\@s,
|
|
6757
|
+
.uk-width-xlarge\@s,
|
|
6758
|
+
.uk-width-2xlarge\@s,
|
|
6759
|
+
.uk-width-auto\@s {
|
|
6760
|
+
flex: initial;
|
|
6761
|
+
}
|
|
6701
6762
|
}
|
|
6702
6763
|
/* Tablet landscape and bigger */
|
|
6703
6764
|
@media (min-width: 960px) {
|
|
@@ -6711,10 +6772,10 @@ ul.uk-nav-sub {
|
|
|
6711
6772
|
}
|
|
6712
6773
|
/* Thirds */
|
|
6713
6774
|
.uk-width-1-3\@m {
|
|
6714
|
-
width: calc(100%
|
|
6775
|
+
width: calc(100% / 3);
|
|
6715
6776
|
}
|
|
6716
6777
|
.uk-width-2-3\@m {
|
|
6717
|
-
width: calc(
|
|
6778
|
+
width: calc(200% / 3);
|
|
6718
6779
|
}
|
|
6719
6780
|
/* Quarters */
|
|
6720
6781
|
.uk-width-1-4\@m {
|
|
@@ -6738,10 +6799,10 @@ ul.uk-nav-sub {
|
|
|
6738
6799
|
}
|
|
6739
6800
|
/* Sixths */
|
|
6740
6801
|
.uk-width-1-6\@m {
|
|
6741
|
-
width: calc(100%
|
|
6802
|
+
width: calc(100% / 6);
|
|
6742
6803
|
}
|
|
6743
6804
|
.uk-width-5-6\@m {
|
|
6744
|
-
width: calc(
|
|
6805
|
+
width: calc(500% / 6);
|
|
6745
6806
|
}
|
|
6746
6807
|
/* Pixel */
|
|
6747
6808
|
.uk-width-small\@m {
|
|
@@ -6768,6 +6829,27 @@ ul.uk-nav-sub {
|
|
|
6768
6829
|
flex: 1;
|
|
6769
6830
|
min-width: 1px;
|
|
6770
6831
|
}
|
|
6832
|
+
/* Reset expand */
|
|
6833
|
+
.uk-width-1-1\@m,
|
|
6834
|
+
.uk-width-1-2\@m,
|
|
6835
|
+
.uk-width-1-3\@m,
|
|
6836
|
+
.uk-width-2-3\@m,
|
|
6837
|
+
.uk-width-1-4\@m,
|
|
6838
|
+
.uk-width-3-4\@m,
|
|
6839
|
+
.uk-width-1-5\@m,
|
|
6840
|
+
.uk-width-2-5\@m,
|
|
6841
|
+
.uk-width-3-5\@m,
|
|
6842
|
+
.uk-width-4-5\@m,
|
|
6843
|
+
.uk-width-1-6\@m,
|
|
6844
|
+
.uk-width-5-6\@m,
|
|
6845
|
+
.uk-width-small\@m,
|
|
6846
|
+
.uk-width-medium\@m,
|
|
6847
|
+
.uk-width-large\@m,
|
|
6848
|
+
.uk-width-xlarge\@m,
|
|
6849
|
+
.uk-width-2xlarge\@m,
|
|
6850
|
+
.uk-width-auto\@m {
|
|
6851
|
+
flex: initial;
|
|
6852
|
+
}
|
|
6771
6853
|
}
|
|
6772
6854
|
/* Desktop and bigger */
|
|
6773
6855
|
@media (min-width: 1200px) {
|
|
@@ -6781,10 +6863,10 @@ ul.uk-nav-sub {
|
|
|
6781
6863
|
}
|
|
6782
6864
|
/* Thirds */
|
|
6783
6865
|
.uk-width-1-3\@l {
|
|
6784
|
-
width: calc(100%
|
|
6866
|
+
width: calc(100% / 3);
|
|
6785
6867
|
}
|
|
6786
6868
|
.uk-width-2-3\@l {
|
|
6787
|
-
width: calc(
|
|
6869
|
+
width: calc(200% / 3);
|
|
6788
6870
|
}
|
|
6789
6871
|
/* Quarters */
|
|
6790
6872
|
.uk-width-1-4\@l {
|
|
@@ -6808,10 +6890,10 @@ ul.uk-nav-sub {
|
|
|
6808
6890
|
}
|
|
6809
6891
|
/* Sixths */
|
|
6810
6892
|
.uk-width-1-6\@l {
|
|
6811
|
-
width: calc(100%
|
|
6893
|
+
width: calc(100% / 6);
|
|
6812
6894
|
}
|
|
6813
6895
|
.uk-width-5-6\@l {
|
|
6814
|
-
width: calc(
|
|
6896
|
+
width: calc(500% / 6);
|
|
6815
6897
|
}
|
|
6816
6898
|
/* Pixel */
|
|
6817
6899
|
.uk-width-small\@l {
|
|
@@ -6838,6 +6920,27 @@ ul.uk-nav-sub {
|
|
|
6838
6920
|
flex: 1;
|
|
6839
6921
|
min-width: 1px;
|
|
6840
6922
|
}
|
|
6923
|
+
/* Reset expand */
|
|
6924
|
+
.uk-width-1-1\@l,
|
|
6925
|
+
.uk-width-1-2\@l,
|
|
6926
|
+
.uk-width-1-3\@l,
|
|
6927
|
+
.uk-width-2-3\@l,
|
|
6928
|
+
.uk-width-1-4\@l,
|
|
6929
|
+
.uk-width-3-4\@l,
|
|
6930
|
+
.uk-width-1-5\@l,
|
|
6931
|
+
.uk-width-2-5\@l,
|
|
6932
|
+
.uk-width-3-5\@l,
|
|
6933
|
+
.uk-width-4-5\@l,
|
|
6934
|
+
.uk-width-1-6\@l,
|
|
6935
|
+
.uk-width-5-6\@l,
|
|
6936
|
+
.uk-width-small\@l,
|
|
6937
|
+
.uk-width-medium\@l,
|
|
6938
|
+
.uk-width-large\@l,
|
|
6939
|
+
.uk-width-xlarge\@l,
|
|
6940
|
+
.uk-width-2xlarge\@l,
|
|
6941
|
+
.uk-width-auto\@l {
|
|
6942
|
+
flex: initial;
|
|
6943
|
+
}
|
|
6841
6944
|
}
|
|
6842
6945
|
/* Large screen and bigger */
|
|
6843
6946
|
@media (min-width: 1600px) {
|
|
@@ -6851,10 +6954,10 @@ ul.uk-nav-sub {
|
|
|
6851
6954
|
}
|
|
6852
6955
|
/* Thirds */
|
|
6853
6956
|
.uk-width-1-3\@xl {
|
|
6854
|
-
width: calc(100%
|
|
6957
|
+
width: calc(100% / 3);
|
|
6855
6958
|
}
|
|
6856
6959
|
.uk-width-2-3\@xl {
|
|
6857
|
-
width: calc(
|
|
6960
|
+
width: calc(200% / 3);
|
|
6858
6961
|
}
|
|
6859
6962
|
/* Quarters */
|
|
6860
6963
|
.uk-width-1-4\@xl {
|
|
@@ -6878,10 +6981,10 @@ ul.uk-nav-sub {
|
|
|
6878
6981
|
}
|
|
6879
6982
|
/* Sixths */
|
|
6880
6983
|
.uk-width-1-6\@xl {
|
|
6881
|
-
width: calc(100%
|
|
6984
|
+
width: calc(100% / 6);
|
|
6882
6985
|
}
|
|
6883
6986
|
.uk-width-5-6\@xl {
|
|
6884
|
-
width: calc(
|
|
6987
|
+
width: calc(500% / 6);
|
|
6885
6988
|
}
|
|
6886
6989
|
/* Pixel */
|
|
6887
6990
|
.uk-width-small\@xl {
|
|
@@ -6908,6 +7011,27 @@ ul.uk-nav-sub {
|
|
|
6908
7011
|
flex: 1;
|
|
6909
7012
|
min-width: 1px;
|
|
6910
7013
|
}
|
|
7014
|
+
/* Reset expand */
|
|
7015
|
+
.uk-width-1-1\@xl,
|
|
7016
|
+
.uk-width-1-2\@xl,
|
|
7017
|
+
.uk-width-1-3\@xl,
|
|
7018
|
+
.uk-width-2-3\@xl,
|
|
7019
|
+
.uk-width-1-4\@xl,
|
|
7020
|
+
.uk-width-3-4\@xl,
|
|
7021
|
+
.uk-width-1-5\@xl,
|
|
7022
|
+
.uk-width-2-5\@xl,
|
|
7023
|
+
.uk-width-3-5\@xl,
|
|
7024
|
+
.uk-width-4-5\@xl,
|
|
7025
|
+
.uk-width-1-6\@xl,
|
|
7026
|
+
.uk-width-5-6\@xl,
|
|
7027
|
+
.uk-width-small\@xl,
|
|
7028
|
+
.uk-width-medium\@xl,
|
|
7029
|
+
.uk-width-large\@xl,
|
|
7030
|
+
.uk-width-xlarge\@xl,
|
|
7031
|
+
.uk-width-2xlarge\@xl,
|
|
7032
|
+
.uk-width-auto\@xl {
|
|
7033
|
+
flex: initial;
|
|
7034
|
+
}
|
|
6911
7035
|
}
|
|
6912
7036
|
/* Intrinsic Widths
|
|
6913
7037
|
========================================================================== */
|
|
@@ -8237,6 +8361,66 @@ iframe[data-uk-cover] {
|
|
|
8237
8361
|
.uk-flex-bottom {
|
|
8238
8362
|
align-items: flex-end;
|
|
8239
8363
|
}
|
|
8364
|
+
/* Phone landscape and bigger */
|
|
8365
|
+
@media (min-width: 640px) {
|
|
8366
|
+
.uk-flex-stretch\@s {
|
|
8367
|
+
align-items: stretch;
|
|
8368
|
+
}
|
|
8369
|
+
.uk-flex-top\@s {
|
|
8370
|
+
align-items: flex-start;
|
|
8371
|
+
}
|
|
8372
|
+
.uk-flex-middle\@s {
|
|
8373
|
+
align-items: center;
|
|
8374
|
+
}
|
|
8375
|
+
.uk-flex-bottom\@s {
|
|
8376
|
+
align-items: flex-end;
|
|
8377
|
+
}
|
|
8378
|
+
}
|
|
8379
|
+
/* Tablet landscape and bigger */
|
|
8380
|
+
@media (min-width: 960px) {
|
|
8381
|
+
.uk-flex-stretch\@m {
|
|
8382
|
+
align-items: stretch;
|
|
8383
|
+
}
|
|
8384
|
+
.uk-flex-top\@m {
|
|
8385
|
+
align-items: flex-start;
|
|
8386
|
+
}
|
|
8387
|
+
.uk-flex-middle\@m {
|
|
8388
|
+
align-items: center;
|
|
8389
|
+
}
|
|
8390
|
+
.uk-flex-bottom\@m {
|
|
8391
|
+
align-items: flex-end;
|
|
8392
|
+
}
|
|
8393
|
+
}
|
|
8394
|
+
/* Desktop and bigger */
|
|
8395
|
+
@media (min-width: 1200px) {
|
|
8396
|
+
.uk-flex-stretch\@l {
|
|
8397
|
+
align-items: stretch;
|
|
8398
|
+
}
|
|
8399
|
+
.uk-flex-top\@l {
|
|
8400
|
+
align-items: flex-start;
|
|
8401
|
+
}
|
|
8402
|
+
.uk-flex-middle\@l {
|
|
8403
|
+
align-items: center;
|
|
8404
|
+
}
|
|
8405
|
+
.uk-flex-bottom\@l {
|
|
8406
|
+
align-items: flex-end;
|
|
8407
|
+
}
|
|
8408
|
+
}
|
|
8409
|
+
/* Large screen and bigger */
|
|
8410
|
+
@media (min-width: 1600px) {
|
|
8411
|
+
.uk-flex-stretch\@xl {
|
|
8412
|
+
align-items: stretch;
|
|
8413
|
+
}
|
|
8414
|
+
.uk-flex-top\@xl {
|
|
8415
|
+
align-items: flex-start;
|
|
8416
|
+
}
|
|
8417
|
+
.uk-flex-middle\@xl {
|
|
8418
|
+
align-items: center;
|
|
8419
|
+
}
|
|
8420
|
+
.uk-flex-bottom\@xl {
|
|
8421
|
+
align-items: flex-end;
|
|
8422
|
+
}
|
|
8423
|
+
}
|
|
8240
8424
|
/* Direction
|
|
8241
8425
|
========================================================================== */
|
|
8242
8426
|
.uk-flex-row {
|
|
@@ -8251,6 +8435,42 @@ iframe[data-uk-cover] {
|
|
|
8251
8435
|
.uk-flex-column-reverse {
|
|
8252
8436
|
flex-direction: column-reverse;
|
|
8253
8437
|
}
|
|
8438
|
+
/* Phone landscape and bigger */
|
|
8439
|
+
@media (min-width: 640px) {
|
|
8440
|
+
.uk-flex-row\@s {
|
|
8441
|
+
flex-direction: row;
|
|
8442
|
+
}
|
|
8443
|
+
.uk-flex-column\@s {
|
|
8444
|
+
flex-direction: column;
|
|
8445
|
+
}
|
|
8446
|
+
}
|
|
8447
|
+
/* Tablet landscape and bigger */
|
|
8448
|
+
@media (min-width: 960px) {
|
|
8449
|
+
.uk-flex-row\@m {
|
|
8450
|
+
flex-direction: row;
|
|
8451
|
+
}
|
|
8452
|
+
.uk-flex-column\@m {
|
|
8453
|
+
flex-direction: column;
|
|
8454
|
+
}
|
|
8455
|
+
}
|
|
8456
|
+
/* Desktop and bigger */
|
|
8457
|
+
@media (min-width: 1200px) {
|
|
8458
|
+
.uk-flex-row\@l {
|
|
8459
|
+
flex-direction: row;
|
|
8460
|
+
}
|
|
8461
|
+
.uk-flex-column\@l {
|
|
8462
|
+
flex-direction: column;
|
|
8463
|
+
}
|
|
8464
|
+
}
|
|
8465
|
+
/* Large screen and bigger */
|
|
8466
|
+
@media (min-width: 1600px) {
|
|
8467
|
+
.uk-flex-row\@xl {
|
|
8468
|
+
flex-direction: row;
|
|
8469
|
+
}
|
|
8470
|
+
.uk-flex-column\@xl {
|
|
8471
|
+
flex-direction: column;
|
|
8472
|
+
}
|
|
8473
|
+
}
|
|
8254
8474
|
/* Wrap
|
|
8255
8475
|
========================================================================== */
|
|
8256
8476
|
.uk-flex-nowrap {
|
|
@@ -8337,6 +8557,9 @@ iframe[data-uk-cover] {
|
|
|
8337
8557
|
* Initial: 0 1 auto
|
|
8338
8558
|
* Content dimensions, but shrinks
|
|
8339
8559
|
*/
|
|
8560
|
+
.uk-flex-initial {
|
|
8561
|
+
flex: initial;
|
|
8562
|
+
}
|
|
8340
8563
|
/*
|
|
8341
8564
|
* No Flex: 0 0 auto
|
|
8342
8565
|
* Content dimensions
|
|
@@ -8358,6 +8581,54 @@ iframe[data-uk-cover] {
|
|
|
8358
8581
|
.uk-flex-1 {
|
|
8359
8582
|
flex: 1;
|
|
8360
8583
|
}
|
|
8584
|
+
/* Phone landscape and bigger */
|
|
8585
|
+
@media (min-width: 640px) {
|
|
8586
|
+
.uk-flex-initial\@s {
|
|
8587
|
+
flex: initial;
|
|
8588
|
+
}
|
|
8589
|
+
.uk-flex-none\@s {
|
|
8590
|
+
flex: none;
|
|
8591
|
+
}
|
|
8592
|
+
.uk-flex-1\@s {
|
|
8593
|
+
flex: 1;
|
|
8594
|
+
}
|
|
8595
|
+
}
|
|
8596
|
+
/* Tablet landscape and bigger */
|
|
8597
|
+
@media (min-width: 960px) {
|
|
8598
|
+
.uk-flex-initial\@m {
|
|
8599
|
+
flex: initial;
|
|
8600
|
+
}
|
|
8601
|
+
.uk-flex-none\@m {
|
|
8602
|
+
flex: none;
|
|
8603
|
+
}
|
|
8604
|
+
.uk-flex-1\@m {
|
|
8605
|
+
flex: 1;
|
|
8606
|
+
}
|
|
8607
|
+
}
|
|
8608
|
+
/* Desktop and bigger */
|
|
8609
|
+
@media (min-width: 1200px) {
|
|
8610
|
+
.uk-flex-initial\@l {
|
|
8611
|
+
flex: initial;
|
|
8612
|
+
}
|
|
8613
|
+
.uk-flex-none\@l {
|
|
8614
|
+
flex: none;
|
|
8615
|
+
}
|
|
8616
|
+
.uk-flex-1\@l {
|
|
8617
|
+
flex: 1;
|
|
8618
|
+
}
|
|
8619
|
+
}
|
|
8620
|
+
/* Large screen and bigger */
|
|
8621
|
+
@media (min-width: 1600px) {
|
|
8622
|
+
.uk-flex-initial\@xl {
|
|
8623
|
+
flex: initial;
|
|
8624
|
+
}
|
|
8625
|
+
.uk-flex-none\@xl {
|
|
8626
|
+
flex: none;
|
|
8627
|
+
}
|
|
8628
|
+
.uk-flex-1\@xl {
|
|
8629
|
+
flex: 1;
|
|
8630
|
+
}
|
|
8631
|
+
}
|
|
8361
8632
|
/* ========================================================================
|
|
8362
8633
|
Component: Margin
|
|
8363
8634
|
========================================================================== */
|
|
@@ -11926,17 +12197,17 @@ iframe[data-uk-cover] {
|
|
|
11926
12197
|
.uk-offcanvas-bar .uk-logo:hover {
|
|
11927
12198
|
color: #fff;
|
|
11928
12199
|
}
|
|
11929
|
-
.uk-light .uk-logo:has(.uk-logo-inverse) > :not(picture:has(
|
|
11930
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(
|
|
11931
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(
|
|
11932
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(
|
|
11933
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(
|
|
11934
|
-
.uk-card-primary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(
|
|
11935
|
-
.uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(
|
|
11936
|
-
.uk-card-secondary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(
|
|
11937
|
-
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(
|
|
11938
|
-
.uk-overlay-primary .uk-logo:has(.uk-logo-inverse) > :not(picture:has(
|
|
11939
|
-
.uk-offcanvas-bar .uk-logo:has(.uk-logo-inverse) > :not(picture:has(
|
|
12200
|
+
.uk-light .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
|
|
12201
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
|
|
12202
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
|
|
12203
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
|
|
12204
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
|
|
12205
|
+
.uk-card-primary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
|
|
12206
|
+
.uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
|
|
12207
|
+
.uk-card-secondary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
|
|
12208
|
+
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
|
|
12209
|
+
.uk-overlay-primary .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
|
|
12210
|
+
.uk-offcanvas-bar .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse) {
|
|
11940
12211
|
display: none;
|
|
11941
12212
|
}
|
|
11942
12213
|
.uk-light .uk-logo-inverse,
|