uikit 3.14.4-dev.310965bc8 → 3.14.4-dev.51a1b06ef
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/dist/css/uikit-core-rtl.css +114 -63
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +114 -63
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +114 -64
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +114 -64
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +1 -1
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +7 -5
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +6 -14
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +6 -14
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +4 -5
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +4 -5
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +1 -1
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +4 -5
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +1 -1
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +3 -3
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +19 -19
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +144 -94
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +152 -100
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/images/{backgrounds/nav-parent-open.svg → components/nav-parent-icon-large.svg} +0 -0
- package/src/images/components/nav-parent-icon.svg +3 -0
- package/src/images/components/navbar-parent-icon.svg +3 -0
- package/src/js/components/filter.js +5 -3
- package/src/js/components/sortable.js +2 -3
- package/src/js/core/height-viewport.js +6 -2
- package/src/js/core/icon.js +16 -0
- package/src/js/core/index.js +2 -0
- package/src/js/core/leader.js +2 -2
- package/src/js/core/navbar.js +44 -15
- package/src/js/core/scroll.js +37 -10
- package/src/js/core/sticky.js +8 -9
- package/src/js/mixin/media.js +4 -5
- package/src/js/mixin/position.js +19 -11
- package/src/js/mixin/togglable.js +8 -17
- package/src/js/util/position.js +1 -2
- package/src/js/util/style.js +4 -13
- package/src/js/util/viewport.js +4 -31
- package/src/less/components/dropdown.less +14 -0
- package/src/less/components/leader.less +1 -1
- package/src/less/components/nav.less +15 -40
- package/src/less/components/navbar.less +100 -13
- package/src/less/components/utility.less +10 -2
- package/src/less/theme/nav.less +0 -8
- package/src/less/theme/navbar.less +4 -6
- package/src/scss/components/dropdown.scss +14 -0
- package/src/scss/components/leader.scss +1 -1
- package/src/scss/components/nav.scss +14 -28
- package/src/scss/components/navbar.scss +88 -13
- package/src/scss/components/utility.scss +8 -1
- package/src/scss/mixins-theme.scss +17 -19
- package/src/scss/mixins.scss +16 -15
- package/src/scss/theme/nav.scss +0 -8
- package/src/scss/theme/navbar.scss +3 -2
- package/src/scss/variables-theme.scss +17 -11
- package/src/scss/variables.scss +17 -10
- package/tests/drop.html +66 -16
- package/tests/dropdown.html +103 -16
- package/tests/index.html +4 -4
- package/tests/nav.html +22 -89
- package/tests/navbar.html +284 -63
- package/tests/offcanvas.html +16 -16
- package/tests/utility.html +19 -0
- package/src/images/backgrounds/nav-parent-close.svg +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,14 +4,18 @@
|
|
|
4
4
|
|
|
5
5
|
### Added
|
|
6
6
|
|
|
7
|
+
- Add dropdown large modifier to Dropdown and Navbar component
|
|
7
8
|
- Add gap variable to navbar items in Navbar component
|
|
8
9
|
- Add color mode variable to navbar dropdown in Navbar component
|
|
10
|
+
- Add navbar parent icon to Navbar component
|
|
9
11
|
- Add font size variables to nav and sublist in Nav component
|
|
10
12
|
- Add small breakpoint padding variables to Modal component- Add `animate-out` option to Drop component
|
|
11
13
|
- Add alignment `stretch` to Drop component
|
|
12
14
|
- Add Height Viewport uses scroll parent as viewport
|
|
13
15
|
- Add zero z-index utility class to Position component
|
|
14
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
|
|
15
19
|
|
|
16
20
|
### Changed
|
|
17
21
|
|
|
@@ -20,6 +24,13 @@
|
|
|
20
24
|
- Rename `@offcanvas-bar-padding-horizontal-m` to `@offcanvas-bar-padding-horizontal-s`
|
|
21
25
|
- Rename `@nav-primary-item-font-size` to `@nav-primary-font-size`
|
|
22
26
|
- Rename `@nav-primary-item-line-height` to `@nav-primary-line-height`
|
|
27
|
+
- Rename `@navbar-dropdown-dropbar-margin-top` to `@navbar-dropdown-dropbar-padding-top`
|
|
28
|
+
- Rename `@navbar-dropdown-dropbar-margin-bottom` to `@navbar-dropdown-dropbar-padding-bottom`
|
|
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
|
|
23
34
|
|
|
24
35
|
### Fixed
|
|
25
36
|
|
|
@@ -27,6 +38,8 @@
|
|
|
27
38
|
- Fix `offsetPosition()` adds `border-top` of offsetParents
|
|
28
39
|
- Fix dragging in Slider component on iOS
|
|
29
40
|
- Fix Drop component no longer flips, if it does not fit into scroll area
|
|
41
|
+
- Fix Drop component alignment within Dropbar
|
|
42
|
+
- Remove margin from the last-child within dropdowns in Dropdown and Navbar components
|
|
30
43
|
|
|
31
44
|
## 3.14.3 (May 27, 2022)
|
|
32
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,17 @@ 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
|
+
}
|
|
3296
|
+
/* Size modifier
|
|
3297
|
+
========================================================================== */
|
|
3298
|
+
.uk-dropdown-large {
|
|
3299
|
+
padding: 40px;
|
|
3300
|
+
}
|
|
3290
3301
|
/* Stretch modifier
|
|
3291
3302
|
========================================================================== */
|
|
3292
3303
|
/*
|
|
@@ -4009,7 +4020,7 @@ select.uk-form-width-xsmall {
|
|
|
4009
4020
|
* Pass fill character to JS
|
|
4010
4021
|
*/
|
|
4011
4022
|
:root {
|
|
4012
|
-
--uk-leader-fill-content:
|
|
4023
|
+
--uk-leader-fill-content: .;
|
|
4013
4024
|
}
|
|
4014
4025
|
/* ========================================================================
|
|
4015
4026
|
Component: Notification
|
|
@@ -4654,19 +4665,13 @@ ul.uk-nav-sub {
|
|
|
4654
4665
|
.uk-nav-sub a {
|
|
4655
4666
|
padding: 2px 0;
|
|
4656
4667
|
}
|
|
4657
|
-
/* Parent icon
|
|
4668
|
+
/* Parent icon
|
|
4658
4669
|
========================================================================== */
|
|
4659
|
-
.uk-nav-parent-icon
|
|
4660
|
-
content: "";
|
|
4661
|
-
width: 1.5em;
|
|
4662
|
-
height: 1.5em;
|
|
4670
|
+
.uk-nav-parent-icon {
|
|
4663
4671
|
margin-right: auto;
|
|
4664
|
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
|
4665
|
-
background-repeat: no-repeat;
|
|
4666
|
-
background-position: 50% 50%;
|
|
4667
4672
|
}
|
|
4668
|
-
.uk-nav
|
|
4669
|
-
|
|
4673
|
+
.uk-nav > li > a[aria-expanded="true"] .uk-nav-parent-icon {
|
|
4674
|
+
transform: rotate(-180deg);
|
|
4670
4675
|
}
|
|
4671
4676
|
/* Header
|
|
4672
4677
|
========================================================================== */
|
|
@@ -4810,15 +4815,19 @@ ul.uk-nav-sub {
|
|
|
4810
4815
|
.uk-nav-center .uk-nav-sub ul {
|
|
4811
4816
|
padding-right: 0;
|
|
4812
4817
|
}
|
|
4813
|
-
/* Parent icon
|
|
4814
|
-
.uk-nav-center.uk-nav-parent-icon
|
|
4818
|
+
/* Parent icon */
|
|
4819
|
+
.uk-nav-center .uk-nav-parent-icon {
|
|
4815
4820
|
margin-right: 0;
|
|
4816
4821
|
}
|
|
4817
4822
|
/* Style modifier
|
|
4818
4823
|
========================================================================== */
|
|
4824
|
+
/*
|
|
4825
|
+
* Divider
|
|
4826
|
+
* Naming is in plural to prevent conflicts with divider sub object.
|
|
4827
|
+
*/
|
|
4819
4828
|
.uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
|
|
4820
|
-
margin-top:
|
|
4821
|
-
padding-top:
|
|
4829
|
+
margin-top: 5px;
|
|
4830
|
+
padding-top: 5px;
|
|
4822
4831
|
border-top: 1px solid #e5e5e5;
|
|
4823
4832
|
}
|
|
4824
4833
|
/* ========================================================================
|
|
@@ -4936,7 +4945,6 @@ ul.uk-nav-sub {
|
|
|
4936
4945
|
/* 3 */
|
|
4937
4946
|
box-sizing: border-box;
|
|
4938
4947
|
min-height: 80px;
|
|
4939
|
-
padding: 0 15px;
|
|
4940
4948
|
/* 4 */
|
|
4941
4949
|
font-size: 16px;
|
|
4942
4950
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
@@ -4947,6 +4955,7 @@ ul.uk-nav-sub {
|
|
|
4947
4955
|
* Nav items
|
|
4948
4956
|
*/
|
|
4949
4957
|
.uk-navbar-nav > li > a {
|
|
4958
|
+
padding: 0 15px;
|
|
4950
4959
|
color: #999;
|
|
4951
4960
|
}
|
|
4952
4961
|
/*
|
|
@@ -4965,6 +4974,14 @@ ul.uk-nav-sub {
|
|
|
4965
4974
|
.uk-navbar-nav > li.uk-active > a {
|
|
4966
4975
|
color: #333;
|
|
4967
4976
|
}
|
|
4977
|
+
/* Parent icon modifier
|
|
4978
|
+
========================================================================== */
|
|
4979
|
+
.uk-navbar-parent-icon {
|
|
4980
|
+
margin-right: 4px;
|
|
4981
|
+
}
|
|
4982
|
+
.uk-navbar-nav > li > a[aria-expanded="true"] .uk-navbar-parent-icon {
|
|
4983
|
+
transform: rotate(-180deg);
|
|
4984
|
+
}
|
|
4968
4985
|
/* Item
|
|
4969
4986
|
========================================================================== */
|
|
4970
4987
|
.uk-navbar-item {
|
|
@@ -4980,6 +4997,7 @@ ul.uk-nav-sub {
|
|
|
4980
4997
|
/* Toggle
|
|
4981
4998
|
========================================================================== */
|
|
4982
4999
|
.uk-navbar-toggle {
|
|
5000
|
+
padding: 0 15px;
|
|
4983
5001
|
color: #999;
|
|
4984
5002
|
}
|
|
4985
5003
|
.uk-navbar-toggle:hover,
|
|
@@ -5040,6 +5058,12 @@ ul.uk-nav-sub {
|
|
|
5040
5058
|
.uk-navbar-dropdown.uk-open {
|
|
5041
5059
|
display: block;
|
|
5042
5060
|
}
|
|
5061
|
+
/*
|
|
5062
|
+
* Remove margin from the last-child
|
|
5063
|
+
*/
|
|
5064
|
+
.uk-navbar-dropdown > :last-child {
|
|
5065
|
+
margin-bottom: 0;
|
|
5066
|
+
}
|
|
5043
5067
|
/*
|
|
5044
5068
|
* Grid
|
|
5045
5069
|
* Adopts `uk-grid`
|
|
@@ -5074,9 +5098,17 @@ ul.uk-nav-sub {
|
|
|
5074
5098
|
.uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
|
|
5075
5099
|
width: 1000px;
|
|
5076
5100
|
}
|
|
5101
|
+
/*
|
|
5102
|
+
* Size modifier
|
|
5103
|
+
*/
|
|
5104
|
+
.uk-navbar-dropdown-large {
|
|
5105
|
+
--uk-position-shift-offset: 0;
|
|
5106
|
+
padding: 40px;
|
|
5107
|
+
}
|
|
5077
5108
|
/*
|
|
5078
5109
|
* Stretch modifier
|
|
5079
5110
|
* 1. Allow scrolling
|
|
5111
|
+
* 2. Style
|
|
5080
5112
|
*/
|
|
5081
5113
|
.uk-navbar-dropdown-stretch {
|
|
5082
5114
|
--uk-position-offset: 0;
|
|
@@ -5085,25 +5117,51 @@ ul.uk-nav-sub {
|
|
|
5085
5117
|
/* 1 */
|
|
5086
5118
|
overflow-y: auto;
|
|
5087
5119
|
-webkit-overflow-scrolling: touch;
|
|
5120
|
+
/* 2 */
|
|
5121
|
+
padding: 15px 15px 15px 15px;
|
|
5122
|
+
background: #f8f8f8;
|
|
5123
|
+
}
|
|
5124
|
+
/* Phone landscape and bigger */
|
|
5125
|
+
@media (min-width: 640px) {
|
|
5126
|
+
.uk-navbar-dropdown-stretch {
|
|
5127
|
+
padding-right: 30px;
|
|
5128
|
+
padding-left: 30px;
|
|
5129
|
+
}
|
|
5130
|
+
}
|
|
5131
|
+
/* Tablet landscape and bigger */
|
|
5132
|
+
@media (min-width: 960px) {
|
|
5133
|
+
.uk-navbar-dropdown-stretch {
|
|
5134
|
+
padding-right: 40px;
|
|
5135
|
+
padding-left: 40px;
|
|
5136
|
+
}
|
|
5088
5137
|
}
|
|
5089
5138
|
/*
|
|
5090
5139
|
* Dropbar modifier
|
|
5091
5140
|
* 1. Reset dropdown width to prevent to early shifting
|
|
5092
|
-
* 2.
|
|
5093
|
-
* 3.
|
|
5094
|
-
* 4. Horizontal padding
|
|
5141
|
+
* 2. Reset style
|
|
5142
|
+
* 3. Padding
|
|
5095
5143
|
*/
|
|
5096
5144
|
.uk-navbar-dropdown-dropbar {
|
|
5097
5145
|
/* 1 */
|
|
5098
5146
|
width: auto;
|
|
5099
5147
|
/* 2 */
|
|
5100
|
-
|
|
5148
|
+
background: transparent;
|
|
5101
5149
|
/* 3 */
|
|
5102
|
-
|
|
5103
|
-
/* 4 */
|
|
5104
|
-
padding-right: 15px;
|
|
5105
|
-
padding-left: 15px;
|
|
5150
|
+
padding: 15px 15px 15px 15px;
|
|
5106
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
|
+
}
|
|
5107
5165
|
}
|
|
5108
5166
|
/* Dropdown Nav
|
|
5109
5167
|
* Adopts `uk-nav`
|
|
@@ -7483,6 +7541,14 @@ iframe[data-uk-cover] {
|
|
|
7483
7541
|
.uk-overflow-auto > :last-child {
|
|
7484
7542
|
margin-bottom: 0;
|
|
7485
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
|
+
}
|
|
7486
7552
|
/* Resize
|
|
7487
7553
|
========================================================================== */
|
|
7488
7554
|
.uk-resize {
|
|
@@ -7760,7 +7826,7 @@ iframe[data-uk-cover] {
|
|
|
7760
7826
|
/* 1 */
|
|
7761
7827
|
text-decoration: none;
|
|
7762
7828
|
}
|
|
7763
|
-
.uk-logo
|
|
7829
|
+
.uk-logo :where(img, svg, video) {
|
|
7764
7830
|
display: block;
|
|
7765
7831
|
}
|
|
7766
7832
|
.uk-logo-inverse {
|
|
@@ -10650,32 +10716,6 @@ iframe[data-uk-cover] {
|
|
|
10650
10716
|
.uk-offcanvas-bar .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
|
|
10651
10717
|
border-top-color: rgba(255, 255, 255, 0.2);
|
|
10652
10718
|
}
|
|
10653
|
-
.uk-light .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10654
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10655
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10656
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10657
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10658
|
-
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10659
|
-
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10660
|
-
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10661
|
-
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10662
|
-
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10663
|
-
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent > a::after {
|
|
10664
|
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
|
10665
|
-
}
|
|
10666
|
-
.uk-light .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10667
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10668
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10669
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10670
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10671
|
-
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10672
|
-
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10673
|
-
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10674
|
-
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10675
|
-
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10676
|
-
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
|
|
10677
|
-
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");
|
|
10678
|
-
}
|
|
10679
10719
|
.uk-light .uk-nav-default > li > a,
|
|
10680
10720
|
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a,
|
|
10681
10721
|
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a,
|
|
@@ -11534,17 +11574,28 @@ iframe[data-uk-cover] {
|
|
|
11534
11574
|
.uk-offcanvas-bar .uk-logo:hover {
|
|
11535
11575
|
color: #fff;
|
|
11536
11576
|
}
|
|
11537
|
-
.uk-light .uk-logo > :not(
|
|
11538
|
-
.uk-
|
|
11539
|
-
.uk-section-
|
|
11540
|
-
.uk-
|
|
11541
|
-
.uk-
|
|
11542
|
-
.uk-
|
|
11543
|
-
.uk-
|
|
11544
|
-
.uk-
|
|
11545
|
-
.uk-
|
|
11546
|
-
.uk-
|
|
11547
|
-
.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) {
|
|
11548
11599
|
display: none;
|
|
11549
11600
|
}
|
|
11550
11601
|
.uk-light .uk-logo-inverse,
|