uikit 3.14.4-dev.cd89debeb → 3.14.4-dev.d472fe41a
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 +15 -0
- package/dist/css/uikit-core-rtl.css +134 -66
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +134 -66
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +131 -67
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +131 -67
- 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 +7 -5
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +27 -20
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +27 -20
- 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 +22 -7
- 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 +22 -7
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +3 -3
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +23 -16
- 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 +114 -66
- 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 +167 -102
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/images/{backgrounds/nav-parent-open.svg → components/nav-parent-icon-large.svg} +0 -0
- package/src/images/components/nav-parent-icon.svg +3 -0
- package/src/images/components/navbar-parent-icon.svg +3 -0
- package/src/js/components/filter.js +5 -3
- package/src/js/components/sortable.js +2 -3
- package/src/js/core/height-viewport.js +11 -5
- package/src/js/core/icon.js +16 -0
- package/src/js/core/index.js +2 -0
- package/src/js/core/navbar.js +44 -15
- package/src/js/core/sticky.js +8 -9
- package/src/js/mixin/position.js +24 -7
- package/src/js/mixin/slider-drag.js +20 -8
- package/src/js/mixin/togglable.js +8 -17
- package/src/js/util/dimensions.js +6 -6
- package/src/js/util/position.js +1 -0
- package/src/js/util/viewport.js +2 -27
- package/src/less/components/dropdown.less +14 -0
- package/src/less/components/nav.less +29 -41
- package/src/less/components/navbar.less +101 -14
- package/src/less/components/utility.less +21 -4
- package/src/less/theme/nav.less +3 -15
- package/src/less/theme/navbar.less +4 -6
- package/src/scss/components/dropdown.scss +14 -0
- package/src/scss/components/nav.scss +29 -30
- package/src/scss/components/navbar.scss +89 -14
- package/src/scss/components/utility.scss +19 -3
- package/src/scss/mixins-theme.scss +16 -19
- package/src/scss/mixins.scss +14 -14
- package/src/scss/theme/nav.scss +3 -15
- package/src/scss/theme/navbar.scss +3 -2
- package/src/scss/variables-theme.scss +25 -14
- package/src/scss/variables.scss +25 -12
- package/tests/drop.html +66 -16
- package/tests/dropdown.html +103 -16
- package/tests/index.html +3 -3
- package/tests/nav.html +20 -87
- package/tests/navbar.html +2131 -1130
- package/tests/offcanvas.html +8 -8
- package/tests/utility.html +19 -0
- package/src/images/backgrounds/nav-parent-close.svg +0 -3
package/dist/css/uikit-rtl.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.14.4-dev.
|
|
1
|
+
/*! UIkit 3.14.4-dev.d472fe41a | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -3549,6 +3549,17 @@ select.uk-form-width-xsmall {
|
|
|
3549
3549
|
.uk-dropdown.uk-open {
|
|
3550
3550
|
display: block;
|
|
3551
3551
|
}
|
|
3552
|
+
/*
|
|
3553
|
+
* Remove margin from the last-child
|
|
3554
|
+
*/
|
|
3555
|
+
.uk-dropdown > :last-child {
|
|
3556
|
+
margin-bottom: 0;
|
|
3557
|
+
}
|
|
3558
|
+
/* Size modifier
|
|
3559
|
+
========================================================================== */
|
|
3560
|
+
.uk-dropdown-large {
|
|
3561
|
+
padding: 40px;
|
|
3562
|
+
}
|
|
3552
3563
|
/* Stretch modifier
|
|
3553
3564
|
========================================================================== */
|
|
3554
3565
|
/*
|
|
@@ -4931,17 +4942,11 @@ ul.uk-nav-sub {
|
|
|
4931
4942
|
}
|
|
4932
4943
|
/* Parent icon modifier
|
|
4933
4944
|
========================================================================== */
|
|
4934
|
-
.uk-nav-parent-icon
|
|
4935
|
-
content: "";
|
|
4936
|
-
width: 1.5em;
|
|
4937
|
-
height: 1.5em;
|
|
4945
|
+
.uk-nav-parent-icon {
|
|
4938
4946
|
margin-right: auto;
|
|
4939
|
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
|
4940
|
-
background-repeat: no-repeat;
|
|
4941
|
-
background-position: 50% 50%;
|
|
4942
4947
|
}
|
|
4943
|
-
.uk-nav
|
|
4944
|
-
|
|
4948
|
+
.uk-nav > li > a[aria-expanded="true"] .uk-nav-parent-icon {
|
|
4949
|
+
transform: rotate(-180deg);
|
|
4945
4950
|
}
|
|
4946
4951
|
/* Header
|
|
4947
4952
|
========================================================================== */
|
|
@@ -4962,6 +4967,7 @@ ul.uk-nav-sub {
|
|
|
4962
4967
|
========================================================================== */
|
|
4963
4968
|
.uk-nav-default {
|
|
4964
4969
|
font-size: 0.875rem;
|
|
4970
|
+
line-height: 1.5;
|
|
4965
4971
|
}
|
|
4966
4972
|
/*
|
|
4967
4973
|
* Items
|
|
@@ -4998,6 +5004,10 @@ ul.uk-nav-sub {
|
|
|
4998
5004
|
/*
|
|
4999
5005
|
* Sublists
|
|
5000
5006
|
*/
|
|
5007
|
+
.uk-nav-default .uk-nav-sub {
|
|
5008
|
+
font-size: 0.875rem;
|
|
5009
|
+
line-height: 1.5;
|
|
5010
|
+
}
|
|
5001
5011
|
.uk-nav-default .uk-nav-sub a {
|
|
5002
5012
|
color: #999;
|
|
5003
5013
|
}
|
|
@@ -5009,12 +5019,14 @@ ul.uk-nav-sub {
|
|
|
5009
5019
|
}
|
|
5010
5020
|
/* Primary modifier
|
|
5011
5021
|
========================================================================== */
|
|
5022
|
+
.uk-nav-primary {
|
|
5023
|
+
font-size: 1.5rem;
|
|
5024
|
+
line-height: 1.5;
|
|
5025
|
+
}
|
|
5012
5026
|
/*
|
|
5013
5027
|
* Items
|
|
5014
5028
|
*/
|
|
5015
5029
|
.uk-nav-primary > li > a {
|
|
5016
|
-
font-size: 1.5rem;
|
|
5017
|
-
line-height: 1.5;
|
|
5018
5030
|
color: #999;
|
|
5019
5031
|
}
|
|
5020
5032
|
/* Hover */
|
|
@@ -5046,6 +5058,10 @@ ul.uk-nav-sub {
|
|
|
5046
5058
|
/*
|
|
5047
5059
|
* Sublists
|
|
5048
5060
|
*/
|
|
5061
|
+
.uk-nav-primary .uk-nav-sub {
|
|
5062
|
+
font-size: 1.25rem;
|
|
5063
|
+
line-height: 1.5;
|
|
5064
|
+
}
|
|
5049
5065
|
.uk-nav-primary .uk-nav-sub a {
|
|
5050
5066
|
color: #999;
|
|
5051
5067
|
}
|
|
@@ -5075,14 +5091,14 @@ ul.uk-nav-sub {
|
|
|
5075
5091
|
padding-right: 0;
|
|
5076
5092
|
}
|
|
5077
5093
|
/* Parent icon modifier */
|
|
5078
|
-
.uk-nav-center.uk-nav-parent-icon
|
|
5094
|
+
.uk-nav-center .uk-nav-parent-icon {
|
|
5079
5095
|
margin-right: 0;
|
|
5080
5096
|
}
|
|
5081
5097
|
/* Style modifier
|
|
5082
5098
|
========================================================================== */
|
|
5083
5099
|
.uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
|
|
5084
|
-
margin-top:
|
|
5085
|
-
padding-top:
|
|
5100
|
+
margin-top: 5px;
|
|
5101
|
+
padding-top: 5px;
|
|
5086
5102
|
border-top: 1px solid #e5e5e5;
|
|
5087
5103
|
}
|
|
5088
5104
|
/* ========================================================================
|
|
@@ -5200,7 +5216,6 @@ ul.uk-nav-sub {
|
|
|
5200
5216
|
/* 3 */
|
|
5201
5217
|
box-sizing: border-box;
|
|
5202
5218
|
min-height: 80px;
|
|
5203
|
-
padding: 0 0;
|
|
5204
5219
|
/* 4 */
|
|
5205
5220
|
font-size: 0.875rem;
|
|
5206
5221
|
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";
|
|
@@ -5211,6 +5226,7 @@ ul.uk-nav-sub {
|
|
|
5211
5226
|
* Nav items
|
|
5212
5227
|
*/
|
|
5213
5228
|
.uk-navbar-nav > li > a {
|
|
5229
|
+
padding: 0 0;
|
|
5214
5230
|
color: #999;
|
|
5215
5231
|
text-transform: uppercase;
|
|
5216
5232
|
transition: 0.1s ease-in-out;
|
|
@@ -5232,6 +5248,14 @@ ul.uk-nav-sub {
|
|
|
5232
5248
|
.uk-navbar-nav > li.uk-active > a {
|
|
5233
5249
|
color: #333;
|
|
5234
5250
|
}
|
|
5251
|
+
/* Parent icon modifier
|
|
5252
|
+
========================================================================== */
|
|
5253
|
+
.uk-navbar-parent-icon {
|
|
5254
|
+
margin-right: 4px;
|
|
5255
|
+
}
|
|
5256
|
+
.uk-navbar-nav > li > a[aria-expanded="true"] .uk-navbar-parent-icon {
|
|
5257
|
+
transform: rotate(-180deg);
|
|
5258
|
+
}
|
|
5235
5259
|
/* Item
|
|
5236
5260
|
========================================================================== */
|
|
5237
5261
|
.uk-navbar-item {
|
|
@@ -5247,6 +5271,7 @@ ul.uk-nav-sub {
|
|
|
5247
5271
|
/* Toggle
|
|
5248
5272
|
========================================================================== */
|
|
5249
5273
|
.uk-navbar-toggle {
|
|
5274
|
+
padding: 0 0;
|
|
5250
5275
|
color: #999;
|
|
5251
5276
|
}
|
|
5252
5277
|
.uk-navbar-toggle:hover,
|
|
@@ -5308,6 +5333,12 @@ ul.uk-nav-sub {
|
|
|
5308
5333
|
.uk-navbar-dropdown.uk-open {
|
|
5309
5334
|
display: block;
|
|
5310
5335
|
}
|
|
5336
|
+
/*
|
|
5337
|
+
* Remove margin from the last-child
|
|
5338
|
+
*/
|
|
5339
|
+
.uk-navbar-dropdown > :last-child {
|
|
5340
|
+
margin-bottom: 0;
|
|
5341
|
+
}
|
|
5311
5342
|
/*
|
|
5312
5343
|
* Grid
|
|
5313
5344
|
* Adopts `uk-grid`
|
|
@@ -5342,9 +5373,17 @@ ul.uk-nav-sub {
|
|
|
5342
5373
|
.uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
|
|
5343
5374
|
width: 1000px;
|
|
5344
5375
|
}
|
|
5376
|
+
/*
|
|
5377
|
+
* Size modifier
|
|
5378
|
+
*/
|
|
5379
|
+
.uk-navbar-dropdown-large {
|
|
5380
|
+
--uk-position-shift-offset: 0;
|
|
5381
|
+
padding: 40px;
|
|
5382
|
+
}
|
|
5345
5383
|
/*
|
|
5346
5384
|
* Stretch modifier
|
|
5347
5385
|
* 1. Allow scrolling
|
|
5386
|
+
* 2. Style
|
|
5348
5387
|
*/
|
|
5349
5388
|
.uk-navbar-dropdown-stretch {
|
|
5350
5389
|
--uk-position-offset: 0;
|
|
@@ -5353,30 +5392,54 @@ ul.uk-nav-sub {
|
|
|
5353
5392
|
/* 1 */
|
|
5354
5393
|
overflow-y: auto;
|
|
5355
5394
|
-webkit-overflow-scrolling: touch;
|
|
5395
|
+
/* 2 */
|
|
5396
|
+
padding: 15px 15px 15px 15px;
|
|
5397
|
+
background: #fff;
|
|
5356
5398
|
box-shadow: none;
|
|
5357
|
-
|
|
5399
|
+
}
|
|
5400
|
+
/* Phone landscape and bigger */
|
|
5401
|
+
@media (min-width: 640px) {
|
|
5402
|
+
.uk-navbar-dropdown-stretch {
|
|
5403
|
+
padding-right: 30px;
|
|
5404
|
+
padding-left: 30px;
|
|
5405
|
+
}
|
|
5406
|
+
}
|
|
5407
|
+
/* Tablet landscape and bigger */
|
|
5408
|
+
@media (min-width: 960px) {
|
|
5409
|
+
.uk-navbar-dropdown-stretch {
|
|
5410
|
+
padding-right: 40px;
|
|
5411
|
+
padding-left: 40px;
|
|
5412
|
+
}
|
|
5358
5413
|
}
|
|
5359
5414
|
/*
|
|
5360
5415
|
* Dropbar modifier
|
|
5361
5416
|
* 1. Reset dropdown width to prevent to early shifting
|
|
5362
|
-
* 2.
|
|
5363
|
-
* 3.
|
|
5364
|
-
* 4. Horizontal padding
|
|
5417
|
+
* 2. Reset style
|
|
5418
|
+
* 3. Padding
|
|
5365
5419
|
*/
|
|
5366
5420
|
.uk-navbar-dropdown-dropbar {
|
|
5367
5421
|
/* 1 */
|
|
5368
5422
|
width: auto;
|
|
5369
5423
|
/* 2 */
|
|
5370
|
-
|
|
5371
|
-
--uk-position-viewport-offset: 0;
|
|
5424
|
+
background: transparent;
|
|
5372
5425
|
/* 3 */
|
|
5373
|
-
|
|
5374
|
-
/* 4 */
|
|
5375
|
-
padding-right: 0;
|
|
5376
|
-
padding-left: 0;
|
|
5426
|
+
padding: 25px 0 25px 0;
|
|
5377
5427
|
--uk-position-shift-offset: 0;
|
|
5428
|
+
--uk-position-viewport-offset: 15px;
|
|
5378
5429
|
box-shadow: none;
|
|
5379
5430
|
}
|
|
5431
|
+
/* Phone landscape and bigger */
|
|
5432
|
+
@media (min-width: 640px) {
|
|
5433
|
+
.uk-navbar-dropdown-dropbar {
|
|
5434
|
+
--uk-position-viewport-offset: 30px;
|
|
5435
|
+
}
|
|
5436
|
+
}
|
|
5437
|
+
/* Tablet landscape and bigger */
|
|
5438
|
+
@media (min-width: 960px) {
|
|
5439
|
+
.uk-navbar-dropdown-dropbar {
|
|
5440
|
+
--uk-position-viewport-offset: 40px;
|
|
5441
|
+
}
|
|
5442
|
+
}
|
|
5380
5443
|
/* Dropdown Nav
|
|
5381
5444
|
* Adopts `uk-nav`
|
|
5382
5445
|
========================================================================== */
|
|
@@ -7866,6 +7929,14 @@ iframe[data-uk-cover] {
|
|
|
7866
7929
|
.uk-overflow-auto > :last-child {
|
|
7867
7930
|
margin-bottom: 0;
|
|
7868
7931
|
}
|
|
7932
|
+
/* Box Sizing
|
|
7933
|
+
========================================================================== */
|
|
7934
|
+
.uk-box-sizing-content {
|
|
7935
|
+
box-sizing: content-box;
|
|
7936
|
+
}
|
|
7937
|
+
.uk-box-sizing-border {
|
|
7938
|
+
box-sizing: border-box;
|
|
7939
|
+
}
|
|
7869
7940
|
/* Resize
|
|
7870
7941
|
========================================================================== */
|
|
7871
7942
|
.uk-resize {
|
|
@@ -8121,23 +8192,31 @@ iframe[data-uk-cover] {
|
|
|
8121
8192
|
/* Logo
|
|
8122
8193
|
========================================================================== */
|
|
8123
8194
|
/*
|
|
8124
|
-
* 1.
|
|
8195
|
+
* 1. Style
|
|
8196
|
+
* 2. Required for `a`
|
|
8197
|
+
* 3. Behave like image but can be overridden through flex utility classes
|
|
8125
8198
|
*/
|
|
8126
8199
|
.uk-logo {
|
|
8200
|
+
/* 1 */
|
|
8127
8201
|
font-size: 1.5rem;
|
|
8128
8202
|
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";
|
|
8129
8203
|
color: #333;
|
|
8130
|
-
/*
|
|
8204
|
+
/* 2 */
|
|
8131
8205
|
text-decoration: none;
|
|
8132
8206
|
}
|
|
8207
|
+
/* 3 */
|
|
8208
|
+
:where(.uk-logo) {
|
|
8209
|
+
display: inline-block;
|
|
8210
|
+
vertical-align: middle;
|
|
8211
|
+
}
|
|
8133
8212
|
/* Hover */
|
|
8134
8213
|
.uk-logo:hover {
|
|
8135
8214
|
color: #333;
|
|
8136
8215
|
/* 1 */
|
|
8137
8216
|
text-decoration: none;
|
|
8138
8217
|
}
|
|
8139
|
-
.uk-logo
|
|
8140
|
-
display:
|
|
8218
|
+
.uk-logo :where(img, svg, video) {
|
|
8219
|
+
display: block;
|
|
8141
8220
|
}
|
|
8142
8221
|
.uk-logo-inverse {
|
|
8143
8222
|
display: none;
|
|
@@ -11104,32 +11183,6 @@ iframe[data-uk-cover] {
|
|
|
11104
11183
|
.uk-offcanvas-bar .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
|
|
11105
11184
|
border-top-color: rgba(255, 255, 255, 0.2);
|
|
11106
11185
|
}
|
|
11107
|
-
.uk-light .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11108
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11109
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11110
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11111
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11112
|
-
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11113
|
-
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11114
|
-
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11115
|
-
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11116
|
-
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11117
|
-
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent > a::after {
|
|
11118
|
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
|
11119
|
-
}
|
|
11120
|
-
.uk-light .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11121
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11122
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11123
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11124
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11125
|
-
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11126
|
-
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11127
|
-
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11128
|
-
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11129
|
-
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11130
|
-
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
|
|
11131
|
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
|
11132
|
-
}
|
|
11133
11186
|
.uk-light .uk-nav-default > li > a,
|
|
11134
11187
|
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a,
|
|
11135
11188
|
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a,
|
|
@@ -12006,17 +12059,28 @@ iframe[data-uk-cover] {
|
|
|
12006
12059
|
.uk-offcanvas-bar .uk-logo:hover {
|
|
12007
12060
|
color: #fff;
|
|
12008
12061
|
}
|
|
12009
|
-
.uk-light .uk-logo > :not(
|
|
12010
|
-
.uk-
|
|
12011
|
-
.uk-section-
|
|
12012
|
-
.uk-
|
|
12013
|
-
.uk-
|
|
12014
|
-
.uk-
|
|
12015
|
-
.uk-
|
|
12016
|
-
.uk-
|
|
12017
|
-
.uk-
|
|
12018
|
-
.uk-
|
|
12019
|
-
.uk-
|
|
12062
|
+
.uk-light .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12063
|
+
.uk-light .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12064
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12065
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12066
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12067
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12068
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12069
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12070
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12071
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12072
|
+
.uk-card-primary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12073
|
+
.uk-card-primary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12074
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12075
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12076
|
+
.uk-card-secondary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12077
|
+
.uk-card-secondary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12078
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12079
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12080
|
+
.uk-overlay-primary .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12081
|
+
.uk-overlay-primary .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12082
|
+
.uk-offcanvas-bar .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12083
|
+
.uk-offcanvas-bar .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) {
|
|
12020
12084
|
display: none;
|
|
12021
12085
|
}
|
|
12022
12086
|
.uk-light .uk-logo-inverse,
|