uikit 3.25.20-dev.e4f47fc → 3.25.20
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 +2 -33
- package/build/prefix.js +1 -1
- package/build/publishDev.js +1 -1
- package/build/scope.js +1 -1
- package/build/scss.js +1 -1
- package/dist/css/uikit-core-rtl.css +917 -1045
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +917 -1045
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +936 -1064
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +936 -1064
- 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 +132 -133
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +133 -134
- 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 +12 -8
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +12 -8
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +25 -41
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +12 -8
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +102 -71
- 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 +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 +262 -752
- 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 +374 -627
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/api/component.js +3 -2
- package/src/js/api/observables.js +4 -2
- package/src/js/api/options.js +3 -6
- package/src/js/api/props.js +4 -1
- package/src/js/api/state.js +8 -7
- package/src/js/components/index.js +0 -1
- package/src/js/components/internal/lightbox-animations.js +26 -7
- package/src/js/components/internal/slideshow-animations.js +62 -15
- package/src/js/components/lightbox-panel.js +96 -121
- package/src/js/components/lightbox.js +8 -5
- package/src/js/components/tooltip.js +2 -4
- package/src/js/core/accordion.js +29 -78
- package/src/js/core/drop.js +4 -5
- package/src/js/core/dropnav.js +3 -3
- package/src/js/core/grid.js +19 -5
- package/src/js/core/height-match.js +2 -1
- package/src/js/core/margin.js +0 -3
- package/src/js/core/overflow-fade.js +5 -5
- package/src/js/core/sticky.js +1 -1
- package/src/js/core/switcher.js +44 -24
- package/src/js/core/video.js +15 -172
- package/src/js/mixin/internal/slideshow-animations.js +13 -5
- package/src/js/mixin/internal/slideshow-transitioner.js +2 -2
- package/src/js/mixin/modal.js +3 -4
- package/src/js/mixin/parallax.js +4 -1
- package/src/js/mixin/position.js +1 -1
- package/src/js/mixin/slider-nav.js +1 -1
- package/src/js/mixin/slider-parallax.js +38 -9
- package/src/js/mixin/togglable.js +14 -13
- package/src/js/util/attr.js +7 -7
- package/src/js/util/class.js +1 -1
- package/src/js/util/dom.js +4 -3
- package/src/js/util/lang.js +1 -1
- package/src/js/util/player.js +4 -4
- package/src/js/util/style.js +15 -10
- package/src/js/util/viewport.js +25 -22
- package/src/less/components/_import.less +1 -6
- package/src/less/components/base.less +1 -1
- package/src/less/components/button.less +1 -1
- package/src/less/components/form.less +5 -5
- package/src/less/components/grid.less +65 -58
- package/src/less/components/margin.less +124 -155
- package/src/less/components/nav.less +1 -1
- package/src/less/components/padding.less +9 -9
- package/src/less/components/text.less +0 -6
- package/src/less/components/utility.less +163 -0
- package/src/less/theme/_import.less +1 -5
- package/src/less/theme/utility.less +32 -0
- package/src/scss/components/_import.scss +1 -6
- package/src/scss/components/base.scss +1 -1
- package/src/scss/components/button.scss +1 -1
- package/src/scss/components/form.scss +5 -5
- package/src/scss/components/grid.scss +64 -57
- package/src/scss/components/margin.scss +124 -155
- package/src/scss/components/nav.scss +1 -1
- package/src/scss/components/padding.scss +9 -9
- package/src/scss/components/text.scss +0 -6
- package/src/scss/components/utility.scss +129 -0
- package/src/scss/mixins-theme.scss +33 -42
- package/src/scss/mixins.scss +30 -39
- package/src/scss/variables-theme.scss +14 -14
- package/src/scss/variables.scss +14 -14
- package/tests/accordion.html +10 -77
- package/tests/alert.html +1 -1
- package/tests/align.html +5 -5
- package/tests/animation.html +4 -4
- package/tests/article.html +7 -7
- package/tests/background.html +2 -2
- package/tests/badge.html +1 -1
- package/tests/base.html +3 -3
- package/tests/button.html +1 -1
- package/tests/card.html +15 -15
- package/tests/close.html +2 -2
- package/tests/comment.html +9 -9
- package/tests/container.html +2 -2
- package/tests/countdown.html +21 -21
- package/tests/cover.html +6 -6
- package/tests/description-list.html +1 -1
- package/tests/divider.html +3 -3
- package/tests/dotnav.html +1 -1
- package/tests/drop.html +7 -7
- package/tests/dropbar.html +5 -5
- package/tests/dropdown.html +1 -1
- package/tests/dropnav.html +18 -18
- package/tests/filter.html +3 -3
- package/tests/form.html +14 -14
- package/tests/grid.html +47 -41
- package/tests/heading.html +2 -2
- package/tests/height-viewport.html +4 -4
- package/tests/height.html +5 -5
- package/tests/icon.html +8 -8
- package/tests/image.html +6 -6
- package/tests/index.html +13 -13
- package/tests/js/index.js +1 -1
- package/tests/leader.html +5 -5
- package/tests/lightbox.html +14 -14
- package/tests/link.html +1 -1
- package/tests/list.html +4 -4
- package/tests/margin.html +7 -7
- package/tests/marker.html +3 -3
- package/tests/modal.html +4 -4
- package/tests/nav.html +5 -5
- package/tests/navbar.html +27 -27
- package/tests/notification.html +2 -2
- package/tests/offcanvas.html +12 -12
- package/tests/overlay.html +3 -3
- package/tests/padding.html +1 -1
- package/tests/pagination.html +3 -3
- package/tests/parallax.html +1 -1
- package/tests/position.html +6 -6
- package/tests/scrollspy.html +12 -12
- package/tests/search.html +5 -5
- package/tests/section.html +17 -17
- package/tests/slidenav.html +3 -3
- package/tests/slider.html +5 -5
- package/tests/slideshow.html +4 -34
- package/tests/sortable.html +15 -15
- package/tests/sticky-navbar.html +4 -4
- package/tests/sticky-parallax.html +3 -3
- package/tests/sticky.html +3 -3
- package/tests/svg.html +2 -3
- package/tests/switcher.html +6 -6
- package/tests/tab.html +4 -4
- package/tests/text.html +3 -3
- package/tests/tile.html +4 -4
- package/tests/toggle.html +1 -1
- package/tests/tooltip.html +3 -3
- package/tests/totop.html +2 -2
- package/tests/transition.html +1 -1
- package/tests/upload.html +5 -5
- package/tests/utility.html +116 -16
- package/tests/video.html +27 -227
- package/tests/visibility.html +4 -4
- package/tests/width.html +12 -12
- package/dist/js/components/marquee.js +0 -179
- package/dist/js/components/marquee.min.js +0 -1
- package/src/js/components/marquee.js +0 -123
- package/src/js/mixin/connect.js +0 -55
- package/src/js/mixin/scroll-driven.js +0 -57
- package/src/less/components/dropcap.less +0 -71
- package/src/less/components/floating-shadow.less +0 -66
- package/src/less/components/logo.less +0 -94
- package/src/less/components/marquee.less +0 -133
- package/src/less/theme/dropcap.less +0 -29
- package/src/less/theme/floating-shadow.less +0 -20
- package/src/less/theme/logo.less +0 -29
- package/src/less/theme/marquee.less +0 -14
- package/src/scss/components/dropcap.scss +0 -63
- package/src/scss/components/floating-shadow.scss +0 -63
- package/src/scss/components/logo.scss +0 -75
- package/src/scss/components/marquee.scss +0 -136
- package/tests/dropcap.html +0 -26
- package/tests/floating-shadow.html +0 -44
- package/tests/logo.html +0 -84
- package/tests/marquee.html +0 -617
|
@@ -824,20 +824,6 @@
|
|
|
824
824
|
@mixin hook-dropbar-left(){ box-shadow: $dropbar-left-box-shadow; }
|
|
825
825
|
@mixin hook-dropbar-right(){ box-shadow: $dropbar-right-box-shadow; }
|
|
826
826
|
@mixin hook-dropbar-misc(){}
|
|
827
|
-
@mixin hook-dropcap(){
|
|
828
|
-
// Prevent line wrap
|
|
829
|
-
margin-bottom: -2px;
|
|
830
|
-
}
|
|
831
|
-
@mixin hook-dropcap-misc(){}
|
|
832
|
-
@mixin hook-inverse-dropcap(){}
|
|
833
|
-
@mixin hook-inverse-component-dropcap(){
|
|
834
|
-
|
|
835
|
-
.uk-dropcap::first-letter,
|
|
836
|
-
.uk-dropcap p:first-of-type::first-letter {
|
|
837
|
-
@if(meta.mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
}
|
|
841
827
|
@mixin hook-dropdown(){ box-shadow: $dropdown-box-shadow; }
|
|
842
828
|
@mixin hook-dropdown-dropbar(){ box-shadow: none; }
|
|
843
829
|
@mixin hook-dropdown-dropbar-large(){}
|
|
@@ -850,8 +836,6 @@
|
|
|
850
836
|
@mixin hook-dropdown-misc(){}
|
|
851
837
|
@mixin hook-dropnav-misc(){}
|
|
852
838
|
@mixin hook-flex-misc(){}
|
|
853
|
-
@mixin hook-floating-shadow(){}
|
|
854
|
-
@mixin hook-floating-shadow-misc(){}
|
|
855
839
|
@mixin hook-form-range(){}
|
|
856
840
|
@mixin hook-form-range-track(){ border-radius: $form-range-track-border-radius; }
|
|
857
841
|
@mixin hook-form-range-track-focus(){}
|
|
@@ -1041,7 +1025,7 @@
|
|
|
1041
1025
|
@if(meta.mixin-exists(hook-inverse-grid-divider-horizontal)) {@include hook-inverse-grid-divider-horizontal();}
|
|
1042
1026
|
}
|
|
1043
1027
|
|
|
1044
|
-
.uk-grid-divider.uk-grid-stack >
|
|
1028
|
+
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
|
|
1045
1029
|
border-top-color: $inverse-grid-divider-border;
|
|
1046
1030
|
@if(meta.mixin-exists(hook-inverse-grid-divider-vertical)) {@include hook-inverse-grid-divider-vertical();}
|
|
1047
1031
|
}
|
|
@@ -1341,27 +1325,6 @@
|
|
|
1341
1325
|
|
|
1342
1326
|
.uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
|
|
1343
1327
|
|
|
1344
|
-
}
|
|
1345
|
-
@mixin hook-logo(){}
|
|
1346
|
-
@mixin hook-logo-hover(){}
|
|
1347
|
-
@mixin hook-logo-misc(){}
|
|
1348
|
-
@mixin hook-inverse-logo(){}
|
|
1349
|
-
@mixin hook-inverse-logo-hover(){}
|
|
1350
|
-
@mixin hook-inverse-component-logo(){
|
|
1351
|
-
|
|
1352
|
-
.uk-logo {
|
|
1353
|
-
color: $inverse-logo-color;
|
|
1354
|
-
@if(meta.mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
1355
|
-
}
|
|
1356
|
-
|
|
1357
|
-
.uk-logo:hover {
|
|
1358
|
-
color: $inverse-logo-hover-color;
|
|
1359
|
-
@if(meta.mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
1360
|
-
}
|
|
1361
|
-
|
|
1362
|
-
.uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]) { display: none; }
|
|
1363
|
-
.uk-logo-inverse:not([uk-svg]) { display: block; }
|
|
1364
|
-
|
|
1365
1328
|
}
|
|
1366
1329
|
@mixin hook-margin-misc(){}
|
|
1367
1330
|
@mixin hook-marker(){
|
|
@@ -1385,8 +1348,6 @@
|
|
|
1385
1348
|
}
|
|
1386
1349
|
|
|
1387
1350
|
}
|
|
1388
|
-
@mixin hook-marquee(){}
|
|
1389
|
-
@mixin hook-marquee-misc(){}
|
|
1390
1351
|
@mixin hook-modal(){}
|
|
1391
1352
|
@mixin hook-modal-dialog(){}
|
|
1392
1353
|
@mixin hook-modal-full(){}
|
|
@@ -2280,7 +2241,38 @@
|
|
|
2280
2241
|
}
|
|
2281
2242
|
@mixin hook-transition-misc(){}
|
|
2282
2243
|
@mixin hook-panel-scrollable(){}
|
|
2244
|
+
@mixin hook-box-shadow-bottom(){}
|
|
2245
|
+
@mixin hook-dropcap(){
|
|
2246
|
+
// Prevent line wrap
|
|
2247
|
+
margin-bottom: -2px;
|
|
2248
|
+
}
|
|
2249
|
+
@mixin hook-logo(){}
|
|
2250
|
+
@mixin hook-logo-hover(){}
|
|
2283
2251
|
@mixin hook-utility-misc(){}
|
|
2252
|
+
@mixin hook-inverse-dropcap(){}
|
|
2253
|
+
@mixin hook-inverse-logo(){}
|
|
2254
|
+
@mixin hook-inverse-logo-hover(){}
|
|
2255
|
+
@mixin hook-inverse-component-utility(){
|
|
2256
|
+
|
|
2257
|
+
.uk-dropcap::first-letter,
|
|
2258
|
+
.uk-dropcap p:first-of-type::first-letter {
|
|
2259
|
+
@if(meta.mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
2260
|
+
}
|
|
2261
|
+
|
|
2262
|
+
.uk-logo {
|
|
2263
|
+
color: $inverse-logo-color;
|
|
2264
|
+
@if(meta.mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2267
|
+
.uk-logo:hover {
|
|
2268
|
+
color: $inverse-logo-hover-color;
|
|
2269
|
+
@if(meta.mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
.uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse) { display: none; }
|
|
2273
|
+
.uk-logo-inverse { display: block; }
|
|
2274
|
+
|
|
2275
|
+
}
|
|
2284
2276
|
@mixin hook-visibility-misc(){}
|
|
2285
2277
|
@mixin hook-width-misc(){}
|
|
2286
2278
|
@mixin hook-inverse() {
|
|
@@ -2296,7 +2288,6 @@
|
|
|
2296
2288
|
@include hook-inverse-component-countdown();
|
|
2297
2289
|
@include hook-inverse-component-divider();
|
|
2298
2290
|
@include hook-inverse-component-dotnav();
|
|
2299
|
-
@include hook-inverse-component-dropcap();
|
|
2300
2291
|
@include hook-inverse-component-form-range();
|
|
2301
2292
|
@include hook-inverse-component-form();
|
|
2302
2293
|
@include hook-inverse-component-grid();
|
|
@@ -2307,7 +2298,6 @@
|
|
|
2307
2298
|
@include hook-inverse-component-leader();
|
|
2308
2299
|
@include hook-inverse-component-link();
|
|
2309
2300
|
@include hook-inverse-component-list();
|
|
2310
|
-
@include hook-inverse-component-logo();
|
|
2311
2301
|
@include hook-inverse-component-marker();
|
|
2312
2302
|
@include hook-inverse-component-nav();
|
|
2313
2303
|
@include hook-inverse-component-navbar();
|
|
@@ -2320,4 +2310,5 @@
|
|
|
2320
2310
|
@include hook-inverse-component-text();
|
|
2321
2311
|
@include hook-inverse-component-thumbnav();
|
|
2322
2312
|
@include hook-inverse-component-totop();
|
|
2313
|
+
@include hook-inverse-component-utility();
|
|
2323
2314
|
}
|
package/src/scss/mixins.scss
CHANGED
|
@@ -604,17 +604,6 @@
|
|
|
604
604
|
@mixin hook-dropbar-left(){}
|
|
605
605
|
@mixin hook-dropbar-right(){}
|
|
606
606
|
@mixin hook-dropbar-misc(){}
|
|
607
|
-
@mixin hook-dropcap(){}
|
|
608
|
-
@mixin hook-dropcap-misc(){}
|
|
609
|
-
@mixin hook-inverse-dropcap(){}
|
|
610
|
-
@mixin hook-inverse-component-dropcap(){
|
|
611
|
-
|
|
612
|
-
.uk-dropcap::first-letter,
|
|
613
|
-
.uk-dropcap p:first-of-type::first-letter {
|
|
614
|
-
@if(meta.mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
}
|
|
618
607
|
@mixin hook-dropdown(){}
|
|
619
608
|
@mixin hook-dropdown-dropbar(){}
|
|
620
609
|
@mixin hook-dropdown-dropbar-large(){}
|
|
@@ -627,8 +616,6 @@
|
|
|
627
616
|
@mixin hook-dropdown-misc(){}
|
|
628
617
|
@mixin hook-dropnav-misc(){}
|
|
629
618
|
@mixin hook-flex-misc(){}
|
|
630
|
-
@mixin hook-floating-shadow(){}
|
|
631
|
-
@mixin hook-floating-shadow-misc(){}
|
|
632
619
|
@mixin hook-form-range(){}
|
|
633
620
|
@mixin hook-form-range-track(){}
|
|
634
621
|
@mixin hook-form-range-track-focus(){}
|
|
@@ -804,7 +791,7 @@
|
|
|
804
791
|
@if(meta.mixin-exists(hook-inverse-grid-divider-horizontal)) {@include hook-inverse-grid-divider-horizontal();}
|
|
805
792
|
}
|
|
806
793
|
|
|
807
|
-
.uk-grid-divider.uk-grid-stack >
|
|
794
|
+
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
|
|
808
795
|
border-top-color: $inverse-grid-divider-border;
|
|
809
796
|
@if(meta.mixin-exists(hook-inverse-grid-divider-vertical)) {@include hook-inverse-grid-divider-vertical();}
|
|
810
797
|
}
|
|
@@ -1077,27 +1064,6 @@
|
|
|
1077
1064
|
|
|
1078
1065
|
.uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
|
|
1079
1066
|
|
|
1080
|
-
}
|
|
1081
|
-
@mixin hook-logo(){}
|
|
1082
|
-
@mixin hook-logo-hover(){}
|
|
1083
|
-
@mixin hook-logo-misc(){}
|
|
1084
|
-
@mixin hook-inverse-logo(){}
|
|
1085
|
-
@mixin hook-inverse-logo-hover(){}
|
|
1086
|
-
@mixin hook-inverse-component-logo(){
|
|
1087
|
-
|
|
1088
|
-
.uk-logo {
|
|
1089
|
-
color: $inverse-logo-color;
|
|
1090
|
-
@if(meta.mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
1091
|
-
}
|
|
1092
|
-
|
|
1093
|
-
.uk-logo:hover {
|
|
1094
|
-
color: $inverse-logo-hover-color;
|
|
1095
|
-
@if(meta.mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
|
-
.uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]) { display: none; }
|
|
1099
|
-
.uk-logo-inverse:not([uk-svg]) { display: block; }
|
|
1100
|
-
|
|
1101
1067
|
}
|
|
1102
1068
|
@mixin hook-margin-misc(){}
|
|
1103
1069
|
@mixin hook-marker(){}
|
|
@@ -1119,8 +1085,6 @@
|
|
|
1119
1085
|
}
|
|
1120
1086
|
|
|
1121
1087
|
}
|
|
1122
|
-
@mixin hook-marquee(){}
|
|
1123
|
-
@mixin hook-marquee-misc(){}
|
|
1124
1088
|
@mixin hook-modal(){}
|
|
1125
1089
|
@mixin hook-modal-dialog(){}
|
|
1126
1090
|
@mixin hook-modal-full(){}
|
|
@@ -1885,7 +1849,35 @@
|
|
|
1885
1849
|
}
|
|
1886
1850
|
@mixin hook-transition-misc(){}
|
|
1887
1851
|
@mixin hook-panel-scrollable(){}
|
|
1852
|
+
@mixin hook-box-shadow-bottom(){}
|
|
1853
|
+
@mixin hook-dropcap(){}
|
|
1854
|
+
@mixin hook-logo(){}
|
|
1855
|
+
@mixin hook-logo-hover(){}
|
|
1888
1856
|
@mixin hook-utility-misc(){}
|
|
1857
|
+
@mixin hook-inverse-dropcap(){}
|
|
1858
|
+
@mixin hook-inverse-logo(){}
|
|
1859
|
+
@mixin hook-inverse-logo-hover(){}
|
|
1860
|
+
@mixin hook-inverse-component-utility(){
|
|
1861
|
+
|
|
1862
|
+
.uk-dropcap::first-letter,
|
|
1863
|
+
.uk-dropcap p:first-of-type::first-letter {
|
|
1864
|
+
@if(meta.mixin-exists(hook-inverse-dropcap)) {@include hook-inverse-dropcap();}
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
.uk-logo {
|
|
1868
|
+
color: $inverse-logo-color;
|
|
1869
|
+
@if(meta.mixin-exists(hook-inverse-logo)) {@include hook-inverse-logo();}
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
.uk-logo:hover {
|
|
1873
|
+
color: $inverse-logo-hover-color;
|
|
1874
|
+
@if(meta.mixin-exists(hook-inverse-logo-hover)) {@include hook-inverse-logo-hover();}
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
.uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse) { display: none; }
|
|
1878
|
+
.uk-logo-inverse { display: block; }
|
|
1879
|
+
|
|
1880
|
+
}
|
|
1889
1881
|
@mixin hook-visibility-misc(){}
|
|
1890
1882
|
@mixin hook-width-misc(){}
|
|
1891
1883
|
@mixin hook-inverse() {
|
|
@@ -1901,7 +1893,6 @@
|
|
|
1901
1893
|
@include hook-inverse-component-countdown();
|
|
1902
1894
|
@include hook-inverse-component-divider();
|
|
1903
1895
|
@include hook-inverse-component-dotnav();
|
|
1904
|
-
@include hook-inverse-component-dropcap();
|
|
1905
1896
|
@include hook-inverse-component-form-range();
|
|
1906
1897
|
@include hook-inverse-component-form();
|
|
1907
1898
|
@include hook-inverse-component-grid();
|
|
@@ -1912,7 +1903,6 @@
|
|
|
1912
1903
|
@include hook-inverse-component-leader();
|
|
1913
1904
|
@include hook-inverse-component-link();
|
|
1914
1905
|
@include hook-inverse-component-list();
|
|
1915
|
-
@include hook-inverse-component-logo();
|
|
1916
1906
|
@include hook-inverse-component-marker();
|
|
1917
1907
|
@include hook-inverse-component-nav();
|
|
1918
1908
|
@include hook-inverse-component-navbar();
|
|
@@ -1925,4 +1915,5 @@
|
|
|
1925
1915
|
@include hook-inverse-component-text();
|
|
1926
1916
|
@include hook-inverse-component-thumbnav();
|
|
1927
1917
|
@include hook-inverse-component-totop();
|
|
1918
|
+
@include hook-inverse-component-utility();
|
|
1928
1919
|
}
|
|
@@ -387,9 +387,6 @@ $dropbar-color-mode: dark !default;
|
|
|
387
387
|
$dropbar-focus-outline: $base-focus-outline !default;
|
|
388
388
|
$dropbar-large-padding-top: 40px !default;
|
|
389
389
|
$dropbar-large-padding-bottom: $dropbar-large-padding-top !default;
|
|
390
|
-
$dropcap-margin-right: 10px !default;
|
|
391
|
-
$dropcap-font-size: (($global-line-height * 3) * 1em) !default;
|
|
392
|
-
$dropcap-line-height: 1 !default;
|
|
393
390
|
$dropdown-margin: $global-small-margin !default;
|
|
394
391
|
$dropdown-viewport-margin: 15px !default;
|
|
395
392
|
$dropdown-min-width: 200px !default;
|
|
@@ -416,11 +413,6 @@ $dropdown-nav-divider-border: $global-border !default;
|
|
|
416
413
|
$dropdown-nav-sublist-item-color: $global-muted-color !default;
|
|
417
414
|
$dropdown-nav-sublist-item-hover-color: $global-color !default;
|
|
418
415
|
$dropnav-dropbar-z-index: $global-z-index - 20 !default;
|
|
419
|
-
$floating-shadow-height: 30px !default;
|
|
420
|
-
$floating-shadow-bottom: (-$floating-shadow-height) !default;
|
|
421
|
-
$floating-shadow-border-radius: 100% !default;
|
|
422
|
-
$floating-shadow-background: #444 !default;
|
|
423
|
-
$floating-shadow-blur: 20px !default;
|
|
424
416
|
$form-range-track-height: 3px !default;
|
|
425
417
|
$form-range-track-background: color.adjust($global-muted-background, $lightness: -5%) !default;
|
|
426
418
|
$form-range-track-focus-background: color.adjust($form-range-track-background, $lightness: -5%) !default;
|
|
@@ -663,12 +655,6 @@ $inverse-list-secondary-color: $inverse-global-primary-background !default;
|
|
|
663
655
|
$inverse-list-divider-border: $inverse-global-border !default;
|
|
664
656
|
$inverse-list-striped-background: $inverse-global-muted-background !default;
|
|
665
657
|
$inverse-list-bullet-icon-color: $inverse-global-color !default;
|
|
666
|
-
$logo-font-size: $global-large-font-size !default;
|
|
667
|
-
$logo-font-family: $global-font-family !default;
|
|
668
|
-
$logo-color: $global-emphasis-color !default;
|
|
669
|
-
$logo-hover-color: $global-emphasis-color !default;
|
|
670
|
-
$inverse-logo-color: $inverse-global-emphasis-color !default;
|
|
671
|
-
$inverse-logo-hover-color: $inverse-global-emphasis-color !default;
|
|
672
658
|
$margin-margin: $global-margin !default;
|
|
673
659
|
$margin-xsmall-margin: 5px !default;
|
|
674
660
|
$margin-small-margin: $global-small-margin !default;
|
|
@@ -1172,7 +1158,21 @@ $panel-scrollable-border: $global-border !default;
|
|
|
1172
1158
|
$overflow-fade-size: 100px !default;
|
|
1173
1159
|
$border-rounded-border-radius: 5px !default;
|
|
1174
1160
|
$box-shadow-duration: 0.1s !default;
|
|
1161
|
+
$box-shadow-bottom-height: 30px !default;
|
|
1162
|
+
$box-shadow-bottom-bottom: (-$box-shadow-bottom-height) !default;
|
|
1163
|
+
$box-shadow-bottom-border-radius: 100% !default;
|
|
1164
|
+
$box-shadow-bottom-background: #444 !default;
|
|
1165
|
+
$box-shadow-bottom-blur: 20px !default;
|
|
1166
|
+
$dropcap-margin-right: 10px !default;
|
|
1167
|
+
$dropcap-font-size: (($global-line-height * 3) * 1em) !default;
|
|
1168
|
+
$dropcap-line-height: 1 !default;
|
|
1169
|
+
$logo-font-size: $global-large-font-size !default;
|
|
1170
|
+
$logo-font-family: $global-font-family !default;
|
|
1171
|
+
$logo-color: $global-emphasis-color !default;
|
|
1172
|
+
$logo-hover-color: $global-emphasis-color !default;
|
|
1175
1173
|
$dragover-box-shadow: 0 0 20px rgba(100,100,100,0.3) !default;
|
|
1174
|
+
$inverse-logo-color: $inverse-global-emphasis-color !default;
|
|
1175
|
+
$inverse-logo-hover-color: $inverse-global-emphasis-color !default;
|
|
1176
1176
|
$deprecated: false !default;
|
|
1177
1177
|
$breakpoint-small: 640px !default;
|
|
1178
1178
|
$breakpoint-medium: 960px !default;
|
package/src/scss/variables.scss
CHANGED
|
@@ -386,9 +386,6 @@ $dropbar-color-mode: dark !default;
|
|
|
386
386
|
$dropbar-focus-outline: $base-focus-outline !default;
|
|
387
387
|
$dropbar-large-padding-top: 40px !default;
|
|
388
388
|
$dropbar-large-padding-bottom: $dropbar-large-padding-top !default;
|
|
389
|
-
$dropcap-margin-right: 10px !default;
|
|
390
|
-
$dropcap-font-size: (($global-line-height * 3) * 1em) !default;
|
|
391
|
-
$dropcap-line-height: 1 !default;
|
|
392
389
|
$dropdown-margin: $global-small-margin !default;
|
|
393
390
|
$dropdown-viewport-margin: 15px !default;
|
|
394
391
|
$dropdown-min-width: 200px !default;
|
|
@@ -415,11 +412,6 @@ $dropdown-nav-divider-border: $global-border !default;
|
|
|
415
412
|
$dropdown-nav-sublist-item-color: $global-muted-color !default;
|
|
416
413
|
$dropdown-nav-sublist-item-hover-color: $global-color !default;
|
|
417
414
|
$dropnav-dropbar-z-index: $global-z-index - 20 !default;
|
|
418
|
-
$floating-shadow-height: 30px !default;
|
|
419
|
-
$floating-shadow-bottom: (-$floating-shadow-height) !default;
|
|
420
|
-
$floating-shadow-border-radius: 100% !default;
|
|
421
|
-
$floating-shadow-background: #444 !default;
|
|
422
|
-
$floating-shadow-blur: 20px !default;
|
|
423
415
|
$form-range-track-height: 3px !default;
|
|
424
416
|
$form-range-track-background: color.adjust($global-muted-background, $lightness: -5%) !default;
|
|
425
417
|
$form-range-track-focus-background: color.adjust($form-range-track-background, $lightness: -5%) !default;
|
|
@@ -661,12 +653,6 @@ $inverse-list-secondary-color: $inverse-global-primary-background !default;
|
|
|
661
653
|
$inverse-list-divider-border: $inverse-global-border !default;
|
|
662
654
|
$inverse-list-striped-background: $inverse-global-muted-background !default;
|
|
663
655
|
$inverse-list-bullet-icon-color: $inverse-global-color !default;
|
|
664
|
-
$logo-font-size: $global-large-font-size !default;
|
|
665
|
-
$logo-font-family: $global-font-family !default;
|
|
666
|
-
$logo-color: $global-emphasis-color !default;
|
|
667
|
-
$logo-hover-color: $global-emphasis-color !default;
|
|
668
|
-
$inverse-logo-color: $inverse-global-emphasis-color !default;
|
|
669
|
-
$inverse-logo-hover-color: $inverse-global-emphasis-color !default;
|
|
670
656
|
$margin-margin: $global-margin !default;
|
|
671
657
|
$margin-xsmall-margin: 5px !default;
|
|
672
658
|
$margin-small-margin: $global-small-margin !default;
|
|
@@ -1170,7 +1156,21 @@ $panel-scrollable-border: $global-border !default;
|
|
|
1170
1156
|
$overflow-fade-size: 100px !default;
|
|
1171
1157
|
$border-rounded-border-radius: 5px !default;
|
|
1172
1158
|
$box-shadow-duration: 0.1s !default;
|
|
1159
|
+
$box-shadow-bottom-height: 30px !default;
|
|
1160
|
+
$box-shadow-bottom-bottom: (-$box-shadow-bottom-height) !default;
|
|
1161
|
+
$box-shadow-bottom-border-radius: 100% !default;
|
|
1162
|
+
$box-shadow-bottom-background: #444 !default;
|
|
1163
|
+
$box-shadow-bottom-blur: 20px !default;
|
|
1164
|
+
$dropcap-margin-right: 10px !default;
|
|
1165
|
+
$dropcap-font-size: (($global-line-height * 3) * 1em) !default;
|
|
1166
|
+
$dropcap-line-height: 1 !default;
|
|
1167
|
+
$logo-font-size: $global-large-font-size !default;
|
|
1168
|
+
$logo-font-family: $global-font-family !default;
|
|
1169
|
+
$logo-color: $global-emphasis-color !default;
|
|
1170
|
+
$logo-hover-color: $global-emphasis-color !default;
|
|
1173
1171
|
$dragover-box-shadow: 0 0 20px rgba(100,100,100,0.3) !default;
|
|
1172
|
+
$inverse-logo-color: $inverse-global-emphasis-color !default;
|
|
1173
|
+
$inverse-logo-hover-color: $inverse-global-emphasis-color !default;
|
|
1174
1174
|
$deprecated: false !default;
|
|
1175
1175
|
$breakpoint-small: 640px !default;
|
|
1176
1176
|
$breakpoint-medium: 960px !default;
|
package/tests/accordion.html
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
<h1>Accordion</h1>
|
|
16
16
|
|
|
17
|
-
<div class="uk-
|
|
17
|
+
<div class="uk-child-width-1-4@m" uk-grid>
|
|
18
18
|
<div>
|
|
19
19
|
|
|
20
20
|
<h3>Default</h3>
|
|
@@ -147,18 +147,18 @@
|
|
|
147
147
|
|
|
148
148
|
<h3>No Style</h3>
|
|
149
149
|
|
|
150
|
-
<ul class="uk-
|
|
150
|
+
<ul class="uk-child-width-1-1 uk-grid-small" uk-grid uk-accordion>
|
|
151
151
|
<li class="uk-open">
|
|
152
152
|
|
|
153
153
|
<a class="uk-accordion-title uk-link-reset uk-margin-small-bottom" href>
|
|
154
154
|
|
|
155
|
-
<div class="uk-grid
|
|
155
|
+
<div class="uk-grid-small uk-flex-middle" uk-grid>
|
|
156
156
|
<div class="uk-width-expand">
|
|
157
157
|
<h3>This is a H3 heading with some more text</h3>
|
|
158
158
|
</div>
|
|
159
159
|
<div class="uk-width-auto" uk-accordion-icon></div>
|
|
160
160
|
</div>
|
|
161
|
-
|
|
161
|
+
|
|
162
162
|
</a>
|
|
163
163
|
<div class="uk-accordion-content">
|
|
164
164
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
@@ -169,13 +169,13 @@
|
|
|
169
169
|
|
|
170
170
|
<a class="uk-accordion-title uk-link-reset uk-margin-small-bottom" href>
|
|
171
171
|
|
|
172
|
-
<div class="uk-grid
|
|
172
|
+
<div class="uk-grid-small uk-flex-middle" uk-grid>
|
|
173
173
|
<div class="uk-width-expand">
|
|
174
174
|
<h3>Item 2</h3>
|
|
175
175
|
</div>
|
|
176
176
|
<div class="uk-width-auto" uk-accordion-icon></div>
|
|
177
177
|
</div>
|
|
178
|
-
|
|
178
|
+
|
|
179
179
|
</a>
|
|
180
180
|
<div class="uk-accordion-content">
|
|
181
181
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
@@ -186,13 +186,13 @@
|
|
|
186
186
|
|
|
187
187
|
<a class="uk-accordion-title uk-link-reset uk-margin-small-bottom" href>
|
|
188
188
|
|
|
189
|
-
<div class="uk-grid uk-grid
|
|
189
|
+
<div class="uk-grid-small" uk-grid>
|
|
190
190
|
<div class="uk-width-expand">
|
|
191
191
|
<h3>Item 3</h3>
|
|
192
192
|
</div>
|
|
193
193
|
<div class="uk-width-auto" uk-accordion-icon></div>
|
|
194
194
|
</div>
|
|
195
|
-
|
|
195
|
+
|
|
196
196
|
</a>
|
|
197
197
|
<div class="uk-accordion-content">
|
|
198
198
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
@@ -204,67 +204,6 @@
|
|
|
204
204
|
</div>
|
|
205
205
|
</div>
|
|
206
206
|
|
|
207
|
-
<h2>Connect Switcher</h2>
|
|
208
|
-
|
|
209
|
-
<div>
|
|
210
|
-
|
|
211
|
-
<div class="uk-grid uk-child-width-1-2@m uk-flex-middle">
|
|
212
|
-
<div>
|
|
213
|
-
|
|
214
|
-
<ul class="uk-switcher" id="test">
|
|
215
|
-
<li>
|
|
216
|
-
|
|
217
|
-
<img src="images/photo.jpg" width="1800" height="1200" alt="">
|
|
218
|
-
|
|
219
|
-
</li>
|
|
220
|
-
<li>
|
|
221
|
-
|
|
222
|
-
<img src="images/dark.jpg" width="1800" height="1200" alt="">
|
|
223
|
-
|
|
224
|
-
</li>
|
|
225
|
-
<li>
|
|
226
|
-
|
|
227
|
-
<img src="images/light.jpg" width="1800" height="1200" alt="">
|
|
228
|
-
|
|
229
|
-
</li>
|
|
230
|
-
</ul>
|
|
231
|
-
|
|
232
|
-
</div>
|
|
233
|
-
<div>
|
|
234
|
-
|
|
235
|
-
<ul class="uk-accordion-default" uk-accordion="collapsible: false; switcher-connect: #test; animation: uk-animation-fade">
|
|
236
|
-
<li>
|
|
237
|
-
|
|
238
|
-
<a class="uk-accordion-title" href>Item 1 <span uk-accordion-icon></span></a>
|
|
239
|
-
<div class="uk-accordion-content">
|
|
240
|
-
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
241
|
-
</div>
|
|
242
|
-
|
|
243
|
-
</li>
|
|
244
|
-
<li>
|
|
245
|
-
|
|
246
|
-
<a class="uk-accordion-title" href>Item 2 <span uk-accordion-icon></span></a>
|
|
247
|
-
<div class="uk-accordion-content">
|
|
248
|
-
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
249
|
-
</div>
|
|
250
|
-
|
|
251
|
-
</li>
|
|
252
|
-
<li>
|
|
253
|
-
|
|
254
|
-
<a class="uk-accordion-title" href>Item 3 <span uk-accordion-icon></span></a>
|
|
255
|
-
<div class="uk-accordion-content">
|
|
256
|
-
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
257
|
-
</div>
|
|
258
|
-
|
|
259
|
-
</li>
|
|
260
|
-
</ul>
|
|
261
|
-
|
|
262
|
-
</div>
|
|
263
|
-
|
|
264
|
-
</div>
|
|
265
|
-
|
|
266
|
-
</div>
|
|
267
|
-
|
|
268
207
|
<h2>JavaScript Options</h2>
|
|
269
208
|
|
|
270
209
|
<table class="uk-table uk-table-striped">
|
|
@@ -309,9 +248,9 @@
|
|
|
309
248
|
</tr>
|
|
310
249
|
<tr>
|
|
311
250
|
<td><code>animation</code></td>
|
|
312
|
-
<td>Boolean
|
|
251
|
+
<td>Boolean</td>
|
|
313
252
|
<td>true</td>
|
|
314
|
-
<td>
|
|
253
|
+
<td>Reveal item directly or with a transition. </td>
|
|
315
254
|
</tr>
|
|
316
255
|
<tr>
|
|
317
256
|
<td><code>duration</code></td>
|
|
@@ -325,12 +264,6 @@
|
|
|
325
264
|
<td>0</td>
|
|
326
265
|
<td>Offset added to scroll top.</td>
|
|
327
266
|
</tr>
|
|
328
|
-
<tr>
|
|
329
|
-
<td><code>switcher-connect</code></td>
|
|
330
|
-
<td>CSS selector</td>
|
|
331
|
-
<td>false</td>
|
|
332
|
-
<td>Related switcher items container. Children are toggled in sync with the active accordion item.</td>
|
|
333
|
-
</tr>
|
|
334
267
|
</tbody>
|
|
335
268
|
</table>
|
|
336
269
|
|
package/tests/alert.html
CHANGED
package/tests/align.html
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
<h1>Align</h1>
|
|
16
16
|
|
|
17
|
-
<div class="uk-
|
|
17
|
+
<div class="uk-child-width-1-2@s" uk-grid>
|
|
18
18
|
<div>
|
|
19
19
|
|
|
20
20
|
<img class="uk-align-right uk-margin-remove-adjacent" src="images/photo.jpg" width="250" height="167" alt="">
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
|
|
38
38
|
<h2>Small</h2>
|
|
39
39
|
|
|
40
|
-
<div class="uk-
|
|
40
|
+
<div class="uk-child-width-1-2@s" uk-grid>
|
|
41
41
|
<div>
|
|
42
42
|
|
|
43
43
|
<img class="uk-align-center uk-align-right@s uk-margin-remove-adjacent" src="images/photo.jpg" width="250" height="167" alt="">
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
|
|
61
61
|
<h2>Medium</h2>
|
|
62
62
|
|
|
63
|
-
<div class="uk-
|
|
63
|
+
<div class="uk-child-width-1-2@s" uk-grid>
|
|
64
64
|
<div>
|
|
65
65
|
|
|
66
66
|
<img class="uk-align-center uk-align-right@m uk-margin-remove-adjacent" src="images/photo.jpg" width="250" height="167" alt="">
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
|
|
84
84
|
<h2>Large</h2>
|
|
85
85
|
|
|
86
|
-
<div class="uk-
|
|
86
|
+
<div class="uk-child-width-1-2@s" uk-grid>
|
|
87
87
|
<div>
|
|
88
88
|
|
|
89
89
|
<img class="uk-align-center uk-align-right@l uk-margin-remove-adjacent" src="images/photo.jpg" width="250" height="167" alt="">
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
|
|
107
107
|
<h2>X-Large</h2>
|
|
108
108
|
|
|
109
|
-
<div class="uk-
|
|
109
|
+
<div class="uk-child-width-1-2@s" uk-grid>
|
|
110
110
|
<div>
|
|
111
111
|
|
|
112
112
|
<img class="uk-align-center uk-align-right@xl uk-margin-remove-adjacent" src="images/photo.jpg" width="250" height="167" alt="">
|
package/tests/animation.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
<h1>Animation</h1>
|
|
17
17
|
|
|
18
|
-
<div class="uk-
|
|
18
|
+
<div class="uk-child-width-1-4@m" uk-grid>
|
|
19
19
|
<div class="uk-animation-toggle" tabindex="0">
|
|
20
20
|
<div class="uk-card uk-card-default uk-card-body uk-animation-fade">
|
|
21
21
|
<h3 class="uk-card-title">Fade</h3>
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
|
|
117
117
|
<h2>Reverse</h2>
|
|
118
118
|
|
|
119
|
-
<div class="uk-
|
|
119
|
+
<div class="uk-child-width-1-4@m" uk-grid>
|
|
120
120
|
<div class="uk-animation-toggle" tabindex="0">
|
|
121
121
|
<div class="uk-card uk-card-default uk-card-body uk-animation-fade uk-animation-reverse">
|
|
122
122
|
<h3 class="uk-card-title">Fade</h3>
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
|
|
218
218
|
<h2>Kenburns</h2>
|
|
219
219
|
|
|
220
|
-
<div class="uk-
|
|
220
|
+
<div class="uk-child-width-1-2@m" uk-grid>
|
|
221
221
|
<div>
|
|
222
222
|
|
|
223
223
|
<div class="uk-overflow-hidden">
|
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
|
|
237
237
|
<h2>Stroke</h2>
|
|
238
238
|
|
|
239
|
-
<div class="uk-
|
|
239
|
+
<div class="uk-child-width-1-2@m uk-text-center" uk-grid>
|
|
240
240
|
<div class="uk-animation-toggle" tabindex="0">
|
|
241
241
|
<img class="uk-animation-stroke" width="400" height="400" src="images/icons.svg#cloud-upload" alt="" uk-svg="stroke-animation: true">
|
|
242
242
|
</div>
|