uikit 3.14.4-dev.cd89debeb → 3.14.4-dev.d472fe41a
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 +15 -0
- package/dist/css/uikit-core-rtl.css +134 -66
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +134 -66
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +131 -67
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +131 -67
- 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 +27 -20
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +27 -20
- 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 +1 -1
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +1 -1
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +22 -7
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +1 -1
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +22 -7
- 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 +23 -16
- 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 +114 -66
- 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 +167 -102
- 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 +11 -5
- package/src/js/core/icon.js +16 -0
- package/src/js/core/index.js +2 -0
- package/src/js/core/navbar.js +44 -15
- package/src/js/core/sticky.js +8 -9
- package/src/js/mixin/position.js +24 -7
- package/src/js/mixin/slider-drag.js +20 -8
- package/src/js/mixin/togglable.js +8 -17
- package/src/js/util/dimensions.js +6 -6
- package/src/js/util/position.js +1 -0
- package/src/js/util/viewport.js +2 -27
- package/src/less/components/dropdown.less +14 -0
- package/src/less/components/nav.less +29 -41
- package/src/less/components/navbar.less +101 -14
- package/src/less/components/utility.less +21 -4
- package/src/less/theme/nav.less +3 -15
- package/src/less/theme/navbar.less +4 -6
- package/src/scss/components/dropdown.scss +14 -0
- package/src/scss/components/nav.scss +29 -30
- package/src/scss/components/navbar.scss +89 -14
- package/src/scss/components/utility.scss +19 -3
- package/src/scss/mixins-theme.scss +16 -19
- package/src/scss/mixins.scss +14 -14
- package/src/scss/theme/nav.scss +3 -15
- package/src/scss/theme/navbar.scss +3 -2
- package/src/scss/variables-theme.scss +25 -14
- package/src/scss/variables.scss +25 -12
- package/tests/drop.html +66 -16
- package/tests/dropdown.html +103 -16
- package/tests/index.html +3 -3
- package/tests/nav.html +20 -87
- package/tests/navbar.html +2131 -1130
- package/tests/offcanvas.html +8 -8
- package/tests/utility.html +19 -0
- package/src/images/backgrounds/nav-parent-close.svg +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,23 +4,38 @@
|
|
|
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
|
|
11
|
+
- Add font size variables to nav and sublist in Nav component
|
|
9
12
|
- Add small breakpoint padding variables to Modal component- Add `animate-out` option to Drop component
|
|
10
13
|
- Add alignment `stretch` to Drop component
|
|
11
14
|
- Add Height Viewport uses scroll parent as viewport
|
|
12
15
|
- Add zero z-index utility class to Position component
|
|
13
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
|
|
14
19
|
|
|
15
20
|
### Changed
|
|
16
21
|
|
|
17
22
|
- Rename `@offcanvas-bar-width-m` to `@offcanvas-bar-width-s`
|
|
18
23
|
- Rename `@offcanvas-bar-padding-vertical-m` to `@offcanvas-bar-padding-vertical-s`
|
|
19
24
|
- Rename `@offcanvas-bar-padding-horizontal-m` to `@offcanvas-bar-padding-horizontal-s`
|
|
25
|
+
- Rename `@nav-primary-item-font-size` to `@nav-primary-font-size`
|
|
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
|
|
20
30
|
|
|
21
31
|
### Fixed
|
|
22
32
|
|
|
23
33
|
- Fix body is no longer scrollable in Modal component with overlay
|
|
34
|
+
- Fix `offsetPosition()` adds `border-top` of offsetParents
|
|
35
|
+
- Fix dragging in Slider component on iOS
|
|
36
|
+
- Fix Drop component no longer flips, if it does not fit into scroll area
|
|
37
|
+
- Fix Drop component alignment within Dropbar
|
|
38
|
+
- Remove margin from the last-child within dropdowns in Dropdown and Navbar components
|
|
24
39
|
|
|
25
40
|
## 3.14.3 (May 27, 2022)
|
|
26
41
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.14.4-dev.
|
|
1
|
+
/*! UIkit 3.14.4-dev.d472fe41a | 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
|
/*
|
|
@@ -4656,17 +4667,11 @@ ul.uk-nav-sub {
|
|
|
4656
4667
|
}
|
|
4657
4668
|
/* Parent icon modifier
|
|
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
|
========================================================================== */
|
|
@@ -4685,6 +4690,10 @@ ul.uk-nav-sub {
|
|
|
4685
4690
|
}
|
|
4686
4691
|
/* Default modifier
|
|
4687
4692
|
========================================================================== */
|
|
4693
|
+
.uk-nav-default {
|
|
4694
|
+
font-size: 16px;
|
|
4695
|
+
line-height: 1.5;
|
|
4696
|
+
}
|
|
4688
4697
|
/*
|
|
4689
4698
|
* Items
|
|
4690
4699
|
*/
|
|
@@ -4720,6 +4729,10 @@ ul.uk-nav-sub {
|
|
|
4720
4729
|
/*
|
|
4721
4730
|
* Sublists
|
|
4722
4731
|
*/
|
|
4732
|
+
.uk-nav-default .uk-nav-sub {
|
|
4733
|
+
font-size: 16px;
|
|
4734
|
+
line-height: 1.5;
|
|
4735
|
+
}
|
|
4723
4736
|
.uk-nav-default .uk-nav-sub a {
|
|
4724
4737
|
color: #999;
|
|
4725
4738
|
}
|
|
@@ -4731,12 +4744,14 @@ ul.uk-nav-sub {
|
|
|
4731
4744
|
}
|
|
4732
4745
|
/* Primary modifier
|
|
4733
4746
|
========================================================================== */
|
|
4747
|
+
.uk-nav-primary {
|
|
4748
|
+
font-size: 1.5rem;
|
|
4749
|
+
line-height: 1.5;
|
|
4750
|
+
}
|
|
4734
4751
|
/*
|
|
4735
4752
|
* Items
|
|
4736
4753
|
*/
|
|
4737
4754
|
.uk-nav-primary > li > a {
|
|
4738
|
-
font-size: 1.5rem;
|
|
4739
|
-
line-height: 1.5;
|
|
4740
4755
|
color: #999;
|
|
4741
4756
|
}
|
|
4742
4757
|
/* Hover */
|
|
@@ -4768,6 +4783,10 @@ ul.uk-nav-sub {
|
|
|
4768
4783
|
/*
|
|
4769
4784
|
* Sublists
|
|
4770
4785
|
*/
|
|
4786
|
+
.uk-nav-primary .uk-nav-sub {
|
|
4787
|
+
font-size: 1.25rem;
|
|
4788
|
+
line-height: 1.5;
|
|
4789
|
+
}
|
|
4771
4790
|
.uk-nav-primary .uk-nav-sub a {
|
|
4772
4791
|
color: #999;
|
|
4773
4792
|
}
|
|
@@ -4797,14 +4816,14 @@ ul.uk-nav-sub {
|
|
|
4797
4816
|
padding-right: 0;
|
|
4798
4817
|
}
|
|
4799
4818
|
/* Parent icon modifier */
|
|
4800
|
-
.uk-nav-center.uk-nav-parent-icon
|
|
4819
|
+
.uk-nav-center .uk-nav-parent-icon {
|
|
4801
4820
|
margin-right: 0;
|
|
4802
4821
|
}
|
|
4803
4822
|
/* Style modifier
|
|
4804
4823
|
========================================================================== */
|
|
4805
4824
|
.uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
|
|
4806
|
-
margin-top:
|
|
4807
|
-
padding-top:
|
|
4825
|
+
margin-top: 5px;
|
|
4826
|
+
padding-top: 5px;
|
|
4808
4827
|
border-top: 1px solid #e5e5e5;
|
|
4809
4828
|
}
|
|
4810
4829
|
/* ========================================================================
|
|
@@ -4922,7 +4941,6 @@ ul.uk-nav-sub {
|
|
|
4922
4941
|
/* 3 */
|
|
4923
4942
|
box-sizing: border-box;
|
|
4924
4943
|
min-height: 80px;
|
|
4925
|
-
padding: 0 15px;
|
|
4926
4944
|
/* 4 */
|
|
4927
4945
|
font-size: 16px;
|
|
4928
4946
|
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";
|
|
@@ -4933,6 +4951,7 @@ ul.uk-nav-sub {
|
|
|
4933
4951
|
* Nav items
|
|
4934
4952
|
*/
|
|
4935
4953
|
.uk-navbar-nav > li > a {
|
|
4954
|
+
padding: 0 15px;
|
|
4936
4955
|
color: #999;
|
|
4937
4956
|
}
|
|
4938
4957
|
/*
|
|
@@ -4951,6 +4970,14 @@ ul.uk-nav-sub {
|
|
|
4951
4970
|
.uk-navbar-nav > li.uk-active > a {
|
|
4952
4971
|
color: #333;
|
|
4953
4972
|
}
|
|
4973
|
+
/* Parent icon modifier
|
|
4974
|
+
========================================================================== */
|
|
4975
|
+
.uk-navbar-parent-icon {
|
|
4976
|
+
margin-right: 4px;
|
|
4977
|
+
}
|
|
4978
|
+
.uk-navbar-nav > li > a[aria-expanded="true"] .uk-navbar-parent-icon {
|
|
4979
|
+
transform: rotate(-180deg);
|
|
4980
|
+
}
|
|
4954
4981
|
/* Item
|
|
4955
4982
|
========================================================================== */
|
|
4956
4983
|
.uk-navbar-item {
|
|
@@ -4966,6 +4993,7 @@ ul.uk-nav-sub {
|
|
|
4966
4993
|
/* Toggle
|
|
4967
4994
|
========================================================================== */
|
|
4968
4995
|
.uk-navbar-toggle {
|
|
4996
|
+
padding: 0 15px;
|
|
4969
4997
|
color: #999;
|
|
4970
4998
|
}
|
|
4971
4999
|
.uk-navbar-toggle:hover,
|
|
@@ -5026,6 +5054,12 @@ ul.uk-nav-sub {
|
|
|
5026
5054
|
.uk-navbar-dropdown.uk-open {
|
|
5027
5055
|
display: block;
|
|
5028
5056
|
}
|
|
5057
|
+
/*
|
|
5058
|
+
* Remove margin from the last-child
|
|
5059
|
+
*/
|
|
5060
|
+
.uk-navbar-dropdown > :last-child {
|
|
5061
|
+
margin-bottom: 0;
|
|
5062
|
+
}
|
|
5029
5063
|
/*
|
|
5030
5064
|
* Grid
|
|
5031
5065
|
* Adopts `uk-grid`
|
|
@@ -5060,9 +5094,17 @@ ul.uk-nav-sub {
|
|
|
5060
5094
|
.uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
|
|
5061
5095
|
width: 1000px;
|
|
5062
5096
|
}
|
|
5097
|
+
/*
|
|
5098
|
+
* Size modifier
|
|
5099
|
+
*/
|
|
5100
|
+
.uk-navbar-dropdown-large {
|
|
5101
|
+
--uk-position-shift-offset: 0;
|
|
5102
|
+
padding: 40px;
|
|
5103
|
+
}
|
|
5063
5104
|
/*
|
|
5064
5105
|
* Stretch modifier
|
|
5065
5106
|
* 1. Allow scrolling
|
|
5107
|
+
* 2. Style
|
|
5066
5108
|
*/
|
|
5067
5109
|
.uk-navbar-dropdown-stretch {
|
|
5068
5110
|
--uk-position-offset: 0;
|
|
@@ -5071,26 +5113,51 @@ ul.uk-nav-sub {
|
|
|
5071
5113
|
/* 1 */
|
|
5072
5114
|
overflow-y: auto;
|
|
5073
5115
|
-webkit-overflow-scrolling: touch;
|
|
5116
|
+
/* 2 */
|
|
5117
|
+
padding: 15px 15px 15px 15px;
|
|
5118
|
+
background: #f8f8f8;
|
|
5119
|
+
}
|
|
5120
|
+
/* Phone landscape and bigger */
|
|
5121
|
+
@media (min-width: 640px) {
|
|
5122
|
+
.uk-navbar-dropdown-stretch {
|
|
5123
|
+
padding-right: 30px;
|
|
5124
|
+
padding-left: 30px;
|
|
5125
|
+
}
|
|
5126
|
+
}
|
|
5127
|
+
/* Tablet landscape and bigger */
|
|
5128
|
+
@media (min-width: 960px) {
|
|
5129
|
+
.uk-navbar-dropdown-stretch {
|
|
5130
|
+
padding-right: 40px;
|
|
5131
|
+
padding-left: 40px;
|
|
5132
|
+
}
|
|
5074
5133
|
}
|
|
5075
5134
|
/*
|
|
5076
5135
|
* Dropbar modifier
|
|
5077
5136
|
* 1. Reset dropdown width to prevent to early shifting
|
|
5078
|
-
* 2.
|
|
5079
|
-
* 3.
|
|
5080
|
-
* 4. Horizontal padding
|
|
5137
|
+
* 2. Reset style
|
|
5138
|
+
* 3. Padding
|
|
5081
5139
|
*/
|
|
5082
5140
|
.uk-navbar-dropdown-dropbar {
|
|
5083
5141
|
/* 1 */
|
|
5084
5142
|
width: auto;
|
|
5085
5143
|
/* 2 */
|
|
5086
|
-
|
|
5087
|
-
--uk-position-viewport-offset: 0;
|
|
5144
|
+
background: transparent;
|
|
5088
5145
|
/* 3 */
|
|
5089
|
-
|
|
5090
|
-
/* 4 */
|
|
5091
|
-
padding-right: 15px;
|
|
5092
|
-
padding-left: 15px;
|
|
5146
|
+
padding: 15px 15px 15px 15px;
|
|
5093
5147
|
--uk-position-shift-offset: 0;
|
|
5148
|
+
--uk-position-viewport-offset: 15px;
|
|
5149
|
+
}
|
|
5150
|
+
/* Phone landscape and bigger */
|
|
5151
|
+
@media (min-width: 640px) {
|
|
5152
|
+
.uk-navbar-dropdown-dropbar {
|
|
5153
|
+
--uk-position-viewport-offset: 30px;
|
|
5154
|
+
}
|
|
5155
|
+
}
|
|
5156
|
+
/* Tablet landscape and bigger */
|
|
5157
|
+
@media (min-width: 960px) {
|
|
5158
|
+
.uk-navbar-dropdown-dropbar {
|
|
5159
|
+
--uk-position-viewport-offset: 40px;
|
|
5160
|
+
}
|
|
5094
5161
|
}
|
|
5095
5162
|
/* Dropdown Nav
|
|
5096
5163
|
* Adopts `uk-nav`
|
|
@@ -7470,6 +7537,14 @@ iframe[data-uk-cover] {
|
|
|
7470
7537
|
.uk-overflow-auto > :last-child {
|
|
7471
7538
|
margin-bottom: 0;
|
|
7472
7539
|
}
|
|
7540
|
+
/* Box Sizing
|
|
7541
|
+
========================================================================== */
|
|
7542
|
+
.uk-box-sizing-content {
|
|
7543
|
+
box-sizing: content-box;
|
|
7544
|
+
}
|
|
7545
|
+
.uk-box-sizing-border {
|
|
7546
|
+
box-sizing: border-box;
|
|
7547
|
+
}
|
|
7473
7548
|
/* Resize
|
|
7474
7549
|
========================================================================== */
|
|
7475
7550
|
.uk-resize {
|
|
@@ -7724,23 +7799,31 @@ iframe[data-uk-cover] {
|
|
|
7724
7799
|
/* Logo
|
|
7725
7800
|
========================================================================== */
|
|
7726
7801
|
/*
|
|
7727
|
-
* 1.
|
|
7802
|
+
* 1. Style
|
|
7803
|
+
* 2. Required for `a`
|
|
7804
|
+
* 3. Behave like image but can be overridden through flex utility classes
|
|
7728
7805
|
*/
|
|
7729
7806
|
.uk-logo {
|
|
7807
|
+
/* 1 */
|
|
7730
7808
|
font-size: 1.5rem;
|
|
7731
7809
|
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";
|
|
7732
7810
|
color: #333;
|
|
7733
|
-
/*
|
|
7811
|
+
/* 2 */
|
|
7734
7812
|
text-decoration: none;
|
|
7735
7813
|
}
|
|
7814
|
+
/* 3 */
|
|
7815
|
+
:where(.uk-logo) {
|
|
7816
|
+
display: inline-block;
|
|
7817
|
+
vertical-align: middle;
|
|
7818
|
+
}
|
|
7736
7819
|
/* Hover */
|
|
7737
7820
|
.uk-logo:hover {
|
|
7738
7821
|
color: #333;
|
|
7739
7822
|
/* 1 */
|
|
7740
7823
|
text-decoration: none;
|
|
7741
7824
|
}
|
|
7742
|
-
.uk-logo
|
|
7743
|
-
display:
|
|
7825
|
+
.uk-logo :where(img, svg, video) {
|
|
7826
|
+
display: block;
|
|
7744
7827
|
}
|
|
7745
7828
|
.uk-logo-inverse {
|
|
7746
7829
|
display: none;
|
|
@@ -10629,32 +10712,6 @@ iframe[data-uk-cover] {
|
|
|
10629
10712
|
.uk-offcanvas-bar .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
|
|
10630
10713
|
border-top-color: rgba(255, 255, 255, 0.2);
|
|
10631
10714
|
}
|
|
10632
|
-
.uk-light .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10633
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10634
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10635
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10636
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10637
|
-
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10638
|
-
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10639
|
-
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10640
|
-
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10641
|
-
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10642
|
-
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent > a::after {
|
|
10643
|
-
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");
|
|
10644
|
-
}
|
|
10645
|
-
.uk-light .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10646
|
-
.uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10647
|
-
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10648
|
-
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10649
|
-
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10650
|
-
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10651
|
-
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10652
|
-
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10653
|
-
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10654
|
-
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10655
|
-
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
|
|
10656
|
-
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");
|
|
10657
|
-
}
|
|
10658
10715
|
.uk-light .uk-nav-default > li > a,
|
|
10659
10716
|
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a,
|
|
10660
10717
|
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a,
|
|
@@ -11513,17 +11570,28 @@ iframe[data-uk-cover] {
|
|
|
11513
11570
|
.uk-offcanvas-bar .uk-logo:hover {
|
|
11514
11571
|
color: #fff;
|
|
11515
11572
|
}
|
|
11516
|
-
.uk-light .uk-logo > :not(
|
|
11517
|
-
.uk-
|
|
11518
|
-
.uk-section-
|
|
11519
|
-
.uk-
|
|
11520
|
-
.uk-
|
|
11521
|
-
.uk-
|
|
11522
|
-
.uk-
|
|
11523
|
-
.uk-
|
|
11524
|
-
.uk-
|
|
11525
|
-
.uk-
|
|
11526
|
-
.uk-
|
|
11573
|
+
.uk-light .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11574
|
+
.uk-light .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11575
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11576
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11577
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11578
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11579
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11580
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11581
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11582
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11583
|
+
.uk-card-primary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11584
|
+
.uk-card-primary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11585
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11586
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11587
|
+
.uk-card-secondary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11588
|
+
.uk-card-secondary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11589
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11590
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11591
|
+
.uk-overlay-primary .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11592
|
+
.uk-overlay-primary .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
|
|
11593
|
+
.uk-offcanvas-bar .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
|
|
11594
|
+
.uk-offcanvas-bar .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) {
|
|
11527
11595
|
display: none;
|
|
11528
11596
|
}
|
|
11529
11597
|
.uk-light .uk-logo-inverse,
|