Skip to content

Commit 418b362

Browse files
committed
Update UIkit 3.17.8
1 parent 6faf5eb commit 418b362

File tree

8 files changed

+7112
-6786
lines changed

8 files changed

+7112
-6786
lines changed

assets/css/uikit-rtl.css

Lines changed: 86 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! UIkit 3.16.19 | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */
1+
/*! UIkit 3.17.8 | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */
22
/* ========================================================================
33
Component: Base
44
========================================================================== */
@@ -219,7 +219,8 @@ h6,
219219
.uk-heading-medium,
220220
.uk-heading-large,
221221
.uk-heading-xlarge,
222-
.uk-heading-2xlarge {
222+
.uk-heading-2xlarge,
223+
.uk-heading-3xlarge {
223224
margin: 0 0 20px 0;
224225
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
225226
font-weight: normal;
@@ -243,7 +244,8 @@ h6,
243244
* + .uk-heading-medium,
244245
* + .uk-heading-large,
245246
* + .uk-heading-xlarge,
246-
* + .uk-heading-2xlarge {
247+
* + .uk-heading-2xlarge,
248+
* + .uk-heading-3xlarge {
247249
margin-top: 40px;
248250
}
249251
/*
@@ -517,6 +519,10 @@ a.uk-link-reset,
517519
font-size: 6rem;
518520
line-height: 1;
519521
}
522+
.uk-heading-3xlarge {
523+
font-size: 8rem;
524+
line-height: 1;
525+
}
520526
/* Tablet Landscape and bigger */
521527
@media (min-width: 960px) {
522528
.uk-heading-small {
@@ -534,6 +540,9 @@ a.uk-link-reset,
534540
.uk-heading-2xlarge {
535541
font-size: 8rem;
536542
}
543+
.uk-heading-3xlarge {
544+
font-size: 11rem;
545+
}
537546
}
538547
/* Laptop and bigger */
539548
@media (min-width: 1200px) {
@@ -549,6 +558,9 @@ a.uk-link-reset,
549558
.uk-heading-2xlarge {
550559
font-size: 11rem;
551560
}
561+
.uk-heading-3xlarge {
562+
font-size: 15rem;
563+
}
552564
}
553565
/* Primary
554566
Deprecated: Use `uk-heading-medium` instead
@@ -1397,11 +1409,14 @@ button.uk-icon:not(:disabled) {
13971409
}
13981410
/*
13991411
* Define consistent border, margin, and padding.
1412+
* 1. Reset `min-width`
14001413
*/
14011414
.uk-fieldset {
14021415
border: none;
14031416
margin: 0;
14041417
padding: 0;
1418+
/* 1 */
1419+
min-width: 0;
14051420
}
14061421
/* Input, select and textarea
14071422
* Allowed: `text`, `password`, `datetime-local`, `date`, `month`,
@@ -2275,24 +2290,28 @@ select.uk-form-width-xsmall {
22752290
*/
22762291
.uk-section-default {
22772292
background: #fff;
2293+
--uk-navbar-color: dark;
22782294
}
22792295
/*
22802296
* Muted
22812297
*/
22822298
.uk-section-muted {
22832299
background: #f8f8f8;
2300+
--uk-navbar-color: dark;
22842301
}
22852302
/*
22862303
* Primary
22872304
*/
22882305
.uk-section-primary {
22892306
background: #1e87f0;
2307+
--uk-navbar-color: light;
22902308
}
22912309
/*
22922310
* Secondary
22932311
*/
22942312
.uk-section-secondary {
22952313
background: #222;
2314+
--uk-navbar-color: light;
22962315
}
22972316
/* Overlap modifier
22982317
========================================================================== */
@@ -3896,10 +3915,14 @@ select.uk-form-width-xsmall {
38963915
/* Container
38973916
========================================================================== */
38983917
/*
3899-
* Clip child elements
3918+
* 1. Clip child elements
3919+
* 2. Prevent accidental scrolling through elements in slide getting focused
39003920
*/
39013921
.uk-slider-container {
3922+
/* 1 */
39023923
overflow: hidden;
3924+
/* 2 */
3925+
overflow: clip;
39033926
}
39043927
/*
39053928
* Widen container to prevent box-shadows from clipping, `large-box-shadow`
@@ -3944,13 +3967,14 @@ select.uk-form-width-xsmall {
39443967
/*
39453968
* 1. Let items take content dimensions (0 0 auto)
39463969
* `max-width` needed to keep image responsiveness and prevent content overflow
3947-
* 3. Create position context
3970+
* 2. Create position context
39483971
*/
39493972
.uk-slider-items > * {
39503973
/* 1 */
39513974
flex: none;
3975+
box-sizing: border-box;
39523976
max-width: 100%;
3953-
/* 3 */
3977+
/* 2 */
39543978
position: relative;
39553979
}
39563980
/* ========================================================================
@@ -5168,11 +5192,14 @@ ul.uk-nav-sub {
51685192
========================================================================== */
51695193
/*
51705194
* 1. Create position context to center navbar group
5195+
* 2. Pass dropbar behind color to JS
51715196
*/
51725197
.uk-navbar {
51735198
display: flex;
51745199
/* 1 */
51755200
position: relative;
5201+
/* 2 */
5202+
--uk-navbar-dropbar-behind-color: dark;
51765203
}
51775204
/* Container
51785205
========================================================================== */
@@ -5519,6 +5546,10 @@ ul.uk-nav-sub {
55195546
/*
55205547
* Adopts `uk-dropnav-dropbar`
55215548
*/
5549+
.uk-navbar-container {
5550+
transition: 0.1s ease-in-out;
5551+
transition-property: background-color;
5552+
}
55225553
/* Tablet landscape and bigger */
55235554
@media (min-width: 960px) {
55245555
.uk-navbar-right,
@@ -5715,16 +5746,19 @@ ul.uk-nav-sub {
57155746
========================================================================== */
57165747
/*
57175748
* 1. Allow items to wrap into the next line
5718-
* 2. Gutter
5719-
* 3. Reset list
5749+
* 2. Center items vertically if they have a different height
5750+
* 3. Gutter
5751+
* 4. Reset list
57205752
*/
57215753
.uk-pagination {
57225754
display: flex;
57235755
/* 1 */
57245756
flex-wrap: wrap;
57255757
/* 2 */
5726-
margin-right: 0;
5758+
align-items: center;
57275759
/* 3 */
5760+
margin-right: 0;
5761+
/* 4 */
57285762
padding: 0;
57295763
list-style: none;
57305764
}
@@ -5744,13 +5778,17 @@ ul.uk-nav-sub {
57445778
/* Items
57455779
========================================================================== */
57465780
/*
5747-
* 1. Prevent gap if child element is `inline-block`, e.g. an icon
5748-
* 2. Style
5781+
* 1. Center content vertically, e.g. an icon
5782+
* 2. Imitate white space gap when using flexbox
5783+
* 3. Style
57495784
*/
57505785
.uk-pagination > * > * {
57515786
/* 1 */
5752-
display: block;
5787+
display: flex;
5788+
align-items: center;
57535789
/* 2 */
5790+
column-gap: 0.25em;
5791+
/* 3 */
57545792
padding: 5px 10px;
57555793
color: #999;
57565794
transition: color 0.1s ease-in-out;
@@ -7675,8 +7713,8 @@ td.uk-text-break {
76757713
* is absolute positioned or if the container has a height
76767714
*/
76777715
/* 1 */
7678-
[uk-cover],
7679-
[data-uk-cover] {
7716+
[uk-cover]:where(canvas, iframe, svg),
7717+
[data-uk-cover]:where(canvas, iframe, svg) {
76807718
/* 2 */
76817719
max-width: none;
76827720
/* 3 */
@@ -7691,6 +7729,18 @@ iframe[uk-cover],
76917729
iframe[data-uk-cover] {
76927730
pointer-events: none;
76937731
}
7732+
[uk-cover]:where(img, video),
7733+
[data-uk-cover]:where(img, video) {
7734+
/* 3 */
7735+
position: absolute;
7736+
top: 0;
7737+
right: 0;
7738+
width: 100%;
7739+
height: 100%;
7740+
box-sizing: border-box;
7741+
object-fit: cover;
7742+
object-position: center;
7743+
}
76947744
/* Container
76957745
========================================================================== */
76967746
/*
@@ -9198,6 +9248,9 @@ iframe[data-uk-cover] {
91989248
.uk-position-z-index-negative {
91999249
z-index: -1;
92009250
}
9251+
.uk-position-z-index-high {
9252+
z-index: 990;
9253+
}
92019254
/* ========================================================================
92029255
Component: Transition
92039256
========================================================================== */
@@ -9322,11 +9375,17 @@ iframe[data-uk-cover] {
93229375
.uk-transition-opaque {
93239376
opacity: 1;
93249377
}
9325-
/* Duration modifiers
9378+
/* Duration modifier
93269379
========================================================================== */
93279380
.uk-transition-slow {
93289381
transition-duration: 0.7s;
93299382
}
9383+
/* Disable modifier
9384+
========================================================================== */
9385+
.uk-transition-disable,
9386+
.uk-transition-disable * {
9387+
transition: none !important;
9388+
}
93309389
/* ========================================================================
93319390
Component: Visibility
93329391
========================================================================== */
@@ -9600,6 +9659,7 @@ iframe[data-uk-cover] {
96009659
.uk-light .uk-heading-large,
96019660
.uk-light .uk-heading-xlarge,
96029661
.uk-light .uk-heading-2xlarge,
9662+
.uk-light .uk-heading-3xlarge,
96039663
.uk-section-primary:not(.uk-preserve-color) h1,
96049664
.uk-section-primary:not(.uk-preserve-color) .uk-h1,
96059665
.uk-section-primary:not(.uk-preserve-color) h2,
@@ -9617,6 +9677,7 @@ iframe[data-uk-cover] {
96179677
.uk-section-primary:not(.uk-preserve-color) .uk-heading-large,
96189678
.uk-section-primary:not(.uk-preserve-color) .uk-heading-xlarge,
96199679
.uk-section-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
9680+
.uk-section-primary:not(.uk-preserve-color) .uk-heading-3xlarge,
96209681
.uk-section-secondary:not(.uk-preserve-color) h1,
96219682
.uk-section-secondary:not(.uk-preserve-color) .uk-h1,
96229683
.uk-section-secondary:not(.uk-preserve-color) h2,
@@ -9634,6 +9695,7 @@ iframe[data-uk-cover] {
96349695
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-large,
96359696
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
96369697
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
9698+
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,
96379699
.uk-tile-primary:not(.uk-preserve-color) h1,
96389700
.uk-tile-primary:not(.uk-preserve-color) .uk-h1,
96399701
.uk-tile-primary:not(.uk-preserve-color) h2,
@@ -9651,6 +9713,7 @@ iframe[data-uk-cover] {
96519713
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-large,
96529714
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-xlarge,
96539715
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
9716+
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-3xlarge,
96549717
.uk-tile-secondary:not(.uk-preserve-color) h1,
96559718
.uk-tile-secondary:not(.uk-preserve-color) .uk-h1,
96569719
.uk-tile-secondary:not(.uk-preserve-color) h2,
@@ -9668,6 +9731,7 @@ iframe[data-uk-cover] {
96689731
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-large,
96699732
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
96709733
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
9734+
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,
96719735
.uk-card-primary.uk-card-body h1,
96729736
.uk-card-primary.uk-card-body .uk-h1,
96739737
.uk-card-primary.uk-card-body h2,
@@ -9685,6 +9749,7 @@ iframe[data-uk-cover] {
96859749
.uk-card-primary.uk-card-body .uk-heading-large,
96869750
.uk-card-primary.uk-card-body .uk-heading-xlarge,
96879751
.uk-card-primary.uk-card-body .uk-heading-2xlarge,
9752+
.uk-card-primary.uk-card-body .uk-heading-3xlarge,
96889753
.uk-card-primary > :not([class*='uk-card-media']) h1,
96899754
.uk-card-primary > :not([class*='uk-card-media']) .uk-h1,
96909755
.uk-card-primary > :not([class*='uk-card-media']) h2,
@@ -9702,6 +9767,7 @@ iframe[data-uk-cover] {
97029767
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-large,
97039768
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-xlarge,
97049769
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-2xlarge,
9770+
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-3xlarge,
97059771
.uk-card-secondary.uk-card-body h1,
97069772
.uk-card-secondary.uk-card-body .uk-h1,
97079773
.uk-card-secondary.uk-card-body h2,
@@ -9719,6 +9785,7 @@ iframe[data-uk-cover] {
97199785
.uk-card-secondary.uk-card-body .uk-heading-large,
97209786
.uk-card-secondary.uk-card-body .uk-heading-xlarge,
97219787
.uk-card-secondary.uk-card-body .uk-heading-2xlarge,
9788+
.uk-card-secondary.uk-card-body .uk-heading-3xlarge,
97229789
.uk-card-secondary > :not([class*='uk-card-media']) h1,
97239790
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h1,
97249791
.uk-card-secondary > :not([class*='uk-card-media']) h2,
@@ -9736,6 +9803,7 @@ iframe[data-uk-cover] {
97369803
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-large,
97379804
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-xlarge,
97389805
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-2xlarge,
9806+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-3xlarge,
97399807
.uk-overlay-primary h1,
97409808
.uk-overlay-primary .uk-h1,
97419809
.uk-overlay-primary h2,
@@ -9753,6 +9821,7 @@ iframe[data-uk-cover] {
97539821
.uk-overlay-primary .uk-heading-large,
97549822
.uk-overlay-primary .uk-heading-xlarge,
97559823
.uk-overlay-primary .uk-heading-2xlarge,
9824+
.uk-overlay-primary .uk-heading-3xlarge,
97569825
.uk-offcanvas-bar h1,
97579826
.uk-offcanvas-bar .uk-h1,
97589827
.uk-offcanvas-bar h2,
@@ -9769,7 +9838,8 @@ iframe[data-uk-cover] {
97699838
.uk-offcanvas-bar .uk-heading-medium,
97709839
.uk-offcanvas-bar .uk-heading-large,
97719840
.uk-offcanvas-bar .uk-heading-xlarge,
9772-
.uk-offcanvas-bar .uk-heading-2xlarge {
9841+
.uk-offcanvas-bar .uk-heading-2xlarge,
9842+
.uk-offcanvas-bar .uk-heading-3xlarge {
97739843
color: #fff;
97749844
}
97759845
.uk-light blockquote,

assets/css/uikit-rtl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)