uikit 3.14.4-dev.d014a9a57 → 3.14.4-dev.d2929b5b7
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 +34 -17
- package/build/util.js +1 -0
- package/dist/css/uikit-core-rtl.css +317 -76
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +317 -76
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +337 -80
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +337 -80
- 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 +77 -120
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +77 -120
- 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 +1 -1
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +88 -134
- 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 +357 -367
- package/dist/js/uikit-core.min.js +14 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +357 -367
- package/dist/js/uikit.min.js +14 -1
- package/package.json +1 -1
- package/src/images/components/navbar-toggle-icon.svg +22 -3
- package/src/js/api/state.js +1 -1
- package/src/js/core/accordion.js +9 -17
- package/src/js/core/alert.js +35 -14
- package/src/js/core/drop.js +90 -61
- package/src/js/core/height-viewport.js +4 -2
- package/src/js/core/index.js +1 -1
- package/src/js/core/leader.js +2 -2
- package/src/js/core/navbar.js +28 -45
- package/src/js/core/scroll.js +37 -10
- package/src/js/mixin/media.js +4 -5
- package/src/js/mixin/modal.js +9 -6
- package/src/js/mixin/position.js +21 -24
- package/src/js/mixin/togglable.js +80 -124
- package/src/js/util/animation.js +4 -3
- package/src/js/util/filter.js +3 -7
- package/src/js/util/position.js +42 -47
- package/src/js/util/style.js +4 -13
- package/src/js/util/viewport.js +3 -5
- package/src/less/components/_import.less +1 -0
- package/src/less/components/drop.less +1 -18
- package/src/less/components/dropbar.less +115 -0
- package/src/less/components/dropdown.less +11 -19
- package/src/less/components/leader.less +1 -1
- package/src/less/components/nav.less +212 -23
- package/src/less/components/navbar.less +16 -52
- package/src/less/components/utility.less +10 -2
- package/src/less/theme/_import.less +1 -0
- package/src/less/theme/dropbar.less +44 -0
- package/src/less/theme/dropdown.less +0 -11
- package/src/less/theme/nav.less +46 -0
- package/src/less/theme/navbar.less +1 -5
- package/src/scss/components/_import.scss +1 -0
- package/src/scss/components/drop.scss +1 -18
- package/src/scss/components/dropbar.scss +115 -0
- package/src/scss/components/dropdown.scss +11 -19
- package/src/scss/components/leader.scss +1 -1
- package/src/scss/components/nav.scss +161 -22
- package/src/scss/components/navbar.scss +16 -52
- package/src/scss/components/utility.scss +8 -1
- package/src/scss/mixins-theme.scss +80 -8
- package/src/scss/mixins.scss +77 -4
- package/src/scss/theme/_import.scss +1 -0
- package/src/scss/theme/dropbar.scss +44 -0
- package/src/scss/theme/dropdown.scss +0 -8
- package/src/scss/theme/nav.scss +44 -0
- package/src/scss/theme/navbar.scss +1 -5
- package/src/scss/variables-theme.scss +51 -10
- package/src/scss/variables.scss +40 -8
- package/tests/accordion.html +2 -2
- package/tests/alert.html +2 -2
- package/tests/countdown.html +1 -1
- package/tests/drop.html +444 -412
- package/tests/dropbar.html +456 -0
- package/tests/dropdown.html +8 -470
- package/tests/filter.html +9 -12
- package/tests/form.html +1 -1
- package/tests/index.html +124 -105
- package/tests/lightbox.html +5 -5
- package/tests/list.html +8 -8
- package/tests/modal.html +13 -13
- package/tests/nav.html +121 -12
- package/tests/navbar.html +76 -218
- package/tests/offcanvas.html +10 -14
- package/tests/parallax.html +1 -1
- package/tests/position.html +13 -24
- package/tests/progress.html +9 -9
- package/tests/scroll.html +7 -10
- package/tests/search.html +5 -5
- package/tests/slider.html +6 -5
- package/tests/slideshow.html +8 -8
- package/tests/sortable.html +6 -8
- package/tests/sticky-navbar.html +6 -6
- package/tests/sticky.html +8 -8
- package/tests/switcher.html +1 -1
- package/tests/tab.html +1 -1
- package/tests/table.html +7 -7
- package/tests/toggle.html +2 -2
- package/tests/tooltip.html +1 -1
- package/tests/upload.html +11 -11
- package/tests/utility.html +19 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,27 +4,43 @@
|
|
|
4
4
|
|
|
5
5
|
### Added
|
|
6
6
|
|
|
7
|
+
- Add Dropbar component
|
|
8
|
+
- Add `target`, `target-x`, `target-y` and `inset` options to Drop component
|
|
9
|
+
- Add `stretch` and `bg-scroll` options to Drop component
|
|
10
|
+
- Add `shift` and `display` options to Drop component
|
|
11
|
+
- Add `slide` and `reveal` animations to Drop component
|
|
12
|
+
- Add `animate-out` option to Drop component
|
|
13
|
+
- Add open and close animation to toggle icon in Navbar component
|
|
7
14
|
- Add dropdown large modifier to Dropdown and Navbar component
|
|
8
|
-
- Add gap
|
|
9
|
-
- Add color mode
|
|
15
|
+
- Add gap variables to navbar items in Navbar component
|
|
16
|
+
- Add color mode variables for dropdowns in Dropdown and Navbar component
|
|
10
17
|
- Add navbar parent icon to Navbar component
|
|
18
|
+
- Add secondary style modifier to Nav component
|
|
11
19
|
- Add font size variables to nav and sublist in Nav component
|
|
12
|
-
- Add
|
|
13
|
-
- Add alignment `stretch` to Drop component
|
|
14
|
-
- Add Height Viewport uses scroll parent as viewport
|
|
20
|
+
- Add padding variables for small breakpoint to Modal component
|
|
15
21
|
- Add zero z-index utility class to Position component
|
|
16
|
-
- Add
|
|
22
|
+
- Add support for `picture` element to logo in Utility component
|
|
23
|
+
- Add box sizing classes to Utility component
|
|
24
|
+
- Support scroll parent as viewport in Height Viewport component
|
|
17
25
|
|
|
18
26
|
### Changed
|
|
19
27
|
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
- Rename `@
|
|
25
|
-
- Rename `@
|
|
26
|
-
- Rename `@
|
|
27
|
-
-
|
|
28
|
+
- IMPORTANT: Remove `.uk-nav-parent-icon` from Nav component. Use `uk-nav-parent-icon` attribute on items instead
|
|
29
|
+
- IMPORTANT: Remove `*-justify` in `pos` option from Drop and Dropdown components. Use new `stretch` option instead
|
|
30
|
+
- IMPORTANT: Remove `boundary-align` option from Drop and Dropdown components. Use new `target` option instead
|
|
31
|
+
- IMPORTANT: Change `flip` option values in Drop and Dropdown components. Use new `shift` option too
|
|
32
|
+
- IMPORTANT: Rename `@offcanvas-bar-width-m` to `@offcanvas-bar-width-s`
|
|
33
|
+
- IMPORTANT: Rename `@offcanvas-bar-padding-vertical-m` to `@offcanvas-bar-padding-vertical-s`
|
|
34
|
+
- IMPORTANT: Rename `@offcanvas-bar-padding-horizontal-m` to `@offcanvas-bar-padding-horizontal-s`
|
|
35
|
+
- IMPORTANT: Rename `@nav-primary-item-font-size` to `@nav-primary-font-size`
|
|
36
|
+
- IMPORTANT: Rename `@nav-primary-item-line-height` to `@nav-primary-line-height`
|
|
37
|
+
- IMPORTANT: Rename `@navbar-dropdown-dropbar-margin-top` to `@navbar-dropdown-dropbar-padding-top`
|
|
38
|
+
- IMPORTANT: Rename `@navbar-dropdown-dropbar-margin-bottom` to `@navbar-dropdown-dropbar-padding-bottom`
|
|
39
|
+
- IMPORTANT: Remove style from `.uk-navbar-dropbar`. Now uses `uk-dropbar`
|
|
40
|
+
|
|
41
|
+
### Removed
|
|
42
|
+
|
|
43
|
+
- Remove `getCssVar()` utility function
|
|
28
44
|
|
|
29
45
|
### Fixed
|
|
30
46
|
|
|
@@ -33,6 +49,7 @@
|
|
|
33
49
|
- Fix dragging in Slider component on iOS
|
|
34
50
|
- Fix Drop component no longer flips, if it does not fit into scroll area
|
|
35
51
|
- Fix Drop component alignment within Dropbar
|
|
52
|
+
- Remove margin from the last-child within dropdowns in Dropdown and Navbar components
|
|
36
53
|
|
|
37
54
|
## 3.14.3 (May 27, 2022)
|
|
38
55
|
|
|
@@ -699,8 +716,8 @@
|
|
|
699
716
|
|
|
700
717
|
### Changed
|
|
701
718
|
|
|
702
|
-
- IMPORTANT: Change options
|
|
703
|
-
- IMPORTANT: Rename
|
|
719
|
+
- IMPORTANT: Change options `animationMode` to `animation` and `animation` to `duration`
|
|
720
|
+
- IMPORTANT: Rename `shift` animation to `slide`
|
|
704
721
|
|
|
705
722
|
## 3.6.1 (December 17, 2020)
|
|
706
723
|
|
|
@@ -899,7 +916,7 @@
|
|
|
899
916
|
|
|
900
917
|
### Changed
|
|
901
918
|
|
|
902
|
-
- IMPORTANT:
|
|
919
|
+
- IMPORTANT: Rename Less variable parts `xxlarge` to `2xlarge`
|
|
903
920
|
- Replace clearfix by creating a block formatting context with display flow-root
|
|
904
921
|
|
|
905
922
|
### Deprecated
|
package/build/util.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.14.4-dev.
|
|
1
|
+
/*! UIkit 3.14.4-dev.d2929b5b7 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -3240,18 +3240,6 @@ select.uk-form-width-xsmall {
|
|
|
3240
3240
|
.uk-drop.uk-open {
|
|
3241
3241
|
display: block;
|
|
3242
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
|
-
}
|
|
3255
3243
|
/* Grid modifiers
|
|
3256
3244
|
========================================================================== */
|
|
3257
3245
|
.uk-drop-stack .uk-drop-grid > * {
|
|
@@ -3277,7 +3265,6 @@ select.uk-form-width-xsmall {
|
|
|
3277
3265
|
/* 3 */
|
|
3278
3266
|
box-sizing: border-box;
|
|
3279
3267
|
min-width: 200px;
|
|
3280
|
-
max-width: 100vw;
|
|
3281
3268
|
/* 4 */
|
|
3282
3269
|
padding: 15px;
|
|
3283
3270
|
background: #f8f8f8;
|
|
@@ -3287,23 +3274,17 @@ select.uk-form-width-xsmall {
|
|
|
3287
3274
|
.uk-dropdown.uk-open {
|
|
3288
3275
|
display: block;
|
|
3289
3276
|
}
|
|
3277
|
+
/*
|
|
3278
|
+
* Remove margin from the last-child
|
|
3279
|
+
*/
|
|
3280
|
+
.uk-dropdown > :last-child {
|
|
3281
|
+
margin-bottom: 0;
|
|
3282
|
+
}
|
|
3290
3283
|
/* Size modifier
|
|
3291
3284
|
========================================================================== */
|
|
3292
3285
|
.uk-dropdown-large {
|
|
3293
3286
|
padding: 40px;
|
|
3294
3287
|
}
|
|
3295
|
-
/* Stretch modifier
|
|
3296
|
-
========================================================================== */
|
|
3297
|
-
/*
|
|
3298
|
-
* 1. Allow scrolling
|
|
3299
|
-
*/
|
|
3300
|
-
.uk-dropdown-stretch {
|
|
3301
|
-
--uk-position-offset: 0;
|
|
3302
|
-
--uk-position-viewport-offset: 0;
|
|
3303
|
-
/* 1 */
|
|
3304
|
-
overflow-y: auto;
|
|
3305
|
-
-webkit-overflow-scrolling: touch;
|
|
3306
|
-
}
|
|
3307
3288
|
/* Nav
|
|
3308
3289
|
* Adopts `uk-nav`
|
|
3309
3290
|
========================================================================== */
|
|
@@ -3351,6 +3332,55 @@ select.uk-form-width-xsmall {
|
|
|
3351
3332
|
.uk-dropdown-stack .uk-dropdown-grid > * {
|
|
3352
3333
|
width: 100% !important;
|
|
3353
3334
|
}
|
|
3335
|
+
/* ========================================================================
|
|
3336
|
+
Component: Dropbar
|
|
3337
|
+
========================================================================== */
|
|
3338
|
+
/*
|
|
3339
|
+
* 1. Hide by default
|
|
3340
|
+
* 2. Set position
|
|
3341
|
+
* 3. Style
|
|
3342
|
+
*/
|
|
3343
|
+
.uk-dropbar {
|
|
3344
|
+
--uk-position-offset: 0;
|
|
3345
|
+
--uk-position-shift-offset: 0;
|
|
3346
|
+
--uk-position-viewport-offset: 0;
|
|
3347
|
+
/* 1 */
|
|
3348
|
+
display: none;
|
|
3349
|
+
/* 2 */
|
|
3350
|
+
position: absolute;
|
|
3351
|
+
z-index: 1020;
|
|
3352
|
+
/* 3 */
|
|
3353
|
+
box-sizing: border-box;
|
|
3354
|
+
padding: 15px 15px 15px 15px;
|
|
3355
|
+
background: #f8f8f8;
|
|
3356
|
+
color: #666;
|
|
3357
|
+
}
|
|
3358
|
+
/* Show */
|
|
3359
|
+
.uk-dropbar.uk-open {
|
|
3360
|
+
display: block;
|
|
3361
|
+
}
|
|
3362
|
+
/*
|
|
3363
|
+
* Remove margin from the last-child
|
|
3364
|
+
*/
|
|
3365
|
+
.uk-dropbar > :last-child {
|
|
3366
|
+
margin-bottom: 0;
|
|
3367
|
+
}
|
|
3368
|
+
/* Phone landscape and bigger */
|
|
3369
|
+
@media (min-width: 640px) {
|
|
3370
|
+
.uk-dropbar {
|
|
3371
|
+
padding-right: 30px;
|
|
3372
|
+
padding-left: 30px;
|
|
3373
|
+
}
|
|
3374
|
+
}
|
|
3375
|
+
/* Tablet landscape and bigger */
|
|
3376
|
+
@media (min-width: 960px) {
|
|
3377
|
+
.uk-dropbar {
|
|
3378
|
+
padding-right: 40px;
|
|
3379
|
+
padding-left: 40px;
|
|
3380
|
+
}
|
|
3381
|
+
}
|
|
3382
|
+
/* Direction modifier
|
|
3383
|
+
========================================================================== */
|
|
3354
3384
|
/* ========================================================================
|
|
3355
3385
|
Component: Modal
|
|
3356
3386
|
========================================================================== */
|
|
@@ -4014,7 +4044,7 @@ select.uk-form-width-xsmall {
|
|
|
4014
4044
|
* Pass fill character to JS
|
|
4015
4045
|
*/
|
|
4016
4046
|
:root {
|
|
4017
|
-
--uk-leader-fill-content:
|
|
4047
|
+
--uk-leader-fill-content: .;
|
|
4018
4048
|
}
|
|
4019
4049
|
/* ========================================================================
|
|
4020
4050
|
Component: Notification
|
|
@@ -4659,7 +4689,7 @@ ul.uk-nav-sub {
|
|
|
4659
4689
|
.uk-nav-sub a {
|
|
4660
4690
|
padding: 2px 0;
|
|
4661
4691
|
}
|
|
4662
|
-
/* Parent icon
|
|
4692
|
+
/* Parent icon
|
|
4663
4693
|
========================================================================== */
|
|
4664
4694
|
.uk-nav-parent-icon {
|
|
4665
4695
|
margin-right: auto;
|
|
@@ -4790,6 +4820,69 @@ ul.uk-nav-sub {
|
|
|
4790
4820
|
.uk-nav-primary .uk-nav-sub li.uk-active > a {
|
|
4791
4821
|
color: #333;
|
|
4792
4822
|
}
|
|
4823
|
+
/* Secondary modifier
|
|
4824
|
+
========================================================================== */
|
|
4825
|
+
.uk-nav-secondary {
|
|
4826
|
+
font-size: 16px;
|
|
4827
|
+
line-height: 1.5;
|
|
4828
|
+
}
|
|
4829
|
+
/*
|
|
4830
|
+
* Items
|
|
4831
|
+
*/
|
|
4832
|
+
.uk-nav-secondary > li > a {
|
|
4833
|
+
color: #333;
|
|
4834
|
+
}
|
|
4835
|
+
/* Hover */
|
|
4836
|
+
.uk-nav-secondary > li > a:hover {
|
|
4837
|
+
color: #333;
|
|
4838
|
+
}
|
|
4839
|
+
/* Active */
|
|
4840
|
+
.uk-nav-secondary > li.uk-active > a {
|
|
4841
|
+
color: #333;
|
|
4842
|
+
}
|
|
4843
|
+
/*
|
|
4844
|
+
* Subtitle
|
|
4845
|
+
*/
|
|
4846
|
+
.uk-nav-secondary .uk-nav-subtitle {
|
|
4847
|
+
font-size: 0.875rem;
|
|
4848
|
+
color: #999;
|
|
4849
|
+
}
|
|
4850
|
+
/* Hover */
|
|
4851
|
+
.uk-nav-secondary > li > a:hover .uk-nav-subtitle {
|
|
4852
|
+
color: #666;
|
|
4853
|
+
}
|
|
4854
|
+
/* Active */
|
|
4855
|
+
.uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
|
|
4856
|
+
color: #333;
|
|
4857
|
+
}
|
|
4858
|
+
/*
|
|
4859
|
+
* Header
|
|
4860
|
+
*/
|
|
4861
|
+
.uk-nav-secondary .uk-nav-header {
|
|
4862
|
+
color: #333;
|
|
4863
|
+
}
|
|
4864
|
+
/*
|
|
4865
|
+
* Divider
|
|
4866
|
+
*/
|
|
4867
|
+
.uk-nav-secondary .uk-nav-divider {
|
|
4868
|
+
border-top: 1px solid #e5e5e5;
|
|
4869
|
+
}
|
|
4870
|
+
/*
|
|
4871
|
+
* Sublists
|
|
4872
|
+
*/
|
|
4873
|
+
.uk-nav-secondary .uk-nav-sub {
|
|
4874
|
+
font-size: 0.875rem;
|
|
4875
|
+
line-height: 1.5;
|
|
4876
|
+
}
|
|
4877
|
+
.uk-nav-secondary .uk-nav-sub a {
|
|
4878
|
+
color: #999;
|
|
4879
|
+
}
|
|
4880
|
+
.uk-nav-secondary .uk-nav-sub a:hover {
|
|
4881
|
+
color: #666;
|
|
4882
|
+
}
|
|
4883
|
+
.uk-nav-secondary .uk-nav-sub li.uk-active > a {
|
|
4884
|
+
color: #333;
|
|
4885
|
+
}
|
|
4793
4886
|
/* Alignment modifier
|
|
4794
4887
|
========================================================================== */
|
|
4795
4888
|
/*
|
|
@@ -4809,15 +4902,19 @@ ul.uk-nav-sub {
|
|
|
4809
4902
|
.uk-nav-center .uk-nav-sub ul {
|
|
4810
4903
|
padding-right: 0;
|
|
4811
4904
|
}
|
|
4812
|
-
/* Parent icon
|
|
4905
|
+
/* Parent icon */
|
|
4813
4906
|
.uk-nav-center .uk-nav-parent-icon {
|
|
4814
4907
|
margin-right: 0;
|
|
4815
4908
|
}
|
|
4816
4909
|
/* Style modifier
|
|
4817
4910
|
========================================================================== */
|
|
4911
|
+
/*
|
|
4912
|
+
* Divider
|
|
4913
|
+
* Naming is in plural to prevent conflicts with divider sub object.
|
|
4914
|
+
*/
|
|
4818
4915
|
.uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
|
|
4819
|
-
margin-top:
|
|
4820
|
-
padding-top:
|
|
4916
|
+
margin-top: 5px;
|
|
4917
|
+
padding-top: 5px;
|
|
4821
4918
|
border-top: 1px solid #e5e5e5;
|
|
4822
4919
|
}
|
|
4823
4920
|
/* ========================================================================
|
|
@@ -5038,7 +5135,6 @@ ul.uk-nav-sub {
|
|
|
5038
5135
|
/* 3 */
|
|
5039
5136
|
box-sizing: border-box;
|
|
5040
5137
|
width: 200px;
|
|
5041
|
-
max-width: 100vw;
|
|
5042
5138
|
/* 4 */
|
|
5043
5139
|
padding: 15px;
|
|
5044
5140
|
background: #f8f8f8;
|
|
@@ -5048,6 +5144,12 @@ ul.uk-nav-sub {
|
|
|
5048
5144
|
.uk-navbar-dropdown.uk-open {
|
|
5049
5145
|
display: block;
|
|
5050
5146
|
}
|
|
5147
|
+
/*
|
|
5148
|
+
* Remove margin from the last-child
|
|
5149
|
+
*/
|
|
5150
|
+
.uk-navbar-dropdown > :last-child {
|
|
5151
|
+
margin-bottom: 0;
|
|
5152
|
+
}
|
|
5051
5153
|
/*
|
|
5052
5154
|
* Grid
|
|
5053
5155
|
* Adopts `uk-grid`
|
|
@@ -5089,36 +5191,6 @@ ul.uk-nav-sub {
|
|
|
5089
5191
|
--uk-position-shift-offset: 0;
|
|
5090
5192
|
padding: 40px;
|
|
5091
5193
|
}
|
|
5092
|
-
/*
|
|
5093
|
-
* Stretch modifier
|
|
5094
|
-
* 1. Allow scrolling
|
|
5095
|
-
* 2. Style
|
|
5096
|
-
*/
|
|
5097
|
-
.uk-navbar-dropdown-stretch {
|
|
5098
|
-
--uk-position-offset: 0;
|
|
5099
|
-
--uk-position-shift-offset: 0;
|
|
5100
|
-
--uk-position-viewport-offset: 0;
|
|
5101
|
-
/* 1 */
|
|
5102
|
-
overflow-y: auto;
|
|
5103
|
-
-webkit-overflow-scrolling: touch;
|
|
5104
|
-
/* 2 */
|
|
5105
|
-
padding: 15px 15px 15px 15px;
|
|
5106
|
-
background: #f8f8f8;
|
|
5107
|
-
}
|
|
5108
|
-
/* Phone landscape and bigger */
|
|
5109
|
-
@media (min-width: 640px) {
|
|
5110
|
-
.uk-navbar-dropdown-stretch {
|
|
5111
|
-
padding-right: 30px;
|
|
5112
|
-
padding-left: 30px;
|
|
5113
|
-
}
|
|
5114
|
-
}
|
|
5115
|
-
/* Tablet landscape and bigger */
|
|
5116
|
-
@media (min-width: 960px) {
|
|
5117
|
-
.uk-navbar-dropdown-stretch {
|
|
5118
|
-
padding-right: 40px;
|
|
5119
|
-
padding-left: 40px;
|
|
5120
|
-
}
|
|
5121
|
-
}
|
|
5122
5194
|
/*
|
|
5123
5195
|
* Dropbar modifier
|
|
5124
5196
|
* 1. Reset dropdown width to prevent to early shifting
|
|
@@ -5132,6 +5204,7 @@ ul.uk-nav-sub {
|
|
|
5132
5204
|
background: transparent;
|
|
5133
5205
|
/* 3 */
|
|
5134
5206
|
padding: 15px 15px 15px 15px;
|
|
5207
|
+
--uk-position-offset: 0;
|
|
5135
5208
|
--uk-position-shift-offset: 0;
|
|
5136
5209
|
--uk-position-viewport-offset: 15px;
|
|
5137
5210
|
}
|
|
@@ -5196,12 +5269,18 @@ ul.uk-nav-sub {
|
|
|
5196
5269
|
}
|
|
5197
5270
|
/* Dropbar
|
|
5198
5271
|
========================================================================== */
|
|
5272
|
+
/*
|
|
5273
|
+
* 1. Reset dropbar
|
|
5274
|
+
* 2. Width
|
|
5275
|
+
*/
|
|
5199
5276
|
.uk-navbar-dropbar {
|
|
5200
|
-
|
|
5277
|
+
/* 1 */
|
|
5278
|
+
display: block !important;
|
|
5201
5279
|
z-index: 980;
|
|
5280
|
+
padding: 0;
|
|
5281
|
+
/* 2 */
|
|
5202
5282
|
right: 0;
|
|
5203
5283
|
left: 0;
|
|
5204
|
-
background: #f8f8f8;
|
|
5205
5284
|
}
|
|
5206
5285
|
/* ========================================================================
|
|
5207
5286
|
Component: Subnav
|
|
@@ -7525,6 +7604,14 @@ iframe[data-uk-cover] {
|
|
|
7525
7604
|
.uk-overflow-auto > :last-child {
|
|
7526
7605
|
margin-bottom: 0;
|
|
7527
7606
|
}
|
|
7607
|
+
/* Box Sizing
|
|
7608
|
+
========================================================================== */
|
|
7609
|
+
.uk-box-sizing-content {
|
|
7610
|
+
box-sizing: content-box;
|
|
7611
|
+
}
|
|
7612
|
+
.uk-box-sizing-border {
|
|
7613
|
+
box-sizing: border-box;
|
|
7614
|
+
}
|
|
7528
7615
|
/* Resize
|
|
7529
7616
|
========================================================================== */
|
|
7530
7617
|
.uk-resize {
|
|
@@ -7802,7 +7889,7 @@ iframe[data-uk-cover] {
|
|
|
7802
7889
|
/* 1 */
|
|
7803
7890
|
text-decoration: none;
|
|
7804
7891
|
}
|
|
7805
|
-
.uk-logo
|
|
7892
|
+
.uk-logo :where(img, svg, video) {
|
|
7806
7893
|
display: block;
|
|
7807
7894
|
}
|
|
7808
7895
|
.uk-logo-inverse {
|
|
@@ -10900,6 +10987,149 @@ iframe[data-uk-cover] {
|
|
|
10900
10987
|
.uk-offcanvas-bar .uk-nav-primary .uk-nav-sub li.uk-active > a {
|
|
10901
10988
|
color: #fff;
|
|
10902
10989
|
}
|
|
10990
|
+
.uk-light .uk-nav-secondary > li > a,
|
|
10991
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
|
|
10992
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
|
|
10993
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
|
|
10994
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
|
|
10995
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary > li > a,
|
|
10996
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a,
|
|
10997
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary > li > a,
|
|
10998
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a,
|
|
10999
|
+
.uk-overlay-primary .uk-nav-secondary > li > a,
|
|
11000
|
+
.uk-offcanvas-bar .uk-nav-secondary > li > a {
|
|
11001
|
+
color: #fff;
|
|
11002
|
+
}
|
|
11003
|
+
.uk-light .uk-nav-secondary > li > a:hover,
|
|
11004
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
|
|
11005
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
|
|
11006
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
|
|
11007
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
|
|
11008
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary > li > a:hover,
|
|
11009
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a:hover,
|
|
11010
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary > li > a:hover,
|
|
11011
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a:hover,
|
|
11012
|
+
.uk-overlay-primary .uk-nav-secondary > li > a:hover,
|
|
11013
|
+
.uk-offcanvas-bar .uk-nav-secondary > li > a:hover {
|
|
11014
|
+
color: #fff;
|
|
11015
|
+
}
|
|
11016
|
+
.uk-light .uk-nav-secondary > li.uk-active > a,
|
|
11017
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
|
|
11018
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
|
|
11019
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
|
|
11020
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
|
|
11021
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary > li.uk-active > a,
|
|
11022
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li.uk-active > a,
|
|
11023
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary > li.uk-active > a,
|
|
11024
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li.uk-active > a,
|
|
11025
|
+
.uk-overlay-primary .uk-nav-secondary > li.uk-active > a,
|
|
11026
|
+
.uk-offcanvas-bar .uk-nav-secondary > li.uk-active > a {
|
|
11027
|
+
color: #fff;
|
|
11028
|
+
}
|
|
11029
|
+
.uk-light .uk-nav-secondary .uk-nav-subtitle,
|
|
11030
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
|
|
11031
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
|
|
11032
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
|
|
11033
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
|
|
11034
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-subtitle,
|
|
11035
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-subtitle,
|
|
11036
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-subtitle,
|
|
11037
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-subtitle,
|
|
11038
|
+
.uk-overlay-primary .uk-nav-secondary .uk-nav-subtitle,
|
|
11039
|
+
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-subtitle {
|
|
11040
|
+
color: rgba(255, 255, 255, 0.5);
|
|
11041
|
+
}
|
|
11042
|
+
.uk-light .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11043
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11044
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11045
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11046
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11047
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11048
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11049
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11050
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11051
|
+
.uk-overlay-primary .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11052
|
+
.uk-offcanvas-bar .uk-nav-secondary > li > a:hover .uk-nav-subtitle {
|
|
11053
|
+
color: rgba(255, 255, 255, 0.7);
|
|
11054
|
+
}
|
|
11055
|
+
.uk-light .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11056
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11057
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11058
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11059
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11060
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11061
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11062
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11063
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11064
|
+
.uk-overlay-primary .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11065
|
+
.uk-offcanvas-bar .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
|
|
11066
|
+
color: #fff;
|
|
11067
|
+
}
|
|
11068
|
+
.uk-light .uk-nav-secondary .uk-nav-header,
|
|
11069
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
|
|
11070
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
|
|
11071
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
|
|
11072
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
|
|
11073
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-header,
|
|
11074
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-header,
|
|
11075
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-header,
|
|
11076
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-header,
|
|
11077
|
+
.uk-overlay-primary .uk-nav-secondary .uk-nav-header,
|
|
11078
|
+
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-header {
|
|
11079
|
+
color: #fff;
|
|
11080
|
+
}
|
|
11081
|
+
.uk-light .uk-nav-secondary .uk-nav-divider,
|
|
11082
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
|
|
11083
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
|
|
11084
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
|
|
11085
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
|
|
11086
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-divider,
|
|
11087
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-divider,
|
|
11088
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-divider,
|
|
11089
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-divider,
|
|
11090
|
+
.uk-overlay-primary .uk-nav-secondary .uk-nav-divider,
|
|
11091
|
+
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-divider {
|
|
11092
|
+
border-top-color: rgba(255, 255, 255, 0.2);
|
|
11093
|
+
}
|
|
11094
|
+
.uk-light .uk-nav-secondary .uk-nav-sub a,
|
|
11095
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
|
|
11096
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
|
|
11097
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
|
|
11098
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
|
|
11099
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub a,
|
|
11100
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub a,
|
|
11101
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub a,
|
|
11102
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub a,
|
|
11103
|
+
.uk-overlay-primary .uk-nav-secondary .uk-nav-sub a,
|
|
11104
|
+
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub a {
|
|
11105
|
+
color: rgba(255, 255, 255, 0.5);
|
|
11106
|
+
}
|
|
11107
|
+
.uk-light .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11108
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11109
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11110
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11111
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11112
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11113
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11114
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11115
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11116
|
+
.uk-overlay-primary .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11117
|
+
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub a:hover {
|
|
11118
|
+
color: rgba(255, 255, 255, 0.7);
|
|
11119
|
+
}
|
|
11120
|
+
.uk-light .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11121
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11122
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11123
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11124
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11125
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11126
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11127
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11128
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11129
|
+
.uk-overlay-primary .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11130
|
+
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub li.uk-active > a {
|
|
11131
|
+
color: #fff;
|
|
11132
|
+
}
|
|
10903
11133
|
.uk-light .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
|
|
10904
11134
|
.uk-section-primary:not(.uk-preserve-color) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
|
|
10905
11135
|
.uk-section-secondary:not(.uk-preserve-color) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
|
|
@@ -11550,17 +11780,28 @@ iframe[data-uk-cover] {
|
|
|
11550
11780
|
.uk-offcanvas-bar .uk-logo:hover {
|
|
11551
11781
|
color: #fff;
|
|
11552
11782
|
}
|
|
11553
|
-
.uk-light .uk-logo > :not(
|
|
11554
|
-
.uk-
|
|
11555
|
-
.uk-section-
|
|
11556
|
-
.uk-
|
|
11557
|
-
.uk-
|
|
11558
|
-
.uk-
|
|
11559
|
-
.uk-
|
|
11560
|
-
.uk-
|
|
11561
|
-
.uk-
|
|
11562
|
-
.uk-
|
|
11563
|
-
.uk-
|
|
11783
|
+
.uk-light .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11784
|
+
.uk-light .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11785
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11786
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11787
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11788
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11789
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11790
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11791
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11792
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11793
|
+
.uk-card-primary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11794
|
+
.uk-card-primary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11795
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11796
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11797
|
+
.uk-card-secondary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11798
|
+
.uk-card-secondary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11799
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11800
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11801
|
+
.uk-overlay-primary .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11802
|
+
.uk-overlay-primary .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11803
|
+
.uk-offcanvas-bar .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11804
|
+
.uk-offcanvas-bar .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) {
|
|
11564
11805
|
display: none;
|
|
11565
11806
|
}
|
|
11566
11807
|
.uk-light .uk-logo-inverse,
|