uikit 3.25.18-dev.9fa57fb → 3.25.18-dev.f49c4ef
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 +32 -2
- 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 +942 -820
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +942 -820
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +1039 -917
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +1039 -917
- 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 +133 -132
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +134 -133
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/marquee.js +179 -0
- package/dist/js/components/marquee.min.js +1 -0
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +8 -12
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +8 -12
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +43 -27
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +8 -12
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +71 -102
- 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 +752 -262
- 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 +629 -376
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/api/component.js +2 -3
- package/src/js/api/observables.js +2 -4
- package/src/js/api/options.js +6 -3
- package/src/js/api/props.js +1 -4
- package/src/js/api/state.js +7 -8
- package/src/js/components/index.js +1 -0
- package/src/js/components/internal/lightbox-animations.js +7 -26
- package/src/js/components/internal/slideshow-animations.js +15 -62
- package/src/js/components/lightbox-panel.js +121 -96
- package/src/js/components/lightbox.js +5 -8
- package/src/js/components/marquee.js +123 -0
- package/src/js/components/slider.js +2 -2
- package/src/js/components/tooltip.js +4 -2
- package/src/js/core/accordion.js +78 -29
- package/src/js/core/drop.js +5 -4
- package/src/js/core/dropnav.js +3 -3
- package/src/js/core/grid.js +5 -19
- package/src/js/core/height-match.js +1 -2
- package/src/js/core/margin.js +3 -0
- package/src/js/core/overflow-fade.js +5 -5
- package/src/js/core/sticky.js +1 -1
- package/src/js/core/switcher.js +24 -44
- package/src/js/core/video.js +172 -15
- package/src/js/mixin/connect.js +55 -0
- package/src/js/mixin/internal/slideshow-animations.js +5 -13
- package/src/js/mixin/internal/slideshow-transitioner.js +2 -2
- package/src/js/mixin/modal.js +4 -3
- package/src/js/mixin/parallax.js +1 -4
- package/src/js/mixin/position.js +1 -1
- package/src/js/mixin/scroll-driven.js +57 -0
- package/src/js/mixin/slider-nav.js +1 -1
- package/src/js/mixin/slider-parallax.js +9 -38
- package/src/js/mixin/togglable.js +13 -14
- package/src/js/util/attr.js +7 -7
- package/src/js/util/class.js +1 -1
- package/src/js/util/dom.js +3 -4
- package/src/js/util/lang.js +1 -1
- package/src/js/util/player.js +4 -4
- package/src/js/util/style.js +10 -15
- package/src/js/util/viewport.js +22 -25
- package/src/less/components/_import.less +6 -1
- package/src/less/components/base.less +1 -1
- package/src/less/components/button.less +1 -1
- package/src/less/components/dropcap.less +71 -0
- package/src/less/components/floating-shadow.less +66 -0
- package/src/less/components/form.less +5 -5
- package/src/less/components/grid.less +57 -64
- package/src/less/components/logo.less +94 -0
- package/src/less/components/margin.less +152 -124
- package/src/less/components/marquee.less +133 -0
- package/src/less/components/nav.less +1 -1
- package/src/less/components/padding.less +9 -9
- package/src/less/components/text.less +6 -0
- package/src/less/components/utility.less +0 -163
- package/src/less/theme/_import.less +5 -1
- package/src/less/theme/dropcap.less +29 -0
- package/src/less/theme/floating-shadow.less +20 -0
- package/src/less/theme/logo.less +29 -0
- package/src/less/theme/marquee.less +14 -0
- package/src/less/theme/utility.less +0 -32
- package/src/scss/components/_import.scss +6 -1
- package/src/scss/components/base.scss +1 -1
- package/src/scss/components/button.scss +1 -1
- package/src/scss/components/dropcap.scss +63 -0
- package/src/scss/components/floating-shadow.scss +63 -0
- package/src/scss/components/form.scss +5 -5
- package/src/scss/components/grid.scss +57 -64
- package/src/scss/components/logo.scss +75 -0
- package/src/scss/components/margin.scss +152 -124
- package/src/scss/components/marquee.scss +136 -0
- package/src/scss/components/nav.scss +1 -1
- package/src/scss/components/padding.scss +9 -9
- package/src/scss/components/text.scss +6 -0
- package/src/scss/components/utility.scss +0 -129
- package/src/scss/mixins-theme.scss +41 -32
- package/src/scss/mixins.scss +38 -29
- package/src/scss/variables-theme.scss +14 -14
- package/src/scss/variables.scss +14 -14
- package/tests/accordion.html +77 -10
- 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 +2 -2
- 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 +3 -3
- 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/dropcap.html +26 -0
- package/tests/dropdown.html +1 -1
- package/tests/dropnav.html +18 -18
- package/tests/filter.html +3 -3
- package/tests/floating-shadow.html +44 -0
- package/tests/form.html +14 -14
- package/tests/grid.html +41 -47
- 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 +6 -6
- package/tests/link.html +1 -1
- package/tests/list.html +4 -4
- package/tests/logo.html +84 -0
- package/tests/margin.html +7 -7
- package/tests/marker.html +3 -3
- package/tests/marquee.html +617 -0
- package/tests/modal.html +3 -3
- 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 +33 -3
- package/tests/sortable.html +19 -19
- package/tests/sticky-navbar.html +4 -4
- package/tests/sticky-parallax.html +3 -3
- package/tests/sticky.html +3 -3
- package/tests/svg.html +3 -2
- 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 +16 -116
- package/tests/video.html +224 -24
- package/tests/visibility.html +4 -4
- package/tests/width.html +12 -12
|
@@ -16,9 +16,6 @@
|
|
|
16
16
|
// `uk-object-*`
|
|
17
17
|
// `uk-border-*`
|
|
18
18
|
// `uk-box-shadow-*`
|
|
19
|
-
// `uk-box-shadow-bottom`
|
|
20
|
-
// `uk-dropcap`
|
|
21
|
-
// `uk-logo`
|
|
22
19
|
// `uk-blend-*`
|
|
23
20
|
// `uk-transform-*`
|
|
24
21
|
// `uk-transform-origin-*`
|
|
@@ -40,9 +37,6 @@
|
|
|
40
37
|
|
|
41
38
|
|
|
42
39
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
40
|
/* ========================================================================
|
|
47
41
|
Component: Utility
|
|
48
42
|
========================================================================== */
|
|
@@ -351,114 +345,6 @@
|
|
|
351
345
|
.uk-box-shadow-hover-xlarge:hover { box-shadow: $global-xlarge-box-shadow; }
|
|
352
346
|
|
|
353
347
|
|
|
354
|
-
/* Box-shadow bottom
|
|
355
|
-
========================================================================== */
|
|
356
|
-
|
|
357
|
-
/*
|
|
358
|
-
* 1. Set position.
|
|
359
|
-
* 2. Set style
|
|
360
|
-
* 3. Fix shadow being clipped in Safari if container is animated
|
|
361
|
-
*/
|
|
362
|
-
|
|
363
|
-
@supports (filter: blur(0)) {
|
|
364
|
-
|
|
365
|
-
.uk-box-shadow-bottom {
|
|
366
|
-
display: inline-block;
|
|
367
|
-
position: relative;
|
|
368
|
-
z-index: 0;
|
|
369
|
-
max-width: 100%;
|
|
370
|
-
vertical-align: middle;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
.uk-box-shadow-bottom::after {
|
|
374
|
-
content: "";
|
|
375
|
-
/* 1 */
|
|
376
|
-
position: absolute;
|
|
377
|
-
bottom: $box-shadow-bottom-bottom;
|
|
378
|
-
left: 0;
|
|
379
|
-
right: 0;
|
|
380
|
-
z-index: -1;
|
|
381
|
-
/* 2 */
|
|
382
|
-
height: $box-shadow-bottom-height;
|
|
383
|
-
border-radius: $box-shadow-bottom-border-radius;
|
|
384
|
-
background: $box-shadow-bottom-background;
|
|
385
|
-
filter: blur($box-shadow-bottom-blur);
|
|
386
|
-
/* 3 */
|
|
387
|
-
will-change: filter;
|
|
388
|
-
@if(meta.mixin-exists(hook-box-shadow-bottom)) {@include hook-box-shadow-bottom();}
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
/* Drop cap
|
|
395
|
-
========================================================================== */
|
|
396
|
-
|
|
397
|
-
/*
|
|
398
|
-
* 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
|
|
399
|
-
* https://bugzilla.mozilla.org/show_bug.cgi?id=214004
|
|
400
|
-
* 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
|
|
401
|
-
* https://bugzilla.mozilla.org/show_bug.cgi?id=317933
|
|
402
|
-
*/
|
|
403
|
-
|
|
404
|
-
.uk-dropcap::first-letter,
|
|
405
|
-
/* 1 */
|
|
406
|
-
.uk-dropcap > p:first-of-type::first-letter {
|
|
407
|
-
display: block;
|
|
408
|
-
margin-right: $dropcap-margin-right;
|
|
409
|
-
float: left;
|
|
410
|
-
font-size: $dropcap-font-size;
|
|
411
|
-
line-height: $dropcap-line-height;
|
|
412
|
-
@if(meta.mixin-exists(hook-dropcap)) {@include hook-dropcap();}
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
/* 2 */
|
|
416
|
-
@-moz-document url-prefix() {
|
|
417
|
-
|
|
418
|
-
.uk-dropcap::first-letter,
|
|
419
|
-
.uk-dropcap > p:first-of-type::first-letter { margin-top: 1.1%; }
|
|
420
|
-
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
/* Logo
|
|
425
|
-
========================================================================== */
|
|
426
|
-
|
|
427
|
-
/*
|
|
428
|
-
* 1. Style
|
|
429
|
-
* 2. Required for `a`
|
|
430
|
-
* 3. Behave like image but can be overridden through flex utility classes
|
|
431
|
-
*/
|
|
432
|
-
|
|
433
|
-
.uk-logo {
|
|
434
|
-
/* 1 */
|
|
435
|
-
font-size: $logo-font-size;
|
|
436
|
-
font-family: $logo-font-family;
|
|
437
|
-
color: $logo-color;
|
|
438
|
-
/* 2 */
|
|
439
|
-
text-decoration: none;
|
|
440
|
-
@if(meta.mixin-exists(hook-logo)) {@include hook-logo();}
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
/* 3 */
|
|
444
|
-
:where(.uk-logo) {
|
|
445
|
-
display: inline-block;
|
|
446
|
-
vertical-align: middle;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
/* Hover */
|
|
450
|
-
.uk-logo:hover {
|
|
451
|
-
color: $logo-hover-color;
|
|
452
|
-
/* 1 */
|
|
453
|
-
text-decoration: none;
|
|
454
|
-
@if(meta.mixin-exists(hook-logo-hover)) {@include hook-logo-hover();}
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
.uk-logo :where(img, svg, video) { display: block; }
|
|
458
|
-
|
|
459
|
-
.uk-logo-inverse { display: none; }
|
|
460
|
-
|
|
461
|
-
|
|
462
348
|
/* Disabled State
|
|
463
349
|
========================================================================== */
|
|
464
350
|
|
|
@@ -536,19 +422,4 @@
|
|
|
536
422
|
@if(meta.mixin-exists(hook-utility-misc)) {@include hook-utility-misc();}
|
|
537
423
|
|
|
538
424
|
// @mixin hook-panel-scrollable(){}
|
|
539
|
-
// @mixin hook-box-shadow-bottom(){}
|
|
540
|
-
// @mixin hook-dropcap(){}
|
|
541
|
-
// @mixin hook-logo(){}
|
|
542
|
-
// @mixin hook-logo-hover(){}
|
|
543
425
|
// @mixin hook-utility-misc(){}
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
// Inverse
|
|
547
|
-
// ========================================================================
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
// @mixin hook-inverse-dropcap(){}
|
|
553
|
-
// @mixin hook-inverse-logo(){}
|
|
554
|
-
// @mixin hook-inverse-logo-hover(){}
|
|
@@ -824,6 +824,20 @@
|
|
|
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
|
+
}
|
|
827
841
|
@mixin hook-dropdown(){ box-shadow: $dropdown-box-shadow; }
|
|
828
842
|
@mixin hook-dropdown-dropbar(){ box-shadow: none; }
|
|
829
843
|
@mixin hook-dropdown-dropbar-large(){}
|
|
@@ -836,6 +850,8 @@
|
|
|
836
850
|
@mixin hook-dropdown-misc(){}
|
|
837
851
|
@mixin hook-dropnav-misc(){}
|
|
838
852
|
@mixin hook-flex-misc(){}
|
|
853
|
+
@mixin hook-floating-shadow(){}
|
|
854
|
+
@mixin hook-floating-shadow-misc(){}
|
|
839
855
|
@mixin hook-form-range(){}
|
|
840
856
|
@mixin hook-form-range-track(){ border-radius: $form-range-track-border-radius; }
|
|
841
857
|
@mixin hook-form-range-track-focus(){}
|
|
@@ -1325,6 +1341,27 @@
|
|
|
1325
1341
|
|
|
1326
1342
|
.uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
|
|
1327
1343
|
|
|
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
|
+
|
|
1328
1365
|
}
|
|
1329
1366
|
@mixin hook-margin-misc(){}
|
|
1330
1367
|
@mixin hook-marker(){
|
|
@@ -1348,6 +1385,8 @@
|
|
|
1348
1385
|
}
|
|
1349
1386
|
|
|
1350
1387
|
}
|
|
1388
|
+
@mixin hook-marquee(){}
|
|
1389
|
+
@mixin hook-marquee-misc(){}
|
|
1351
1390
|
@mixin hook-modal(){}
|
|
1352
1391
|
@mixin hook-modal-dialog(){}
|
|
1353
1392
|
@mixin hook-modal-full(){}
|
|
@@ -2241,38 +2280,7 @@
|
|
|
2241
2280
|
}
|
|
2242
2281
|
@mixin hook-transition-misc(){}
|
|
2243
2282
|
@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(){}
|
|
2251
2283
|
@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
|
-
}
|
|
2276
2284
|
@mixin hook-visibility-misc(){}
|
|
2277
2285
|
@mixin hook-width-misc(){}
|
|
2278
2286
|
@mixin hook-inverse() {
|
|
@@ -2288,6 +2296,7 @@
|
|
|
2288
2296
|
@include hook-inverse-component-countdown();
|
|
2289
2297
|
@include hook-inverse-component-divider();
|
|
2290
2298
|
@include hook-inverse-component-dotnav();
|
|
2299
|
+
@include hook-inverse-component-dropcap();
|
|
2291
2300
|
@include hook-inverse-component-form-range();
|
|
2292
2301
|
@include hook-inverse-component-form();
|
|
2293
2302
|
@include hook-inverse-component-grid();
|
|
@@ -2298,6 +2307,7 @@
|
|
|
2298
2307
|
@include hook-inverse-component-leader();
|
|
2299
2308
|
@include hook-inverse-component-link();
|
|
2300
2309
|
@include hook-inverse-component-list();
|
|
2310
|
+
@include hook-inverse-component-logo();
|
|
2301
2311
|
@include hook-inverse-component-marker();
|
|
2302
2312
|
@include hook-inverse-component-nav();
|
|
2303
2313
|
@include hook-inverse-component-navbar();
|
|
@@ -2310,5 +2320,4 @@
|
|
|
2310
2320
|
@include hook-inverse-component-text();
|
|
2311
2321
|
@include hook-inverse-component-thumbnav();
|
|
2312
2322
|
@include hook-inverse-component-totop();
|
|
2313
|
-
@include hook-inverse-component-utility();
|
|
2314
2323
|
}
|
package/src/scss/mixins.scss
CHANGED
|
@@ -604,6 +604,17 @@
|
|
|
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
|
+
}
|
|
607
618
|
@mixin hook-dropdown(){}
|
|
608
619
|
@mixin hook-dropdown-dropbar(){}
|
|
609
620
|
@mixin hook-dropdown-dropbar-large(){}
|
|
@@ -616,6 +627,8 @@
|
|
|
616
627
|
@mixin hook-dropdown-misc(){}
|
|
617
628
|
@mixin hook-dropnav-misc(){}
|
|
618
629
|
@mixin hook-flex-misc(){}
|
|
630
|
+
@mixin hook-floating-shadow(){}
|
|
631
|
+
@mixin hook-floating-shadow-misc(){}
|
|
619
632
|
@mixin hook-form-range(){}
|
|
620
633
|
@mixin hook-form-range-track(){}
|
|
621
634
|
@mixin hook-form-range-track-focus(){}
|
|
@@ -1064,6 +1077,27 @@
|
|
|
1064
1077
|
|
|
1065
1078
|
.uk-list-striped > :nth-of-type(odd) { background-color: $inverse-list-striped-background; }
|
|
1066
1079
|
|
|
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
|
+
|
|
1067
1101
|
}
|
|
1068
1102
|
@mixin hook-margin-misc(){}
|
|
1069
1103
|
@mixin hook-marker(){}
|
|
@@ -1085,6 +1119,8 @@
|
|
|
1085
1119
|
}
|
|
1086
1120
|
|
|
1087
1121
|
}
|
|
1122
|
+
@mixin hook-marquee(){}
|
|
1123
|
+
@mixin hook-marquee-misc(){}
|
|
1088
1124
|
@mixin hook-modal(){}
|
|
1089
1125
|
@mixin hook-modal-dialog(){}
|
|
1090
1126
|
@mixin hook-modal-full(){}
|
|
@@ -1849,35 +1885,7 @@
|
|
|
1849
1885
|
}
|
|
1850
1886
|
@mixin hook-transition-misc(){}
|
|
1851
1887
|
@mixin hook-panel-scrollable(){}
|
|
1852
|
-
@mixin hook-box-shadow-bottom(){}
|
|
1853
|
-
@mixin hook-dropcap(){}
|
|
1854
|
-
@mixin hook-logo(){}
|
|
1855
|
-
@mixin hook-logo-hover(){}
|
|
1856
1888
|
@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
|
-
}
|
|
1881
1889
|
@mixin hook-visibility-misc(){}
|
|
1882
1890
|
@mixin hook-width-misc(){}
|
|
1883
1891
|
@mixin hook-inverse() {
|
|
@@ -1893,6 +1901,7 @@
|
|
|
1893
1901
|
@include hook-inverse-component-countdown();
|
|
1894
1902
|
@include hook-inverse-component-divider();
|
|
1895
1903
|
@include hook-inverse-component-dotnav();
|
|
1904
|
+
@include hook-inverse-component-dropcap();
|
|
1896
1905
|
@include hook-inverse-component-form-range();
|
|
1897
1906
|
@include hook-inverse-component-form();
|
|
1898
1907
|
@include hook-inverse-component-grid();
|
|
@@ -1903,6 +1912,7 @@
|
|
|
1903
1912
|
@include hook-inverse-component-leader();
|
|
1904
1913
|
@include hook-inverse-component-link();
|
|
1905
1914
|
@include hook-inverse-component-list();
|
|
1915
|
+
@include hook-inverse-component-logo();
|
|
1906
1916
|
@include hook-inverse-component-marker();
|
|
1907
1917
|
@include hook-inverse-component-nav();
|
|
1908
1918
|
@include hook-inverse-component-navbar();
|
|
@@ -1915,5 +1925,4 @@
|
|
|
1915
1925
|
@include hook-inverse-component-text();
|
|
1916
1926
|
@include hook-inverse-component-thumbnav();
|
|
1917
1927
|
@include hook-inverse-component-totop();
|
|
1918
|
-
@include hook-inverse-component-utility();
|
|
1919
1928
|
}
|
|
@@ -387,6 +387,9 @@ $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;
|
|
390
393
|
$dropdown-margin: $global-small-margin !default;
|
|
391
394
|
$dropdown-viewport-margin: 15px !default;
|
|
392
395
|
$dropdown-min-width: 200px !default;
|
|
@@ -413,6 +416,11 @@ $dropdown-nav-divider-border: $global-border !default;
|
|
|
413
416
|
$dropdown-nav-sublist-item-color: $global-muted-color !default;
|
|
414
417
|
$dropdown-nav-sublist-item-hover-color: $global-color !default;
|
|
415
418
|
$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;
|
|
416
424
|
$form-range-track-height: 3px !default;
|
|
417
425
|
$form-range-track-background: color.adjust($global-muted-background, $lightness: -5%) !default;
|
|
418
426
|
$form-range-track-focus-background: color.adjust($form-range-track-background, $lightness: -5%) !default;
|
|
@@ -655,6 +663,12 @@ $inverse-list-secondary-color: $inverse-global-primary-background !default;
|
|
|
655
663
|
$inverse-list-divider-border: $inverse-global-border !default;
|
|
656
664
|
$inverse-list-striped-background: $inverse-global-muted-background !default;
|
|
657
665
|
$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;
|
|
658
672
|
$margin-margin: $global-margin !default;
|
|
659
673
|
$margin-xsmall-margin: 5px !default;
|
|
660
674
|
$margin-small-margin: $global-small-margin !default;
|
|
@@ -1158,21 +1172,7 @@ $panel-scrollable-border: $global-border !default;
|
|
|
1158
1172
|
$overflow-fade-size: 100px !default;
|
|
1159
1173
|
$border-rounded-border-radius: 5px !default;
|
|
1160
1174
|
$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;
|
|
1173
1175
|
$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,6 +386,9 @@ $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;
|
|
389
392
|
$dropdown-margin: $global-small-margin !default;
|
|
390
393
|
$dropdown-viewport-margin: 15px !default;
|
|
391
394
|
$dropdown-min-width: 200px !default;
|
|
@@ -412,6 +415,11 @@ $dropdown-nav-divider-border: $global-border !default;
|
|
|
412
415
|
$dropdown-nav-sublist-item-color: $global-muted-color !default;
|
|
413
416
|
$dropdown-nav-sublist-item-hover-color: $global-color !default;
|
|
414
417
|
$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;
|
|
415
423
|
$form-range-track-height: 3px !default;
|
|
416
424
|
$form-range-track-background: color.adjust($global-muted-background, $lightness: -5%) !default;
|
|
417
425
|
$form-range-track-focus-background: color.adjust($form-range-track-background, $lightness: -5%) !default;
|
|
@@ -653,6 +661,12 @@ $inverse-list-secondary-color: $inverse-global-primary-background !default;
|
|
|
653
661
|
$inverse-list-divider-border: $inverse-global-border !default;
|
|
654
662
|
$inverse-list-striped-background: $inverse-global-muted-background !default;
|
|
655
663
|
$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;
|
|
656
670
|
$margin-margin: $global-margin !default;
|
|
657
671
|
$margin-xsmall-margin: 5px !default;
|
|
658
672
|
$margin-small-margin: $global-small-margin !default;
|
|
@@ -1156,21 +1170,7 @@ $panel-scrollable-border: $global-border !default;
|
|
|
1156
1170
|
$overflow-fade-size: 100px !default;
|
|
1157
1171
|
$border-rounded-border-radius: 5px !default;
|
|
1158
1172
|
$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;
|
|
1171
1173
|
$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-child-width-1-4@m"
|
|
17
|
+
<div class="uk-grid uk-child-width-1-4@m">
|
|
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-child-width-1-1 uk-grid-small" uk-
|
|
150
|
+
<ul class="uk-grid uk-child-width-1-1 uk-grid-small" 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-small uk-flex-middle"
|
|
155
|
+
<div class="uk-grid uk-grid-small uk-flex-middle">
|
|
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-small uk-flex-middle"
|
|
172
|
+
<div class="uk-grid uk-grid-small uk-flex-middle">
|
|
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
|
|
189
|
+
<div class="uk-grid uk-grid-small">
|
|
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,6 +204,67 @@
|
|
|
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
|
+
|
|
207
268
|
<h2>JavaScript Options</h2>
|
|
208
269
|
|
|
209
270
|
<table class="uk-table uk-table-striped">
|
|
@@ -248,9 +309,9 @@
|
|
|
248
309
|
</tr>
|
|
249
310
|
<tr>
|
|
250
311
|
<td><code>animation</code></td>
|
|
251
|
-
<td>Boolean</td>
|
|
312
|
+
<td>Boolean, String</td>
|
|
252
313
|
<td>true</td>
|
|
253
|
-
<td>
|
|
314
|
+
<td>Set to `false` to reveal items directly. When using `switcher-connect`, accepts space-separated animation names and an optional comma-separated animation-out value.</td>
|
|
254
315
|
</tr>
|
|
255
316
|
<tr>
|
|
256
317
|
<td><code>duration</code></td>
|
|
@@ -264,6 +325,12 @@
|
|
|
264
325
|
<td>0</td>
|
|
265
326
|
<td>Offset added to scroll top.</td>
|
|
266
327
|
</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>
|
|
267
334
|
</tbody>
|
|
268
335
|
</table>
|
|
269
336
|
|