uikit 3.14.4-dev.2dc50ec60 → 3.14.4-dev.3c3ec2cad
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 +39 -18
- package/build/util.js +1 -0
- package/dist/css/uikit-core-rtl.css +330 -78
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +330 -78
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +352 -107
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +352 -107
- 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 +98 -131
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +98 -131
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +4 -2
- 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 +104 -139
- 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 +531 -503
- package/dist/js/uikit-core.min.js +17 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +534 -504
- package/dist/js/uikit.min.js +17 -1
- package/package.json +11 -11
- package/src/images/components/navbar-toggle-icon.svg +25 -3
- package/src/js/api/hooks.js +5 -1
- package/src/js/api/state.js +2 -2
- package/src/js/components/notification.js +3 -1
- package/src/js/core/accordion.js +9 -17
- package/src/js/core/alert.js +35 -14
- package/src/js/core/drop.js +110 -82
- 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 +30 -45
- package/src/js/core/offcanvas.js +8 -4
- package/src/js/core/scroll.js +37 -10
- package/src/js/core/toggle.js +3 -5
- package/src/js/mixin/media.js +4 -5
- package/src/js/mixin/modal.js +15 -12
- package/src/js/mixin/position.js +24 -26
- package/src/js/mixin/style.js +11 -0
- package/src/js/mixin/togglable.js +90 -124
- package/src/js/util/animation.js +9 -7
- package/src/js/util/class.js +3 -1
- package/src/js/util/filter.js +3 -7
- package/src/js/util/position.js +136 -130
- 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 +126 -0
- package/src/less/components/dropdown.less +11 -19
- package/src/less/components/leader.less +1 -1
- package/src/less/components/nav.less +217 -33
- package/src/less/components/navbar.less +33 -54
- 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 +45 -7
- package/src/less/theme/navbar.less +5 -36
- package/src/scss/components/_import.scss +1 -0
- package/src/scss/components/drop.scss +1 -18
- package/src/scss/components/dropbar.scss +126 -0
- package/src/scss/components/dropdown.scss +11 -19
- package/src/scss/components/leader.scss +1 -1
- package/src/scss/components/nav.scss +166 -32
- package/src/scss/components/navbar.scss +33 -54
- package/src/scss/components/utility.scss +8 -1
- package/src/scss/mixins-theme.scss +83 -36
- package/src/scss/mixins.scss +79 -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 +43 -7
- package/src/scss/theme/navbar.scss +4 -8
- package/src/scss/variables-theme.scss +59 -18
- package/src/scss/variables.scss +47 -13
- package/tests/accordion.html +2 -2
- package/tests/alert.html +2 -2
- package/tests/countdown.html +1 -1
- package/tests/drop.html +446 -416
- package/tests/dropbar.html +458 -0
- package/tests/dropdown.html +8 -470
- package/tests/filter.html +9 -12
- package/tests/flex.html +36 -36
- package/tests/form.html +1 -1
- package/tests/grid.html +22 -22
- package/tests/height.html +6 -6
- package/tests/index.html +127 -108
- package/tests/js/index.js +1 -4
- 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 +111 -226
- package/tests/offcanvas.html +10 -14
- package/tests/pagination.html +6 -6
- package/tests/parallax.html +1 -1
- package/tests/position.html +18 -16
- package/tests/progress.html +9 -9
- package/tests/scroll.html +7 -10
- package/tests/search.html +6 -6
- package/tests/slider.html +6 -5
- package/tests/slideshow.html +8 -8
- package/tests/sortable.html +6 -8
- package/tests/sticky-navbar.html +15 -15
- 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 +35 -16
package/CHANGELOG.md
CHANGED
|
@@ -4,27 +4,45 @@
|
|
|
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` option 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
|
|
25
|
+
- Add ARIA `role="alert"` to Notification component
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- IMPORTANT: Remove `.uk-nav-parent-icon` from Nav component. Use `uk-nav-parent-icon` attribute on items instead
|
|
30
|
+
- IMPORTANT: Remove `*-justify` in `pos` option from Drop and Dropdown components. Use new `stretch` option instead
|
|
31
|
+
- IMPORTANT: Remove `boundary-align` option from Drop and Dropdown components. Use new `target` option instead
|
|
32
|
+
- IMPORTANT: Change `flip` option values in Drop and Dropdown components. Use new `shift` option too
|
|
33
|
+
- IMPORTANT: Remove `display` option in Drop and Dropdown components. Use new `auto-update` option instead.
|
|
34
|
+
- IMPORTANT: Rename `@offcanvas-bar-width-m` to `@offcanvas-bar-width-s`
|
|
35
|
+
- IMPORTANT: Rename `@offcanvas-bar-padding-vertical-m` to `@offcanvas-bar-padding-vertical-s`
|
|
36
|
+
- IMPORTANT: Rename `@offcanvas-bar-padding-horizontal-m` to `@offcanvas-bar-padding-horizontal-s`
|
|
37
|
+
- IMPORTANT: Rename `@nav-primary-item-font-size` to `@nav-primary-font-size`
|
|
38
|
+
- IMPORTANT: Rename `@nav-primary-item-line-height` to `@nav-primary-line-height`
|
|
39
|
+
- IMPORTANT: Rename `@navbar-dropdown-dropbar-margin-top` to `@navbar-dropdown-dropbar-padding-top`
|
|
40
|
+
- IMPORTANT: Rename `@navbar-dropdown-dropbar-margin-bottom` to `@navbar-dropdown-dropbar-padding-bottom`
|
|
41
|
+
- IMPORTANT: Remove style from `.uk-navbar-dropbar`. Now uses `uk-dropbar`
|
|
17
42
|
|
|
18
|
-
###
|
|
43
|
+
### Removed
|
|
19
44
|
|
|
20
|
-
-
|
|
21
|
-
- Rename `@offcanvas-bar-padding-vertical-m` to `@offcanvas-bar-padding-vertical-s`
|
|
22
|
-
- Rename `@offcanvas-bar-padding-horizontal-m` to `@offcanvas-bar-padding-horizontal-s`
|
|
23
|
-
- Rename `@nav-primary-item-font-size` to `@nav-primary-font-size`
|
|
24
|
-
- Rename `@nav-primary-item-line-height` to `@nav-primary-line-height`
|
|
25
|
-
- Rename `@navbar-dropdown-dropbar-margin-top` to `@navbar-dropdown-dropbar-padding-top`
|
|
26
|
-
- Rename `@navbar-dropdown-dropbar-margin-bottom` to `@navbar-dropdown-dropbar-padding-bottom`
|
|
27
|
-
- Use JS icon component instead of compiling icons into CSS for nav parent icon in Nav component
|
|
45
|
+
- Remove `getCssVar()` utility function
|
|
28
46
|
|
|
29
47
|
### Fixed
|
|
30
48
|
|
|
@@ -33,6 +51,9 @@
|
|
|
33
51
|
- Fix dragging in Slider component on iOS
|
|
34
52
|
- Fix Drop component no longer flips, if it does not fit into scroll area
|
|
35
53
|
- Fix Drop component alignment within Dropbar
|
|
54
|
+
- Fix ensure write updates aren't called if component is already disconnected
|
|
55
|
+
- Fix Offcanvas component no longer overflows document if isn't wide enough
|
|
56
|
+
- Remove margin from the last-child within dropdowns in Dropdown and Navbar components
|
|
36
57
|
|
|
37
58
|
## 3.14.3 (May 27, 2022)
|
|
38
59
|
|
|
@@ -699,8 +720,8 @@
|
|
|
699
720
|
|
|
700
721
|
### Changed
|
|
701
722
|
|
|
702
|
-
- IMPORTANT: Change options
|
|
703
|
-
- IMPORTANT: Rename
|
|
723
|
+
- IMPORTANT: Change options `animationMode` to `animation` and `animation` to `duration`
|
|
724
|
+
- IMPORTANT: Rename `shift` animation to `slide`
|
|
704
725
|
|
|
705
726
|
## 3.6.1 (December 17, 2020)
|
|
706
727
|
|
|
@@ -899,7 +920,7 @@
|
|
|
899
920
|
|
|
900
921
|
### Changed
|
|
901
922
|
|
|
902
|
-
- IMPORTANT:
|
|
923
|
+
- IMPORTANT: Rename Less variable parts `xxlarge` to `2xlarge`
|
|
903
924
|
- Replace clearfix by creating a block formatting context with display flow-root
|
|
904
925
|
|
|
905
926
|
### Deprecated
|
package/build/util.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.14.4-dev.
|
|
1
|
+
/*! UIkit 3.14.4-dev.3c3ec2cad | 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,61 @@ 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
|
+
/* Size modifier
|
|
3383
|
+
========================================================================== */
|
|
3384
|
+
.uk-dropbar-large {
|
|
3385
|
+
padding-top: 40px;
|
|
3386
|
+
padding-bottom: 40px;
|
|
3387
|
+
}
|
|
3388
|
+
/* Direction modifier
|
|
3389
|
+
========================================================================== */
|
|
3354
3390
|
/* ========================================================================
|
|
3355
3391
|
Component: Modal
|
|
3356
3392
|
========================================================================== */
|
|
@@ -4014,7 +4050,7 @@ select.uk-form-width-xsmall {
|
|
|
4014
4050
|
* Pass fill character to JS
|
|
4015
4051
|
*/
|
|
4016
4052
|
:root {
|
|
4017
|
-
--uk-leader-fill-content:
|
|
4053
|
+
--uk-leader-fill-content: .;
|
|
4018
4054
|
}
|
|
4019
4055
|
/* ========================================================================
|
|
4020
4056
|
Component: Notification
|
|
@@ -4659,7 +4695,7 @@ ul.uk-nav-sub {
|
|
|
4659
4695
|
.uk-nav-sub a {
|
|
4660
4696
|
padding: 2px 0;
|
|
4661
4697
|
}
|
|
4662
|
-
/* Parent icon
|
|
4698
|
+
/* Parent icon
|
|
4663
4699
|
========================================================================== */
|
|
4664
4700
|
.uk-nav-parent-icon {
|
|
4665
4701
|
margin-right: auto;
|
|
@@ -4790,6 +4826,69 @@ ul.uk-nav-sub {
|
|
|
4790
4826
|
.uk-nav-primary .uk-nav-sub li.uk-active > a {
|
|
4791
4827
|
color: #333;
|
|
4792
4828
|
}
|
|
4829
|
+
/* Secondary modifier
|
|
4830
|
+
========================================================================== */
|
|
4831
|
+
.uk-nav-secondary {
|
|
4832
|
+
font-size: 16px;
|
|
4833
|
+
line-height: 1.5;
|
|
4834
|
+
}
|
|
4835
|
+
/*
|
|
4836
|
+
* Items
|
|
4837
|
+
*/
|
|
4838
|
+
.uk-nav-secondary > li > a {
|
|
4839
|
+
color: #333;
|
|
4840
|
+
}
|
|
4841
|
+
/* Hover */
|
|
4842
|
+
.uk-nav-secondary > li > a:hover {
|
|
4843
|
+
color: #333;
|
|
4844
|
+
}
|
|
4845
|
+
/* Active */
|
|
4846
|
+
.uk-nav-secondary > li.uk-active > a {
|
|
4847
|
+
color: #333;
|
|
4848
|
+
}
|
|
4849
|
+
/*
|
|
4850
|
+
* Subtitle
|
|
4851
|
+
*/
|
|
4852
|
+
.uk-nav-secondary .uk-nav-subtitle {
|
|
4853
|
+
font-size: 0.875rem;
|
|
4854
|
+
color: #999;
|
|
4855
|
+
}
|
|
4856
|
+
/* Hover */
|
|
4857
|
+
.uk-nav-secondary > li > a:hover .uk-nav-subtitle {
|
|
4858
|
+
color: #666;
|
|
4859
|
+
}
|
|
4860
|
+
/* Active */
|
|
4861
|
+
.uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
|
|
4862
|
+
color: #333;
|
|
4863
|
+
}
|
|
4864
|
+
/*
|
|
4865
|
+
* Header
|
|
4866
|
+
*/
|
|
4867
|
+
.uk-nav-secondary .uk-nav-header {
|
|
4868
|
+
color: #333;
|
|
4869
|
+
}
|
|
4870
|
+
/*
|
|
4871
|
+
* Divider
|
|
4872
|
+
*/
|
|
4873
|
+
.uk-nav-secondary .uk-nav-divider {
|
|
4874
|
+
border-top: 1px solid #e5e5e5;
|
|
4875
|
+
}
|
|
4876
|
+
/*
|
|
4877
|
+
* Sublists
|
|
4878
|
+
*/
|
|
4879
|
+
.uk-nav-secondary .uk-nav-sub {
|
|
4880
|
+
font-size: 0.875rem;
|
|
4881
|
+
line-height: 1.5;
|
|
4882
|
+
}
|
|
4883
|
+
.uk-nav-secondary .uk-nav-sub a {
|
|
4884
|
+
color: #999;
|
|
4885
|
+
}
|
|
4886
|
+
.uk-nav-secondary .uk-nav-sub a:hover {
|
|
4887
|
+
color: #666;
|
|
4888
|
+
}
|
|
4889
|
+
.uk-nav-secondary .uk-nav-sub li.uk-active > a {
|
|
4890
|
+
color: #333;
|
|
4891
|
+
}
|
|
4793
4892
|
/* Alignment modifier
|
|
4794
4893
|
========================================================================== */
|
|
4795
4894
|
/*
|
|
@@ -4809,15 +4908,19 @@ ul.uk-nav-sub {
|
|
|
4809
4908
|
.uk-nav-center .uk-nav-sub ul {
|
|
4810
4909
|
padding-right: 0;
|
|
4811
4910
|
}
|
|
4812
|
-
/* Parent icon
|
|
4911
|
+
/* Parent icon */
|
|
4813
4912
|
.uk-nav-center .uk-nav-parent-icon {
|
|
4814
|
-
margin-right:
|
|
4913
|
+
margin-right: 4px;
|
|
4815
4914
|
}
|
|
4816
4915
|
/* Style modifier
|
|
4817
4916
|
========================================================================== */
|
|
4917
|
+
/*
|
|
4918
|
+
* Divider
|
|
4919
|
+
* Naming is in plural to prevent conflicts with divider sub object.
|
|
4920
|
+
*/
|
|
4818
4921
|
.uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
|
|
4819
|
-
margin-top:
|
|
4820
|
-
padding-top:
|
|
4922
|
+
margin-top: 5px;
|
|
4923
|
+
padding-top: 5px;
|
|
4821
4924
|
border-top: 1px solid #e5e5e5;
|
|
4822
4925
|
}
|
|
4823
4926
|
/* ========================================================================
|
|
@@ -5038,7 +5141,6 @@ ul.uk-nav-sub {
|
|
|
5038
5141
|
/* 3 */
|
|
5039
5142
|
box-sizing: border-box;
|
|
5040
5143
|
width: 200px;
|
|
5041
|
-
max-width: 100vw;
|
|
5042
5144
|
/* 4 */
|
|
5043
5145
|
padding: 15px;
|
|
5044
5146
|
background: #f8f8f8;
|
|
@@ -5048,6 +5150,12 @@ ul.uk-nav-sub {
|
|
|
5048
5150
|
.uk-navbar-dropdown.uk-open {
|
|
5049
5151
|
display: block;
|
|
5050
5152
|
}
|
|
5153
|
+
/*
|
|
5154
|
+
* Remove margin from the last-child
|
|
5155
|
+
*/
|
|
5156
|
+
.uk-navbar-dropdown > :last-child {
|
|
5157
|
+
margin-bottom: 0;
|
|
5158
|
+
}
|
|
5051
5159
|
/*
|
|
5052
5160
|
* Grid
|
|
5053
5161
|
* Adopts `uk-grid`
|
|
@@ -5089,36 +5197,6 @@ ul.uk-nav-sub {
|
|
|
5089
5197
|
--uk-position-shift-offset: 0;
|
|
5090
5198
|
padding: 40px;
|
|
5091
5199
|
}
|
|
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
5200
|
/*
|
|
5123
5201
|
* Dropbar modifier
|
|
5124
5202
|
* 1. Reset dropdown width to prevent to early shifting
|
|
@@ -5131,7 +5209,8 @@ ul.uk-nav-sub {
|
|
|
5131
5209
|
/* 2 */
|
|
5132
5210
|
background: transparent;
|
|
5133
5211
|
/* 3 */
|
|
5134
|
-
padding: 15px
|
|
5212
|
+
padding: 15px 0 15px 0;
|
|
5213
|
+
--uk-position-offset: 0;
|
|
5135
5214
|
--uk-position-shift-offset: 0;
|
|
5136
5215
|
--uk-position-viewport-offset: 15px;
|
|
5137
5216
|
}
|
|
@@ -5147,6 +5226,11 @@ ul.uk-nav-sub {
|
|
|
5147
5226
|
--uk-position-viewport-offset: 40px;
|
|
5148
5227
|
}
|
|
5149
5228
|
}
|
|
5229
|
+
.uk-navbar-dropdown-dropbar-large {
|
|
5230
|
+
--uk-position-shift-offset: 0;
|
|
5231
|
+
padding-top: 40px;
|
|
5232
|
+
padding-bottom: 40px;
|
|
5233
|
+
}
|
|
5150
5234
|
/* Dropdown Nav
|
|
5151
5235
|
* Adopts `uk-nav`
|
|
5152
5236
|
========================================================================== */
|
|
@@ -5196,12 +5280,18 @@ ul.uk-nav-sub {
|
|
|
5196
5280
|
}
|
|
5197
5281
|
/* Dropbar
|
|
5198
5282
|
========================================================================== */
|
|
5283
|
+
/*
|
|
5284
|
+
* 1. Reset dropbar
|
|
5285
|
+
* 2. Width
|
|
5286
|
+
*/
|
|
5199
5287
|
.uk-navbar-dropbar {
|
|
5200
|
-
|
|
5288
|
+
/* 1 */
|
|
5289
|
+
display: block !important;
|
|
5201
5290
|
z-index: 980;
|
|
5291
|
+
padding: 0;
|
|
5292
|
+
/* 2 */
|
|
5202
5293
|
right: 0;
|
|
5203
5294
|
left: 0;
|
|
5204
|
-
background: #f8f8f8;
|
|
5205
5295
|
}
|
|
5206
5296
|
/* ========================================================================
|
|
5207
5297
|
Component: Subnav
|
|
@@ -7525,6 +7615,14 @@ iframe[data-uk-cover] {
|
|
|
7525
7615
|
.uk-overflow-auto > :last-child {
|
|
7526
7616
|
margin-bottom: 0;
|
|
7527
7617
|
}
|
|
7618
|
+
/* Box Sizing
|
|
7619
|
+
========================================================================== */
|
|
7620
|
+
.uk-box-sizing-content {
|
|
7621
|
+
box-sizing: content-box;
|
|
7622
|
+
}
|
|
7623
|
+
.uk-box-sizing-border {
|
|
7624
|
+
box-sizing: border-box;
|
|
7625
|
+
}
|
|
7528
7626
|
/* Resize
|
|
7529
7627
|
========================================================================== */
|
|
7530
7628
|
.uk-resize {
|
|
@@ -7802,7 +7900,7 @@ iframe[data-uk-cover] {
|
|
|
7802
7900
|
/* 1 */
|
|
7803
7901
|
text-decoration: none;
|
|
7804
7902
|
}
|
|
7805
|
-
.uk-logo
|
|
7903
|
+
.uk-logo :where(img, svg, video) {
|
|
7806
7904
|
display: block;
|
|
7807
7905
|
}
|
|
7808
7906
|
.uk-logo-inverse {
|
|
@@ -10900,6 +10998,149 @@ iframe[data-uk-cover] {
|
|
|
10900
10998
|
.uk-offcanvas-bar .uk-nav-primary .uk-nav-sub li.uk-active > a {
|
|
10901
10999
|
color: #fff;
|
|
10902
11000
|
}
|
|
11001
|
+
.uk-light .uk-nav-secondary > li > a,
|
|
11002
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
|
|
11003
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
|
|
11004
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
|
|
11005
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
|
|
11006
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary > li > a,
|
|
11007
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a,
|
|
11008
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary > li > a,
|
|
11009
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a,
|
|
11010
|
+
.uk-overlay-primary .uk-nav-secondary > li > a,
|
|
11011
|
+
.uk-offcanvas-bar .uk-nav-secondary > li > a {
|
|
11012
|
+
color: #fff;
|
|
11013
|
+
}
|
|
11014
|
+
.uk-light .uk-nav-secondary > li > a:hover,
|
|
11015
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
|
|
11016
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
|
|
11017
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
|
|
11018
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
|
|
11019
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary > li > a:hover,
|
|
11020
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a:hover,
|
|
11021
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary > li > a:hover,
|
|
11022
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a:hover,
|
|
11023
|
+
.uk-overlay-primary .uk-nav-secondary > li > a:hover,
|
|
11024
|
+
.uk-offcanvas-bar .uk-nav-secondary > li > a:hover {
|
|
11025
|
+
color: #fff;
|
|
11026
|
+
}
|
|
11027
|
+
.uk-light .uk-nav-secondary > li.uk-active > a,
|
|
11028
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
|
|
11029
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
|
|
11030
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
|
|
11031
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
|
|
11032
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary > li.uk-active > a,
|
|
11033
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li.uk-active > a,
|
|
11034
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary > li.uk-active > a,
|
|
11035
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li.uk-active > a,
|
|
11036
|
+
.uk-overlay-primary .uk-nav-secondary > li.uk-active > a,
|
|
11037
|
+
.uk-offcanvas-bar .uk-nav-secondary > li.uk-active > a {
|
|
11038
|
+
color: #fff;
|
|
11039
|
+
}
|
|
11040
|
+
.uk-light .uk-nav-secondary .uk-nav-subtitle,
|
|
11041
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
|
|
11042
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
|
|
11043
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
|
|
11044
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
|
|
11045
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-subtitle,
|
|
11046
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-subtitle,
|
|
11047
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-subtitle,
|
|
11048
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-subtitle,
|
|
11049
|
+
.uk-overlay-primary .uk-nav-secondary .uk-nav-subtitle,
|
|
11050
|
+
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-subtitle {
|
|
11051
|
+
color: rgba(255, 255, 255, 0.5);
|
|
11052
|
+
}
|
|
11053
|
+
.uk-light .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11054
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11055
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11056
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11057
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11058
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11059
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11060
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11061
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11062
|
+
.uk-overlay-primary .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
|
|
11063
|
+
.uk-offcanvas-bar .uk-nav-secondary > li > a:hover .uk-nav-subtitle {
|
|
11064
|
+
color: rgba(255, 255, 255, 0.7);
|
|
11065
|
+
}
|
|
11066
|
+
.uk-light .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11067
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11068
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11069
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11070
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11071
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11072
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11073
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11074
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11075
|
+
.uk-overlay-primary .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
|
|
11076
|
+
.uk-offcanvas-bar .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
|
|
11077
|
+
color: #fff;
|
|
11078
|
+
}
|
|
11079
|
+
.uk-light .uk-nav-secondary .uk-nav-header,
|
|
11080
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
|
|
11081
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
|
|
11082
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
|
|
11083
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
|
|
11084
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-header,
|
|
11085
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-header,
|
|
11086
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-header,
|
|
11087
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-header,
|
|
11088
|
+
.uk-overlay-primary .uk-nav-secondary .uk-nav-header,
|
|
11089
|
+
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-header {
|
|
11090
|
+
color: #fff;
|
|
11091
|
+
}
|
|
11092
|
+
.uk-light .uk-nav-secondary .uk-nav-divider,
|
|
11093
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
|
|
11094
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
|
|
11095
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
|
|
11096
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
|
|
11097
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-divider,
|
|
11098
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-divider,
|
|
11099
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-divider,
|
|
11100
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-divider,
|
|
11101
|
+
.uk-overlay-primary .uk-nav-secondary .uk-nav-divider,
|
|
11102
|
+
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-divider {
|
|
11103
|
+
border-top-color: rgba(255, 255, 255, 0.2);
|
|
11104
|
+
}
|
|
11105
|
+
.uk-light .uk-nav-secondary .uk-nav-sub a,
|
|
11106
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
|
|
11107
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
|
|
11108
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
|
|
11109
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
|
|
11110
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub a,
|
|
11111
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub a,
|
|
11112
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub a,
|
|
11113
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub a,
|
|
11114
|
+
.uk-overlay-primary .uk-nav-secondary .uk-nav-sub a,
|
|
11115
|
+
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub a {
|
|
11116
|
+
color: rgba(255, 255, 255, 0.5);
|
|
11117
|
+
}
|
|
11118
|
+
.uk-light .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11119
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11120
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11121
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11122
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11123
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11124
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11125
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11126
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11127
|
+
.uk-overlay-primary .uk-nav-secondary .uk-nav-sub a:hover,
|
|
11128
|
+
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub a:hover {
|
|
11129
|
+
color: rgba(255, 255, 255, 0.7);
|
|
11130
|
+
}
|
|
11131
|
+
.uk-light .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11132
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11133
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11134
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11135
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11136
|
+
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11137
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11138
|
+
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11139
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11140
|
+
.uk-overlay-primary .uk-nav-secondary .uk-nav-sub li.uk-active > a,
|
|
11141
|
+
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub li.uk-active > a {
|
|
11142
|
+
color: #fff;
|
|
11143
|
+
}
|
|
10903
11144
|
.uk-light .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
|
|
10904
11145
|
.uk-section-primary:not(.uk-preserve-color) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
|
|
10905
11146
|
.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 +11791,28 @@ iframe[data-uk-cover] {
|
|
|
11550
11791
|
.uk-offcanvas-bar .uk-logo:hover {
|
|
11551
11792
|
color: #fff;
|
|
11552
11793
|
}
|
|
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-
|
|
11794
|
+
.uk-light .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11795
|
+
.uk-light .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11796
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11797
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11798
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11799
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11800
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11801
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11802
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11803
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11804
|
+
.uk-card-primary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11805
|
+
.uk-card-primary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11806
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11807
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11808
|
+
.uk-card-secondary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11809
|
+
.uk-card-secondary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11810
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11811
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11812
|
+
.uk-overlay-primary .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11813
|
+
.uk-overlay-primary .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11814
|
+
.uk-offcanvas-bar .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11815
|
+
.uk-offcanvas-bar .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) {
|
|
11564
11816
|
display: none;
|
|
11565
11817
|
}
|
|
11566
11818
|
.uk-light .uk-logo-inverse,
|