uikit 3.14.4-dev.310965bc8 → 3.14.4-dev.51a1b06ef
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 +13 -0
- package/dist/css/uikit-core-rtl.css +114 -63
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +114 -63
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +114 -64
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +114 -64
- 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 +6 -14
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +6 -14
- 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 +4 -5
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +4 -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 +4 -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 +3 -3
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +19 -19
- 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 +144 -94
- 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 +152 -100
- 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 +6 -2
- package/src/js/core/icon.js +16 -0
- package/src/js/core/index.js +2 -0
- package/src/js/core/leader.js +2 -2
- package/src/js/core/navbar.js +44 -15
- package/src/js/core/scroll.js +37 -10
- package/src/js/core/sticky.js +8 -9
- package/src/js/mixin/media.js +4 -5
- package/src/js/mixin/position.js +19 -11
- package/src/js/mixin/togglable.js +8 -17
- package/src/js/util/position.js +1 -2
- package/src/js/util/style.js +4 -13
- package/src/js/util/viewport.js +4 -31
- package/src/less/components/dropdown.less +14 -0
- package/src/less/components/leader.less +1 -1
- package/src/less/components/nav.less +15 -40
- package/src/less/components/navbar.less +100 -13
- package/src/less/components/utility.less +10 -2
- package/src/less/theme/nav.less +0 -8
- package/src/less/theme/navbar.less +4 -6
- package/src/scss/components/dropdown.scss +14 -0
- package/src/scss/components/leader.scss +1 -1
- package/src/scss/components/nav.scss +14 -28
- package/src/scss/components/navbar.scss +88 -13
- package/src/scss/components/utility.scss +8 -1
- package/src/scss/mixins-theme.scss +17 -19
- package/src/scss/mixins.scss +16 -15
- package/src/scss/theme/nav.scss +0 -8
- package/src/scss/theme/navbar.scss +3 -2
- package/src/scss/variables-theme.scss +17 -11
- package/src/scss/variables.scss +17 -10
- package/tests/drop.html +66 -16
- package/tests/dropdown.html +103 -16
- package/tests/index.html +4 -4
- package/tests/nav.html +22 -89
- package/tests/navbar.html +284 -63
- package/tests/offcanvas.html +16 -16
- 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.51a1b06ef | 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
|
/*
|
|
@@ -4284,7 +4295,7 @@ select.uk-form-width-xsmall {
|
|
|
4284
4295
|
* Pass fill character to JS
|
|
4285
4296
|
*/
|
|
4286
4297
|
:root {
|
|
4287
|
-
--uk-leader-fill-content:
|
|
4298
|
+
--uk-leader-fill-content: .;
|
|
4288
4299
|
}
|
|
4289
4300
|
/* ========================================================================
|
|
4290
4301
|
Component: Notification
|
|
@@ -4929,19 +4940,13 @@ ul.uk-nav-sub {
|
|
|
4929
4940
|
.uk-nav-sub a {
|
|
4930
4941
|
padding: 2px 0;
|
|
4931
4942
|
}
|
|
4932
|
-
/* Parent icon
|
|
4943
|
+
/* Parent icon
|
|
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
|
========================================================================== */
|
|
@@ -5085,15 +5090,19 @@ ul.uk-nav-sub {
|
|
|
5085
5090
|
.uk-nav-center .uk-nav-sub ul {
|
|
5086
5091
|
padding-right: 0;
|
|
5087
5092
|
}
|
|
5088
|
-
/* Parent icon
|
|
5089
|
-
.uk-nav-center.uk-nav-parent-icon
|
|
5093
|
+
/* Parent icon */
|
|
5094
|
+
.uk-nav-center .uk-nav-parent-icon {
|
|
5090
5095
|
margin-right: 0;
|
|
5091
5096
|
}
|
|
5092
5097
|
/* Style modifier
|
|
5093
5098
|
========================================================================== */
|
|
5099
|
+
/*
|
|
5100
|
+
* Divider
|
|
5101
|
+
* Naming is in plural to prevent conflicts with divider sub object.
|
|
5102
|
+
*/
|
|
5094
5103
|
.uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
|
|
5095
|
-
margin-top:
|
|
5096
|
-
padding-top:
|
|
5104
|
+
margin-top: 5px;
|
|
5105
|
+
padding-top: 5px;
|
|
5097
5106
|
border-top: 1px solid #e5e5e5;
|
|
5098
5107
|
}
|
|
5099
5108
|
/* ========================================================================
|
|
@@ -5211,7 +5220,6 @@ ul.uk-nav-sub {
|
|
|
5211
5220
|
/* 3 */
|
|
5212
5221
|
box-sizing: border-box;
|
|
5213
5222
|
min-height: 80px;
|
|
5214
|
-
padding: 0 0;
|
|
5215
5223
|
/* 4 */
|
|
5216
5224
|
font-size: 0.875rem;
|
|
5217
5225
|
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";
|
|
@@ -5222,6 +5230,7 @@ ul.uk-nav-sub {
|
|
|
5222
5230
|
* Nav items
|
|
5223
5231
|
*/
|
|
5224
5232
|
.uk-navbar-nav > li > a {
|
|
5233
|
+
padding: 0 0;
|
|
5225
5234
|
color: #999;
|
|
5226
5235
|
text-transform: uppercase;
|
|
5227
5236
|
transition: 0.1s ease-in-out;
|
|
@@ -5243,6 +5252,14 @@ ul.uk-nav-sub {
|
|
|
5243
5252
|
.uk-navbar-nav > li.uk-active > a {
|
|
5244
5253
|
color: #333;
|
|
5245
5254
|
}
|
|
5255
|
+
/* Parent icon modifier
|
|
5256
|
+
========================================================================== */
|
|
5257
|
+
.uk-navbar-parent-icon {
|
|
5258
|
+
margin-right: 4px;
|
|
5259
|
+
}
|
|
5260
|
+
.uk-navbar-nav > li > a[aria-expanded="true"] .uk-navbar-parent-icon {
|
|
5261
|
+
transform: rotate(-180deg);
|
|
5262
|
+
}
|
|
5246
5263
|
/* Item
|
|
5247
5264
|
========================================================================== */
|
|
5248
5265
|
.uk-navbar-item {
|
|
@@ -5258,6 +5275,7 @@ ul.uk-nav-sub {
|
|
|
5258
5275
|
/* Toggle
|
|
5259
5276
|
========================================================================== */
|
|
5260
5277
|
.uk-navbar-toggle {
|
|
5278
|
+
padding: 0 0;
|
|
5261
5279
|
color: #999;
|
|
5262
5280
|
}
|
|
5263
5281
|
.uk-navbar-toggle:hover,
|
|
@@ -5319,6 +5337,12 @@ ul.uk-nav-sub {
|
|
|
5319
5337
|
.uk-navbar-dropdown.uk-open {
|
|
5320
5338
|
display: block;
|
|
5321
5339
|
}
|
|
5340
|
+
/*
|
|
5341
|
+
* Remove margin from the last-child
|
|
5342
|
+
*/
|
|
5343
|
+
.uk-navbar-dropdown > :last-child {
|
|
5344
|
+
margin-bottom: 0;
|
|
5345
|
+
}
|
|
5322
5346
|
/*
|
|
5323
5347
|
* Grid
|
|
5324
5348
|
* Adopts `uk-grid`
|
|
@@ -5353,9 +5377,17 @@ ul.uk-nav-sub {
|
|
|
5353
5377
|
.uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
|
|
5354
5378
|
width: 1000px;
|
|
5355
5379
|
}
|
|
5380
|
+
/*
|
|
5381
|
+
* Size modifier
|
|
5382
|
+
*/
|
|
5383
|
+
.uk-navbar-dropdown-large {
|
|
5384
|
+
--uk-position-shift-offset: 0;
|
|
5385
|
+
padding: 40px;
|
|
5386
|
+
}
|
|
5356
5387
|
/*
|
|
5357
5388
|
* Stretch modifier
|
|
5358
5389
|
* 1. Allow scrolling
|
|
5390
|
+
* 2. Style
|
|
5359
5391
|
*/
|
|
5360
5392
|
.uk-navbar-dropdown-stretch {
|
|
5361
5393
|
--uk-position-offset: 0;
|
|
@@ -5364,29 +5396,54 @@ ul.uk-nav-sub {
|
|
|
5364
5396
|
/* 1 */
|
|
5365
5397
|
overflow-y: auto;
|
|
5366
5398
|
-webkit-overflow-scrolling: touch;
|
|
5399
|
+
/* 2 */
|
|
5400
|
+
padding: 15px 15px 15px 15px;
|
|
5401
|
+
background: #fff;
|
|
5367
5402
|
box-shadow: none;
|
|
5368
|
-
|
|
5403
|
+
}
|
|
5404
|
+
/* Phone landscape and bigger */
|
|
5405
|
+
@media (min-width: 640px) {
|
|
5406
|
+
.uk-navbar-dropdown-stretch {
|
|
5407
|
+
padding-right: 30px;
|
|
5408
|
+
padding-left: 30px;
|
|
5409
|
+
}
|
|
5410
|
+
}
|
|
5411
|
+
/* Tablet landscape and bigger */
|
|
5412
|
+
@media (min-width: 960px) {
|
|
5413
|
+
.uk-navbar-dropdown-stretch {
|
|
5414
|
+
padding-right: 40px;
|
|
5415
|
+
padding-left: 40px;
|
|
5416
|
+
}
|
|
5369
5417
|
}
|
|
5370
5418
|
/*
|
|
5371
5419
|
* Dropbar modifier
|
|
5372
5420
|
* 1. Reset dropdown width to prevent to early shifting
|
|
5373
|
-
* 2.
|
|
5374
|
-
* 3.
|
|
5375
|
-
* 4. Horizontal padding
|
|
5421
|
+
* 2. Reset style
|
|
5422
|
+
* 3. Padding
|
|
5376
5423
|
*/
|
|
5377
5424
|
.uk-navbar-dropdown-dropbar {
|
|
5378
5425
|
/* 1 */
|
|
5379
5426
|
width: auto;
|
|
5380
5427
|
/* 2 */
|
|
5381
|
-
|
|
5428
|
+
background: transparent;
|
|
5382
5429
|
/* 3 */
|
|
5383
|
-
|
|
5384
|
-
/* 4 */
|
|
5385
|
-
padding-right: 0;
|
|
5386
|
-
padding-left: 0;
|
|
5430
|
+
padding: 25px 0 25px 0;
|
|
5387
5431
|
--uk-position-shift-offset: 0;
|
|
5432
|
+
--uk-position-viewport-offset: 15px;
|
|
5388
5433
|
box-shadow: none;
|
|
5389
5434
|
}
|
|
5435
|
+
/* Phone landscape and bigger */
|
|
5436
|
+
@media (min-width: 640px) {
|
|
5437
|
+
.uk-navbar-dropdown-dropbar {
|
|
5438
|
+
--uk-position-viewport-offset: 30px;
|
|
5439
|
+
}
|
|
5440
|
+
}
|
|
5441
|
+
/* Tablet landscape and bigger */
|
|
5442
|
+
@media (min-width: 960px) {
|
|
5443
|
+
.uk-navbar-dropdown-dropbar {
|
|
5444
|
+
--uk-position-viewport-offset: 40px;
|
|
5445
|
+
}
|
|
5446
|
+
}
|
|
5390
5447
|
/* Dropdown Nav
|
|
5391
5448
|
* Adopts `uk-nav`
|
|
5392
5449
|
========================================================================== */
|
|
@@ -7876,6 +7933,14 @@ iframe[data-uk-cover] {
|
|
|
7876
7933
|
.uk-overflow-auto > :last-child {
|
|
7877
7934
|
margin-bottom: 0;
|
|
7878
7935
|
}
|
|
7936
|
+
/* Box Sizing
|
|
7937
|
+
========================================================================== */
|
|
7938
|
+
.uk-box-sizing-content {
|
|
7939
|
+
box-sizing: content-box;
|
|
7940
|
+
}
|
|
7941
|
+
.uk-box-sizing-border {
|
|
7942
|
+
box-sizing: border-box;
|
|
7943
|
+
}
|
|
7879
7944
|
/* Resize
|
|
7880
7945
|
========================================================================== */
|
|
7881
7946
|
.uk-resize {
|
|
@@ -8154,7 +8219,7 @@ iframe[data-uk-cover] {
|
|
|
8154
8219
|
/* 1 */
|
|
8155
8220
|
text-decoration: none;
|
|
8156
8221
|
}
|
|
8157
|
-
.uk-logo
|
|
8222
|
+
.uk-logo :where(img, svg, video) {
|
|
8158
8223
|
display: block;
|
|
8159
8224
|
}
|
|
8160
8225
|
.uk-logo-inverse {
|
|
@@ -11122,32 +11187,6 @@ iframe[data-uk-cover] {
|
|
|
11122
11187
|
.uk-offcanvas-bar .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
|
|
11123
11188
|
border-top-color: rgba(255, 255, 255, 0.2);
|
|
11124
11189
|
}
|
|
11125
|
-
.uk-light .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11126
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11127
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11128
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11129
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11130
|
-
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11131
|
-
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11132
|
-
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11133
|
-
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11134
|
-
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent > a::after,
|
|
11135
|
-
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent > a::after {
|
|
11136
|
-
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");
|
|
11137
|
-
}
|
|
11138
|
-
.uk-light .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11139
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11140
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11141
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11142
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11143
|
-
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11144
|
-
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11145
|
-
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11146
|
-
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11147
|
-
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
11148
|
-
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
|
|
11149
|
-
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");
|
|
11150
|
-
}
|
|
11151
11190
|
.uk-light .uk-nav-default > li > a,
|
|
11152
11191
|
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a,
|
|
11153
11192
|
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a,
|
|
@@ -12024,17 +12063,28 @@ iframe[data-uk-cover] {
|
|
|
12024
12063
|
.uk-offcanvas-bar .uk-logo:hover {
|
|
12025
12064
|
color: #fff;
|
|
12026
12065
|
}
|
|
12027
|
-
.uk-light .uk-logo > :not(
|
|
12028
|
-
.uk-
|
|
12029
|
-
.uk-section-
|
|
12030
|
-
.uk-
|
|
12031
|
-
.uk-
|
|
12032
|
-
.uk-
|
|
12033
|
-
.uk-
|
|
12034
|
-
.uk-
|
|
12035
|
-
.uk-
|
|
12036
|
-
.uk-
|
|
12037
|
-
.uk-
|
|
12066
|
+
.uk-light .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12067
|
+
.uk-light .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12068
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12069
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12070
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12071
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12072
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12073
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12074
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12075
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12076
|
+
.uk-card-primary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12077
|
+
.uk-card-primary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12078
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12079
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12080
|
+
.uk-card-secondary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12081
|
+
.uk-card-secondary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12082
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12083
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12084
|
+
.uk-overlay-primary .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12085
|
+
.uk-overlay-primary .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
12086
|
+
.uk-offcanvas-bar .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
12087
|
+
.uk-offcanvas-bar .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) {
|
|
12038
12088
|
display: none;
|
|
12039
12089
|
}
|
|
12040
12090
|
.uk-light .uk-logo-inverse,
|