uikit 3.14.4-dev.4bd89c5ca → 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 +8 -1
- package/dist/css/uikit-core-rtl.css +73 -101
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +73 -101
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +73 -101
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +73 -101
- 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 +1 -1
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +1 -1
- 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 +4 -4
- 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 +74 -39
- 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 +74 -39
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/images/{backgrounds/nav-parent-close.svg → components/nav-parent-icon-large.svg} +0 -0
- package/src/images/{backgrounds/navbar-parent-close.svg → components/nav-parent-icon.svg} +0 -0
- package/src/images/{backgrounds/navbar-parent-open.svg → components/navbar-parent-icon.svg} +1 -1
- package/src/js/core/height-viewport.js +4 -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/scroll.js +37 -10
- package/src/js/mixin/media.js +4 -5
- package/src/js/mixin/position.js +3 -4
- package/src/js/util/style.js +4 -13
- package/src/js/util/viewport.js +2 -4
- package/src/less/components/dropdown.less +6 -0
- package/src/less/components/leader.less +1 -1
- package/src/less/components/nav.less +15 -40
- package/src/less/components/navbar.less +27 -32
- package/src/less/components/utility.less +10 -2
- package/src/less/theme/nav.less +0 -8
- package/src/less/theme/navbar.less +0 -8
- package/src/scss/components/dropdown.scss +6 -0
- package/src/scss/components/leader.scss +1 -1
- package/src/scss/components/nav.scss +14 -28
- package/src/scss/components/navbar.scss +27 -20
- package/src/scss/components/utility.scss +8 -1
- package/src/scss/mixins-theme.scss +4 -27
- package/src/scss/mixins.scss +4 -27
- package/src/scss/theme/nav.scss +0 -8
- package/src/scss/theme/navbar.scss +0 -8
- package/src/scss/variables-theme.scss +4 -13
- package/src/scss/variables.scss +4 -13
- package/tests/index.html +4 -4
- package/tests/nav.html +22 -89
- package/tests/navbar.html +20 -31
- package/tests/offcanvas.html +16 -16
- package/tests/utility.html +19 -0
- package/src/images/backgrounds/nav-parent-open.svg +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
- Add Height Viewport uses scroll parent as viewport
|
|
15
15
|
- Add zero z-index utility class to Position component
|
|
16
16
|
- Add option `bg-scroll` to Drop component
|
|
17
|
+
- Add support for `picture` element to logo in Utility component
|
|
18
|
+
- Add box sizing classes to Utility component
|
|
17
19
|
|
|
18
20
|
### Changed
|
|
19
21
|
|
|
@@ -24,7 +26,11 @@
|
|
|
24
26
|
- Rename `@nav-primary-item-line-height` to `@nav-primary-line-height`
|
|
25
27
|
- Rename `@navbar-dropdown-dropbar-margin-top` to `@navbar-dropdown-dropbar-padding-top`
|
|
26
28
|
- Rename `@navbar-dropdown-dropbar-margin-bottom` to `@navbar-dropdown-dropbar-padding-bottom`
|
|
27
|
-
-
|
|
29
|
+
- Use JS icon component instead of compiling icons into CSS for nav parent icon in Nav component
|
|
30
|
+
|
|
31
|
+
### Removed
|
|
32
|
+
|
|
33
|
+
- Remove `getCssVar()` utility function
|
|
28
34
|
|
|
29
35
|
### Fixed
|
|
30
36
|
|
|
@@ -33,6 +39,7 @@
|
|
|
33
39
|
- Fix dragging in Slider component on iOS
|
|
34
40
|
- Fix Drop component no longer flips, if it does not fit into scroll area
|
|
35
41
|
- Fix Drop component alignment within Dropbar
|
|
42
|
+
- Remove margin from the last-child within dropdowns in Dropdown and Navbar components
|
|
36
43
|
|
|
37
44
|
## 3.14.3 (May 27, 2022)
|
|
38
45
|
|
|
@@ -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
|
========================================================================== */
|
|
@@ -3287,6 +3287,12 @@ select.uk-form-width-xsmall {
|
|
|
3287
3287
|
.uk-dropdown.uk-open {
|
|
3288
3288
|
display: block;
|
|
3289
3289
|
}
|
|
3290
|
+
/*
|
|
3291
|
+
* Remove margin from the last-child
|
|
3292
|
+
*/
|
|
3293
|
+
.uk-dropdown > :last-child {
|
|
3294
|
+
margin-bottom: 0;
|
|
3295
|
+
}
|
|
3290
3296
|
/* Size modifier
|
|
3291
3297
|
========================================================================== */
|
|
3292
3298
|
.uk-dropdown-large {
|
|
@@ -4014,7 +4020,7 @@ select.uk-form-width-xsmall {
|
|
|
4014
4020
|
* Pass fill character to JS
|
|
4015
4021
|
*/
|
|
4016
4022
|
:root {
|
|
4017
|
-
--uk-leader-fill-content:
|
|
4023
|
+
--uk-leader-fill-content: .;
|
|
4018
4024
|
}
|
|
4019
4025
|
/* ========================================================================
|
|
4020
4026
|
Component: Notification
|
|
@@ -4659,19 +4665,13 @@ ul.uk-nav-sub {
|
|
|
4659
4665
|
.uk-nav-sub a {
|
|
4660
4666
|
padding: 2px 0;
|
|
4661
4667
|
}
|
|
4662
|
-
/* Parent icon
|
|
4668
|
+
/* Parent icon
|
|
4663
4669
|
========================================================================== */
|
|
4664
|
-
.uk-nav-parent-icon
|
|
4665
|
-
content: "";
|
|
4666
|
-
width: 1.5em;
|
|
4667
|
-
height: 1.5em;
|
|
4670
|
+
.uk-nav-parent-icon {
|
|
4668
4671
|
margin-right: auto;
|
|
4669
|
-
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%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
|
4670
|
-
background-repeat: no-repeat;
|
|
4671
|
-
background-position: 50% 50%;
|
|
4672
4672
|
}
|
|
4673
|
-
.uk-nav
|
|
4674
|
-
|
|
4673
|
+
.uk-nav > li > a[aria-expanded="true"] .uk-nav-parent-icon {
|
|
4674
|
+
transform: rotate(-180deg);
|
|
4675
4675
|
}
|
|
4676
4676
|
/* Header
|
|
4677
4677
|
========================================================================== */
|
|
@@ -4815,15 +4815,19 @@ ul.uk-nav-sub {
|
|
|
4815
4815
|
.uk-nav-center .uk-nav-sub ul {
|
|
4816
4816
|
padding-right: 0;
|
|
4817
4817
|
}
|
|
4818
|
-
/* Parent icon
|
|
4819
|
-
.uk-nav-center.uk-nav-parent-icon
|
|
4818
|
+
/* Parent icon */
|
|
4819
|
+
.uk-nav-center .uk-nav-parent-icon {
|
|
4820
4820
|
margin-right: 0;
|
|
4821
4821
|
}
|
|
4822
4822
|
/* Style modifier
|
|
4823
4823
|
========================================================================== */
|
|
4824
|
+
/*
|
|
4825
|
+
* Divider
|
|
4826
|
+
* Naming is in plural to prevent conflicts with divider sub object.
|
|
4827
|
+
*/
|
|
4824
4828
|
.uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
|
|
4825
|
-
margin-top:
|
|
4826
|
-
padding-top:
|
|
4829
|
+
margin-top: 5px;
|
|
4830
|
+
padding-top: 5px;
|
|
4827
4831
|
border-top: 1px solid #e5e5e5;
|
|
4828
4832
|
}
|
|
4829
4833
|
/* ========================================================================
|
|
@@ -4972,18 +4976,11 @@ ul.uk-nav-sub {
|
|
|
4972
4976
|
}
|
|
4973
4977
|
/* Parent icon modifier
|
|
4974
4978
|
========================================================================== */
|
|
4975
|
-
.uk-navbar-parent-icon
|
|
4976
|
-
content: "";
|
|
4977
|
-
width: 12px;
|
|
4978
|
-
height: 12px;
|
|
4979
|
+
.uk-navbar-parent-icon {
|
|
4979
4980
|
margin-right: 4px;
|
|
4980
|
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23999%22%20stroke-width%3D%221.1%22%20points%3D%221%203.5%206%208.5%2011%203.5%22%2F%3E%0A%3C%2Fsvg%3E");
|
|
4981
|
-
background-repeat: no-repeat;
|
|
4982
|
-
background-position: 50% 50%;
|
|
4983
4981
|
}
|
|
4984
|
-
.uk-navbar-
|
|
4985
|
-
|
|
4986
|
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23999%22%20stroke-width%3D%221.1%22%20points%3D%2211%208.5%206%203.5%201%208.5%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
|
4982
|
+
.uk-navbar-nav > li > a[aria-expanded="true"] .uk-navbar-parent-icon {
|
|
4983
|
+
transform: rotate(-180deg);
|
|
4987
4984
|
}
|
|
4988
4985
|
/* Item
|
|
4989
4986
|
========================================================================== */
|
|
@@ -5061,6 +5058,12 @@ ul.uk-nav-sub {
|
|
|
5061
5058
|
.uk-navbar-dropdown.uk-open {
|
|
5062
5059
|
display: block;
|
|
5063
5060
|
}
|
|
5061
|
+
/*
|
|
5062
|
+
* Remove margin from the last-child
|
|
5063
|
+
*/
|
|
5064
|
+
.uk-navbar-dropdown > :last-child {
|
|
5065
|
+
margin-bottom: 0;
|
|
5066
|
+
}
|
|
5064
5067
|
/*
|
|
5065
5068
|
* Grid
|
|
5066
5069
|
* Adopts `uk-grid`
|
|
@@ -5146,6 +5149,19 @@ ul.uk-nav-sub {
|
|
|
5146
5149
|
/* 3 */
|
|
5147
5150
|
padding: 15px 15px 15px 15px;
|
|
5148
5151
|
--uk-position-shift-offset: 0;
|
|
5152
|
+
--uk-position-viewport-offset: 15px;
|
|
5153
|
+
}
|
|
5154
|
+
/* Phone landscape and bigger */
|
|
5155
|
+
@media (min-width: 640px) {
|
|
5156
|
+
.uk-navbar-dropdown-dropbar {
|
|
5157
|
+
--uk-position-viewport-offset: 30px;
|
|
5158
|
+
}
|
|
5159
|
+
}
|
|
5160
|
+
/* Tablet landscape and bigger */
|
|
5161
|
+
@media (min-width: 960px) {
|
|
5162
|
+
.uk-navbar-dropdown-dropbar {
|
|
5163
|
+
--uk-position-viewport-offset: 40px;
|
|
5164
|
+
}
|
|
5149
5165
|
}
|
|
5150
5166
|
/* Dropdown Nav
|
|
5151
5167
|
* Adopts `uk-nav`
|
|
@@ -7525,6 +7541,14 @@ iframe[data-uk-cover] {
|
|
|
7525
7541
|
.uk-overflow-auto > :last-child {
|
|
7526
7542
|
margin-bottom: 0;
|
|
7527
7543
|
}
|
|
7544
|
+
/* Box Sizing
|
|
7545
|
+
========================================================================== */
|
|
7546
|
+
.uk-box-sizing-content {
|
|
7547
|
+
box-sizing: content-box;
|
|
7548
|
+
}
|
|
7549
|
+
.uk-box-sizing-border {
|
|
7550
|
+
box-sizing: border-box;
|
|
7551
|
+
}
|
|
7528
7552
|
/* Resize
|
|
7529
7553
|
========================================================================== */
|
|
7530
7554
|
.uk-resize {
|
|
@@ -7802,7 +7826,7 @@ iframe[data-uk-cover] {
|
|
|
7802
7826
|
/* 1 */
|
|
7803
7827
|
text-decoration: none;
|
|
7804
7828
|
}
|
|
7805
|
-
.uk-logo
|
|
7829
|
+
.uk-logo :where(img, svg, video) {
|
|
7806
7830
|
display: block;
|
|
7807
7831
|
}
|
|
7808
7832
|
.uk-logo-inverse {
|
|
@@ -10692,32 +10716,6 @@ iframe[data-uk-cover] {
|
|
|
10692
10716
|
.uk-offcanvas-bar .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
|
|
10693
10717
|
border-top-color: rgba(255, 255, 255, 0.2);
|
|
10694
10718
|
}
|
|
10695
|
-
.uk-light .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10696
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10697
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10698
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10699
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10700
|
-
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10701
|
-
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10702
|
-
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10703
|
-
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10704
|
-
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10705
|
-
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent > a::after {
|
|
10706
|
-
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");
|
|
10707
|
-
}
|
|
10708
|
-
.uk-light .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10709
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10710
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10711
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10712
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10713
|
-
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10714
|
-
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10715
|
-
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10716
|
-
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10717
|
-
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10718
|
-
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
|
|
10719
|
-
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%2213%2010%207%204%201%2010%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
|
10720
|
-
}
|
|
10721
10719
|
.uk-light .uk-nav-default > li > a,
|
|
10722
10720
|
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a,
|
|
10723
10721
|
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a,
|
|
@@ -11002,43 +11000,6 @@ iframe[data-uk-cover] {
|
|
|
11002
11000
|
.uk-offcanvas-bar .uk-navbar-nav > li.uk-active > a {
|
|
11003
11001
|
color: #fff;
|
|
11004
11002
|
}
|
|
11005
|
-
.uk-light .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a::after,
|
|
11006
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a::after,
|
|
11007
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a::after,
|
|
11008
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a::after,
|
|
11009
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a::after,
|
|
11010
|
-
.uk-card-primary.uk-card-body .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a::after,
|
|
11011
|
-
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a::after,
|
|
11012
|
-
.uk-card-secondary.uk-card-body .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a::after,
|
|
11013
|
-
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a::after,
|
|
11014
|
-
.uk-overlay-primary .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a::after,
|
|
11015
|
-
.uk-offcanvas-bar .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a::after {
|
|
11016
|
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.5%29%22%20stroke-width%3D%221.1%22%20points%3D%221%203.5%206%208.5%2011%203.5%22%2F%3E%0A%3C%2Fsvg%3E");
|
|
11017
|
-
}
|
|
11018
|
-
.uk-light .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent:hover > a::after,
|
|
11019
|
-
.uk-light .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a[aria-expanded="true"]::after,
|
|
11020
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent:hover > a::after,
|
|
11021
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a[aria-expanded="true"]::after,
|
|
11022
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent:hover > a::after,
|
|
11023
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a[aria-expanded="true"]::after,
|
|
11024
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent:hover > a::after,
|
|
11025
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a[aria-expanded="true"]::after,
|
|
11026
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent:hover > a::after,
|
|
11027
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a[aria-expanded="true"]::after,
|
|
11028
|
-
.uk-card-primary.uk-card-body .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent:hover > a::after,
|
|
11029
|
-
.uk-card-primary.uk-card-body .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a[aria-expanded="true"]::after,
|
|
11030
|
-
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent:hover > a::after,
|
|
11031
|
-
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a[aria-expanded="true"]::after,
|
|
11032
|
-
.uk-card-secondary.uk-card-body .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent:hover > a::after,
|
|
11033
|
-
.uk-card-secondary.uk-card-body .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a[aria-expanded="true"]::after,
|
|
11034
|
-
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent:hover > a::after,
|
|
11035
|
-
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a[aria-expanded="true"]::after,
|
|
11036
|
-
.uk-overlay-primary .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent:hover > a::after,
|
|
11037
|
-
.uk-overlay-primary .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a[aria-expanded="true"]::after,
|
|
11038
|
-
.uk-offcanvas-bar .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent:hover > a::after,
|
|
11039
|
-
.uk-offcanvas-bar .uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a[aria-expanded="true"]::after {
|
|
11040
|
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.5%29%22%20stroke-width%3D%221.1%22%20points%3D%2211%208.5%206%203.5%201%208.5%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
|
11041
|
-
}
|
|
11042
11003
|
.uk-light .uk-navbar-item,
|
|
11043
11004
|
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-item,
|
|
11044
11005
|
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-item,
|
|
@@ -11613,17 +11574,28 @@ iframe[data-uk-cover] {
|
|
|
11613
11574
|
.uk-offcanvas-bar .uk-logo:hover {
|
|
11614
11575
|
color: #fff;
|
|
11615
11576
|
}
|
|
11616
|
-
.uk-light .uk-logo > :not(
|
|
11617
|
-
.uk-
|
|
11618
|
-
.uk-section-
|
|
11619
|
-
.uk-
|
|
11620
|
-
.uk-
|
|
11621
|
-
.uk-
|
|
11622
|
-
.uk-
|
|
11623
|
-
.uk-
|
|
11624
|
-
.uk-
|
|
11625
|
-
.uk-
|
|
11626
|
-
.uk-
|
|
11577
|
+
.uk-light .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11578
|
+
.uk-light .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11579
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11580
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11581
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11582
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11583
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11584
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11585
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11586
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11587
|
+
.uk-card-primary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11588
|
+
.uk-card-primary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11589
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11590
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11591
|
+
.uk-card-secondary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11592
|
+
.uk-card-secondary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11593
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11594
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11595
|
+
.uk-overlay-primary .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11596
|
+
.uk-overlay-primary .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11597
|
+
.uk-offcanvas-bar .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11598
|
+
.uk-offcanvas-bar .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) {
|
|
11627
11599
|
display: none;
|
|
11628
11600
|
}
|
|
11629
11601
|
.uk-light .uk-logo-inverse,
|