uikit 3.14.4-dev.871ba3c05 → 3.14.4-dev.a02c81d72
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 +17 -0
- package/dist/css/uikit-core-rtl.css +73 -28
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +73 -28
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +70 -29
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +70 -29
- 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 +110 -11
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +110 -11
- 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 +18 -3
- 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 +717 -637
- 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 +1511 -1414
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/images/backgrounds/nav-parent-close.svg +1 -1
- package/src/images/backgrounds/nav-parent-open.svg +1 -1
- package/src/images/backgrounds/navbar-parent-close.svg +3 -0
- package/src/images/backgrounds/navbar-parent-open.svg +3 -0
- package/src/js/components/filter.js +5 -3
- package/src/js/components/sortable.js +2 -3
- package/src/js/core/drop.js +7 -0
- package/src/js/core/height-viewport.js +11 -5
- package/src/js/core/navbar.js +44 -15
- package/src/js/core/offcanvas.js +1 -47
- package/src/js/core/sticky.js +8 -9
- package/src/js/mixin/modal.js +90 -4
- package/src/js/mixin/position.js +24 -7
- package/src/js/mixin/slider-drag.js +20 -8
- 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 +8 -0
- package/src/less/components/nav.less +22 -4
- package/src/less/components/navbar.less +60 -24
- package/src/less/components/utility.less +12 -3
- package/src/less/theme/nav.less +3 -7
- package/src/less/theme/navbar.less +7 -7
- package/src/scss/components/dropdown.scss +8 -0
- package/src/scss/components/nav.scss +24 -6
- package/src/scss/components/navbar.scss +60 -24
- package/src/scss/components/utility.scss +12 -3
- package/src/scss/mixins-theme.scss +2 -5
- package/src/scss/theme/nav.scss +3 -7
- package/src/scss/theme/navbar.scss +6 -3
- package/src/scss/variables-theme.scss +26 -10
- package/src/scss/variables.scss +26 -8
- package/tests/drop.html +72 -16
- package/tests/dropdown.html +103 -16
- package/tests/navbar.html +2132 -1126
package/CHANGELOG.md
CHANGED
|
@@ -4,18 +4,35 @@
|
|
|
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
|
|
16
|
+
- Add option `bg-scroll` to Drop component
|
|
13
17
|
|
|
14
18
|
### Changed
|
|
15
19
|
|
|
16
20
|
- Rename `@offcanvas-bar-width-m` to `@offcanvas-bar-width-s`
|
|
17
21
|
- Rename `@offcanvas-bar-padding-vertical-m` to `@offcanvas-bar-padding-vertical-s`
|
|
18
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
|
+
- Change nav parent icon
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- Fix body is no longer scrollable in Modal component with overlay
|
|
32
|
+
- Fix `offsetPosition()` adds `border-top` of offsetParents
|
|
33
|
+
- Fix dragging in Slider component on iOS
|
|
34
|
+
- Fix Drop component no longer flips, if it does not fit into scroll area
|
|
35
|
+
- Fix Drop component alignment within Dropbar
|
|
19
36
|
|
|
20
37
|
## 3.14.3 (May 27, 2022)
|
|
21
38
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.14.4-dev.
|
|
1
|
+
/*! UIkit 3.14.4-dev.a02c81d72 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -3287,6 +3287,11 @@ select.uk-form-width-xsmall {
|
|
|
3287
3287
|
.uk-dropdown.uk-open {
|
|
3288
3288
|
display: block;
|
|
3289
3289
|
}
|
|
3290
|
+
/* Size modifier
|
|
3291
|
+
========================================================================== */
|
|
3292
|
+
.uk-dropdown-large {
|
|
3293
|
+
padding: 40px;
|
|
3294
|
+
}
|
|
3290
3295
|
/* Stretch modifier
|
|
3291
3296
|
========================================================================== */
|
|
3292
3297
|
/*
|
|
@@ -4661,12 +4666,12 @@ ul.uk-nav-sub {
|
|
|
4661
4666
|
width: 1.5em;
|
|
4662
4667
|
height: 1.5em;
|
|
4663
4668
|
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%
|
|
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");
|
|
4665
4670
|
background-repeat: no-repeat;
|
|
4666
4671
|
background-position: 50% 50%;
|
|
4667
4672
|
}
|
|
4668
4673
|
.uk-nav-parent-icon > .uk-parent.uk-open > a::after {
|
|
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%
|
|
4674
|
+
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%2213%2010%207%204%201%2010%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
|
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
|
}
|
|
@@ -4815,7 +4834,6 @@ ul.uk-nav-sub {
|
|
|
4815
4834
|
*/
|
|
4816
4835
|
.uk-navbar {
|
|
4817
4836
|
display: flex;
|
|
4818
|
-
--uk-navbar-nav-item-gap: 0px;
|
|
4819
4837
|
/* 1 */
|
|
4820
4838
|
position: relative;
|
|
4821
4839
|
}
|
|
@@ -4828,15 +4846,12 @@ ul.uk-nav-sub {
|
|
|
4828
4846
|
========================================================================== */
|
|
4829
4847
|
/*
|
|
4830
4848
|
* 1. Align navs and items vertically if they have a different height
|
|
4831
|
-
* 2. Note: IE 11 requires an extra `div` which affects the center selector
|
|
4832
4849
|
*/
|
|
4833
4850
|
.uk-navbar-right,
|
|
4834
4851
|
.uk-navbar-left,
|
|
4835
|
-
|
|
4836
|
-
.uk-navbar-center-right > *,
|
|
4837
|
-
.uk-navbar-center-left > * {
|
|
4852
|
+
[class*='uk-navbar-center'] {
|
|
4838
4853
|
display: flex;
|
|
4839
|
-
gap:
|
|
4854
|
+
gap: 0px;
|
|
4840
4855
|
/* 1 */
|
|
4841
4856
|
align-items: center;
|
|
4842
4857
|
}
|
|
@@ -4875,10 +4890,10 @@ ul.uk-nav-sub {
|
|
|
4875
4890
|
top: 0;
|
|
4876
4891
|
}
|
|
4877
4892
|
.uk-navbar-center-right {
|
|
4878
|
-
left: calc(100% +
|
|
4893
|
+
left: calc(100% + 0px);
|
|
4879
4894
|
}
|
|
4880
4895
|
.uk-navbar-center-left {
|
|
4881
|
-
right: calc(100% +
|
|
4896
|
+
right: calc(100% + 0px);
|
|
4882
4897
|
}
|
|
4883
4898
|
[class*='uk-navbar-center-'] {
|
|
4884
4899
|
width: max-content;
|
|
@@ -4891,7 +4906,7 @@ ul.uk-nav-sub {
|
|
|
4891
4906
|
*/
|
|
4892
4907
|
.uk-navbar-nav {
|
|
4893
4908
|
display: flex;
|
|
4894
|
-
gap:
|
|
4909
|
+
gap: 0px;
|
|
4895
4910
|
/* 1 */
|
|
4896
4911
|
margin: 0;
|
|
4897
4912
|
padding: 0;
|
|
@@ -4926,7 +4941,6 @@ ul.uk-nav-sub {
|
|
|
4926
4941
|
/* 3 */
|
|
4927
4942
|
box-sizing: border-box;
|
|
4928
4943
|
min-height: 80px;
|
|
4929
|
-
padding: 0 15px;
|
|
4930
4944
|
/* 4 */
|
|
4931
4945
|
font-size: 16px;
|
|
4932
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";
|
|
@@ -4937,6 +4951,7 @@ ul.uk-nav-sub {
|
|
|
4937
4951
|
* Nav items
|
|
4938
4952
|
*/
|
|
4939
4953
|
.uk-navbar-nav > li > a {
|
|
4954
|
+
padding: 0 15px;
|
|
4940
4955
|
color: #999;
|
|
4941
4956
|
}
|
|
4942
4957
|
/*
|
|
@@ -4955,6 +4970,21 @@ ul.uk-nav-sub {
|
|
|
4955
4970
|
.uk-navbar-nav > li.uk-active > a {
|
|
4956
4971
|
color: #333;
|
|
4957
4972
|
}
|
|
4973
|
+
/* Parent icon modifier
|
|
4974
|
+
========================================================================== */
|
|
4975
|
+
.uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a::after {
|
|
4976
|
+
content: "";
|
|
4977
|
+
width: 12px;
|
|
4978
|
+
height: 12px;
|
|
4979
|
+
margin-right: auto;
|
|
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
|
+
}
|
|
4984
|
+
.uk-navbar-parent-icon .uk-navbar-nav > .uk-parent:hover > a::after,
|
|
4985
|
+
.uk-navbar-parent-icon .uk-navbar-nav > .uk-parent > a[aria-expanded="true"]::after {
|
|
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");
|
|
4987
|
+
}
|
|
4958
4988
|
/* Item
|
|
4959
4989
|
========================================================================== */
|
|
4960
4990
|
.uk-navbar-item {
|
|
@@ -4970,6 +5000,7 @@ ul.uk-nav-sub {
|
|
|
4970
5000
|
/* Toggle
|
|
4971
5001
|
========================================================================== */
|
|
4972
5002
|
.uk-navbar-toggle {
|
|
5003
|
+
padding: 0 15px;
|
|
4973
5004
|
color: #999;
|
|
4974
5005
|
}
|
|
4975
5006
|
.uk-navbar-toggle:hover,
|
|
@@ -5064,9 +5095,16 @@ ul.uk-nav-sub {
|
|
|
5064
5095
|
.uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
|
|
5065
5096
|
width: 1000px;
|
|
5066
5097
|
}
|
|
5098
|
+
/*
|
|
5099
|
+
* Size modifier
|
|
5100
|
+
*/
|
|
5101
|
+
.uk-navbar-dropdown-large {
|
|
5102
|
+
padding: 40px;
|
|
5103
|
+
}
|
|
5067
5104
|
/*
|
|
5068
5105
|
* Stretch modifier
|
|
5069
5106
|
* 1. Allow scrolling
|
|
5107
|
+
* 2. Style
|
|
5070
5108
|
*/
|
|
5071
5109
|
.uk-navbar-dropdown-stretch {
|
|
5072
5110
|
--uk-position-offset: 0;
|
|
@@ -5075,24 +5113,23 @@ ul.uk-nav-sub {
|
|
|
5075
5113
|
/* 1 */
|
|
5076
5114
|
overflow-y: auto;
|
|
5077
5115
|
-webkit-overflow-scrolling: touch;
|
|
5116
|
+
/* 2 */
|
|
5117
|
+
padding: 15px 15px 15px 15px;
|
|
5118
|
+
background: #fff;
|
|
5078
5119
|
}
|
|
5079
5120
|
/*
|
|
5080
5121
|
* Dropbar modifier
|
|
5081
5122
|
* 1. Reset dropdown width to prevent to early shifting
|
|
5082
|
-
* 2.
|
|
5083
|
-
* 3.
|
|
5084
|
-
* 4. Horizontal padding
|
|
5123
|
+
* 2. Reset style
|
|
5124
|
+
* 3. Padding
|
|
5085
5125
|
*/
|
|
5086
5126
|
.uk-navbar-dropdown-dropbar {
|
|
5087
5127
|
/* 1 */
|
|
5088
5128
|
width: auto;
|
|
5089
5129
|
/* 2 */
|
|
5090
|
-
|
|
5130
|
+
background: transparent;
|
|
5091
5131
|
/* 3 */
|
|
5092
|
-
|
|
5093
|
-
/* 4 */
|
|
5094
|
-
padding-right: 15px;
|
|
5095
|
-
padding-left: 15px;
|
|
5132
|
+
padding: 15px 15px 15px 15px;
|
|
5096
5133
|
--uk-position-shift-offset: 0;
|
|
5097
5134
|
}
|
|
5098
5135
|
/* Dropdown Nav
|
|
@@ -7727,15 +7764,23 @@ iframe[data-uk-cover] {
|
|
|
7727
7764
|
/* Logo
|
|
7728
7765
|
========================================================================== */
|
|
7729
7766
|
/*
|
|
7730
|
-
* 1.
|
|
7767
|
+
* 1. Style
|
|
7768
|
+
* 2. Required for `a`
|
|
7769
|
+
* 3. Behave like image but can be overridden through flex utility classes
|
|
7731
7770
|
*/
|
|
7732
7771
|
.uk-logo {
|
|
7772
|
+
/* 1 */
|
|
7733
7773
|
font-size: 1.5rem;
|
|
7734
7774
|
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";
|
|
7735
7775
|
color: #333;
|
|
7736
|
-
/*
|
|
7776
|
+
/* 2 */
|
|
7737
7777
|
text-decoration: none;
|
|
7738
7778
|
}
|
|
7779
|
+
/* 3 */
|
|
7780
|
+
:where(.uk-logo) {
|
|
7781
|
+
display: inline-block;
|
|
7782
|
+
vertical-align: middle;
|
|
7783
|
+
}
|
|
7739
7784
|
/* Hover */
|
|
7740
7785
|
.uk-logo:hover {
|
|
7741
7786
|
color: #333;
|
|
@@ -7743,7 +7788,7 @@ iframe[data-uk-cover] {
|
|
|
7743
7788
|
text-decoration: none;
|
|
7744
7789
|
}
|
|
7745
7790
|
.uk-logo > :where(img, svg, video) {
|
|
7746
|
-
display:
|
|
7791
|
+
display: block;
|
|
7747
7792
|
}
|
|
7748
7793
|
.uk-logo-inverse {
|
|
7749
7794
|
display: none;
|
|
@@ -10643,7 +10688,7 @@ iframe[data-uk-cover] {
|
|
|
10643
10688
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10644
10689
|
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent > a::after,
|
|
10645
10690
|
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent > a::after {
|
|
10646
|
-
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%
|
|
10691
|
+
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");
|
|
10647
10692
|
}
|
|
10648
10693
|
.uk-light .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10649
10694
|
.uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
@@ -10656,7 +10701,7 @@ iframe[data-uk-cover] {
|
|
|
10656
10701
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10657
10702
|
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
|
|
10658
10703
|
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
|
|
10659
|
-
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%
|
|
10704
|
+
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");
|
|
10660
10705
|
}
|
|
10661
10706
|
.uk-light .uk-nav-default > li > a,
|
|
10662
10707
|
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a,
|