uikit 3.21.14-dev.028df7be8 → 3.21.14-dev.2e8a07c7e
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 +34 -0
- package/dist/css/uikit-core-rtl.css +233 -85
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +233 -85
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +237 -81
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +237 -81
- 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 +2 -11
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +425 -126
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +442 -131
- 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 +2 -2
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +2 -2
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +17 -27
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +2 -2
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +22 -33
- 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 +8 -12
- 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 +225 -221
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +20 -17
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +644 -530
- package/dist/js/uikit.min.js +1 -1
- package/package.json +2 -2
- package/src/images/icons/arrow-down-arrow-up.svg +6 -0
- package/src/images/icons/arrow-down.svg +3 -3
- package/src/images/icons/arrow-left.svg +3 -3
- package/src/images/icons/arrow-right.svg +3 -3
- package/src/images/icons/arrow-up-right.svg +3 -3
- package/src/images/icons/arrow-up.svg +3 -3
- package/src/images/icons/close-circle.svg +5 -0
- package/src/images/icons/cloud-download.svg +4 -4
- package/src/images/icons/cloud-upload.svg +4 -4
- package/src/images/icons/download.svg +4 -4
- package/src/images/icons/expand.svg +5 -5
- package/src/images/icons/link-external.svg +4 -4
- package/src/images/icons/pull.svg +4 -4
- package/src/images/icons/push.svg +3 -3
- package/src/images/icons/shrink.svg +5 -5
- package/src/images/icons/sign-in.svg +4 -3
- package/src/images/icons/sign-out.svg +4 -3
- package/src/images/icons/sorting.svg +6 -0
- package/src/images/icons/upload.svg +4 -4
- package/src/js/api/events.js +15 -14
- package/src/js/api/instance.js +1 -1
- package/src/js/components/internal/lightbox-animations.js +2 -1
- package/src/js/components/internal/slideshow-animations.js +5 -5
- package/src/js/components/lightbox-panel.js +180 -45
- package/src/js/components/lightbox.js +59 -6
- package/src/js/components/slideshow.js +1 -2
- package/src/js/components/sortable.js +2 -2
- package/src/js/core/grid.js +1 -1
- package/src/js/core/icon.js +2 -2
- package/src/js/core/img.js +3 -5
- package/src/js/core/navbar.js +6 -2
- package/src/js/core/scrollspy-nav.js +1 -1
- package/src/js/core/svg.js +8 -10
- package/src/js/core/video.js +4 -3
- package/src/js/mixin/internal/slideshow-animations.js +1 -6
- package/src/js/mixin/modal.js +1 -4
- package/src/js/mixin/slider-drag.js +5 -6
- package/src/js/mixin/slider-nav.js +1 -1
- package/src/js/mixin/slider.js +11 -13
- package/src/js/mixin/slideshow.js +1 -1
- package/src/js/mixin/togglable.js +7 -2
- package/src/js/util/dom.js +3 -1
- package/src/js/util/filter.js +3 -1
- package/src/js/util/player.js +0 -4
- package/src/less/components/background.less +1 -9
- package/src/less/components/breadcrumb.less +6 -2
- package/src/less/components/button.less +1 -1
- package/src/less/components/form-range.less +52 -0
- package/src/less/components/form.less +1 -1
- package/src/less/components/lightbox.less +57 -89
- package/src/less/components/margin.less +14 -0
- package/src/less/components/search.less +49 -23
- package/src/less/components/sticky.less +1 -10
- package/src/less/components/totop.less +1 -1
- package/src/less/components/transition.less +4 -4
- package/src/less/components/visibility.less +3 -2
- package/src/less/theme/form-range.less +12 -0
- package/src/less/theme/lightbox.less +2 -20
- package/src/less/theme/search.less +24 -10
- package/src/scss/components/background.scss +1 -9
- package/src/scss/components/breadcrumb.scss +6 -2
- package/src/scss/components/button.scss +1 -1
- package/src/scss/components/form-range.scss +12 -0
- package/src/scss/components/form.scss +1 -1
- package/src/scss/components/lightbox.scss +50 -77
- package/src/scss/components/margin.scss +13 -0
- package/src/scss/components/search.scss +30 -12
- package/src/scss/components/sticky.scss +1 -10
- package/src/scss/components/totop.scss +1 -1
- package/src/scss/components/transition.scss +4 -4
- package/src/scss/components/visibility.scss +3 -2
- package/src/scss/mixins-theme.scss +51 -12
- package/src/scss/mixins.scss +45 -6
- package/src/scss/theme/form-range.scss +10 -0
- package/src/scss/theme/lightbox.scss +2 -20
- package/src/scss/theme/search.scss +10 -6
- package/src/scss/variables-theme.scss +32 -20
- package/src/scss/variables.scss +29 -24
- package/tests/badge.html +2 -2
- package/tests/base.html +1 -1
- package/tests/breadcrumb.html +23 -5
- package/tests/card.html +24 -24
- package/tests/dropbar.html +15 -15
- package/tests/dropdown.html +6 -6
- package/tests/dropnav.html +100 -100
- package/tests/icon.html +8 -0
- package/tests/index.html +15 -15
- package/tests/lightbox.html +379 -28
- package/tests/margin.html +19 -0
- package/tests/nav.html +21 -21
- package/tests/navbar.html +292 -292
- package/tests/offcanvas.html +27 -27
- package/tests/placeholder.html +2 -2
- package/tests/slider.html +0 -1
- package/tests/slideshow.html +1 -1
- package/tests/sortable.html +5 -5
- package/tests/sticky-navbar.html +114 -114
- package/tests/transition.html +2 -1
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
@search-default-background: @global-muted-background;
|
|
31
31
|
@search-default-focus-background: darken(@search-default-background, 2%);
|
|
32
32
|
|
|
33
|
-
@search-default-icon-width:
|
|
34
|
-
@search-default-icon-padding:
|
|
33
|
+
@search-default-icon-width: 20px;
|
|
34
|
+
@search-default-icon-padding: 10px;
|
|
35
35
|
|
|
36
36
|
@search-navbar-width: 240px;
|
|
37
37
|
@search-navbar-height: @global-control-height;
|
|
@@ -39,21 +39,25 @@
|
|
|
39
39
|
@search-navbar-background: @global-background;
|
|
40
40
|
@search-navbar-focus-background: darken(@search-navbar-background, 1%);
|
|
41
41
|
|
|
42
|
-
@search-navbar-icon-width:
|
|
43
|
-
@search-navbar-icon-padding:
|
|
42
|
+
@search-navbar-icon-width: 20px;
|
|
43
|
+
@search-navbar-icon-padding: 10px;
|
|
44
44
|
|
|
45
45
|
@search-medium-width: 400px;
|
|
46
|
-
@search-medium-height:
|
|
47
|
-
@search-medium-
|
|
46
|
+
@search-medium-height: @global-control-large-height;
|
|
47
|
+
@search-medium-padding-horizontal: 12px;
|
|
48
|
+
@search-medium-background: @search-default-background;
|
|
48
49
|
@search-medium-font-size: @global-large-font-size;
|
|
50
|
+
@search-medium-focus-background: darken(@search-medium-background, 2%);
|
|
49
51
|
|
|
50
52
|
@search-medium-icon-width: 24px;
|
|
51
|
-
@search-medium-icon-padding:
|
|
53
|
+
@search-medium-icon-padding: 12px;
|
|
52
54
|
|
|
53
55
|
@search-large-width: 500px;
|
|
54
|
-
@search-large-height:
|
|
55
|
-
@search-large-
|
|
56
|
+
@search-large-height: 90px;
|
|
57
|
+
@search-large-padding-horizontal: 20px;
|
|
58
|
+
@search-large-background: @search-default-background;
|
|
56
59
|
@search-large-font-size: @global-2xlarge-font-size;
|
|
60
|
+
@search-large-focus-background: darken(@search-large-background, 2%);
|
|
57
61
|
|
|
58
62
|
@search-large-icon-width: 40px;
|
|
59
63
|
@search-large-icon-padding: 20px;
|
|
@@ -216,10 +220,13 @@
|
|
|
216
220
|
* Icon
|
|
217
221
|
*/
|
|
218
222
|
|
|
219
|
-
.uk-search-default .uk-search-icon {
|
|
223
|
+
.uk-search-default .uk-search-icon {
|
|
224
|
+
padding-left: @search-default-padding-horizontal;
|
|
225
|
+
padding-right: @search-default-padding-horizontal;
|
|
226
|
+
}
|
|
220
227
|
|
|
221
|
-
.uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: (@search-default-icon-width + @search-default-icon-padding); }
|
|
222
|
-
.uk-search-default:has(.uk-search-icon-flip) .uk-search-input { padding-right: (@search-default-icon-width + @search-default-icon-padding); }
|
|
228
|
+
.uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: (@search-default-icon-width + @search-default-padding-horizontal + @search-default-icon-padding); }
|
|
229
|
+
.uk-search-default:has(.uk-search-icon-flip) .uk-search-input { padding-right: (@search-default-icon-width + @search-default-padding-horizontal + @search-default-icon-padding); }
|
|
223
230
|
|
|
224
231
|
|
|
225
232
|
/* Navbar modifier
|
|
@@ -249,10 +256,13 @@
|
|
|
249
256
|
* Icon
|
|
250
257
|
*/
|
|
251
258
|
|
|
252
|
-
.uk-search-navbar .uk-search-icon {
|
|
259
|
+
.uk-search-navbar .uk-search-icon {
|
|
260
|
+
padding-left: @search-navbar-padding-horizontal;
|
|
261
|
+
padding-right: @search-navbar-padding-horizontal;
|
|
262
|
+
}
|
|
253
263
|
|
|
254
|
-
.uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: (@search-navbar-icon-width + @search-navbar-icon-padding); }
|
|
255
|
-
.uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input { padding-right: (@search-navbar-icon-width + @search-navbar-icon-padding); }
|
|
264
|
+
.uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: (@search-navbar-icon-width + @search-navbar-padding-horizontal + @search-navbar-icon-padding); }
|
|
265
|
+
.uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input { padding-right: (@search-navbar-icon-width + @search-navbar-padding-horizontal + @search-navbar-icon-padding); }
|
|
256
266
|
|
|
257
267
|
|
|
258
268
|
/* Medium modifier
|
|
@@ -266,6 +276,8 @@
|
|
|
266
276
|
|
|
267
277
|
.uk-search-medium .uk-search-input {
|
|
268
278
|
height: @search-medium-height;
|
|
279
|
+
padding-left: @search-medium-padding-horizontal;
|
|
280
|
+
padding-right: @search-medium-padding-horizontal;
|
|
269
281
|
background: @search-medium-background;
|
|
270
282
|
font-size: @search-medium-font-size;
|
|
271
283
|
.hook-search-medium-input();
|
|
@@ -273,6 +285,7 @@
|
|
|
273
285
|
|
|
274
286
|
/* Focus */
|
|
275
287
|
.uk-search-medium .uk-search-input:focus {
|
|
288
|
+
background-color: @search-medium-focus-background;
|
|
276
289
|
.hook-search-medium-input-focus();
|
|
277
290
|
}
|
|
278
291
|
|
|
@@ -280,10 +293,13 @@
|
|
|
280
293
|
* Icon
|
|
281
294
|
*/
|
|
282
295
|
|
|
283
|
-
.uk-search-medium .uk-search-icon {
|
|
296
|
+
.uk-search-medium .uk-search-icon {
|
|
297
|
+
padding-left: @search-medium-padding-horizontal;
|
|
298
|
+
padding-right: @search-medium-padding-horizontal;
|
|
299
|
+
}
|
|
284
300
|
|
|
285
|
-
.uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: (@search-medium-icon-width + @search-medium-icon-padding); }
|
|
286
|
-
.uk-search-medium:has(.uk-search-icon-flip) .uk-search-input { padding-right: (@search-medium-icon-width + @search-medium-icon-padding); }
|
|
301
|
+
.uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: (@search-medium-icon-width + @search-medium-padding-horizontal + @search-medium-icon-padding); }
|
|
302
|
+
.uk-search-medium:has(.uk-search-icon-flip) .uk-search-input { padding-right: (@search-medium-icon-width + @search-medium-padding-horizontal + @search-medium-icon-padding); }
|
|
287
303
|
|
|
288
304
|
|
|
289
305
|
/* Large modifier
|
|
@@ -297,6 +313,8 @@
|
|
|
297
313
|
|
|
298
314
|
.uk-search-large .uk-search-input {
|
|
299
315
|
height: @search-large-height;
|
|
316
|
+
padding-left: @search-large-padding-horizontal;
|
|
317
|
+
padding-right: @search-large-padding-horizontal;
|
|
300
318
|
background: @search-large-background;
|
|
301
319
|
font-size: @search-large-font-size;
|
|
302
320
|
.hook-search-large-input();
|
|
@@ -304,6 +322,7 @@
|
|
|
304
322
|
|
|
305
323
|
/* Focus */
|
|
306
324
|
.uk-search-large .uk-search-input:focus {
|
|
325
|
+
background-color: @search-medium-focus-background;
|
|
307
326
|
.hook-search-large-input-focus();
|
|
308
327
|
}
|
|
309
328
|
|
|
@@ -311,10 +330,13 @@
|
|
|
311
330
|
* Icon
|
|
312
331
|
*/
|
|
313
332
|
|
|
314
|
-
.uk-search-large .uk-search-icon {
|
|
333
|
+
.uk-search-large .uk-search-icon {
|
|
334
|
+
padding-left: @search-large-padding-horizontal;
|
|
335
|
+
padding-right: @search-large-padding-horizontal;
|
|
336
|
+
}
|
|
315
337
|
|
|
316
|
-
.uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: (@search-large-icon-width + @search-large-icon-padding); }
|
|
317
|
-
.uk-search-large:has(.uk-search-icon-flip) .uk-search-input { padding-right: (@search-large-icon-width + @search-large-icon-padding); }
|
|
338
|
+
.uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input { padding-left: (@search-large-icon-width + @search-large-padding-horizontal + @search-large-icon-padding); }
|
|
339
|
+
.uk-search-large:has(.uk-search-icon-flip) .uk-search-input { padding-right: (@search-large-icon-width + @search-large-padding-horizontal + @search-large-icon-padding); }
|
|
318
340
|
|
|
319
341
|
|
|
320
342
|
/* Toggle
|
|
@@ -368,9 +390,11 @@
|
|
|
368
390
|
@inverse-search-navbar-background: @inverse-global-muted-background;
|
|
369
391
|
@inverse-search-navbar-focus-background: fadein(@inverse-search-navbar-background, 5%);
|
|
370
392
|
|
|
371
|
-
@inverse-search-medium-background:
|
|
393
|
+
@inverse-search-medium-background: @inverse-search-default-background;
|
|
394
|
+
@inverse-search-medium-focus-background: fadein(@inverse-search-medium-background, 5%);
|
|
372
395
|
|
|
373
|
-
@inverse-search-large-background:
|
|
396
|
+
@inverse-search-large-background: @inverse-search-default-background;
|
|
397
|
+
@inverse-search-large-focus-background: fadein(@inverse-search-large-background, 5%);
|
|
374
398
|
|
|
375
399
|
@inverse-search-toggle-color: @inverse-global-muted-color;
|
|
376
400
|
@inverse-search-toggle-hover-color: @inverse-global-color;
|
|
@@ -422,6 +446,7 @@
|
|
|
422
446
|
}
|
|
423
447
|
|
|
424
448
|
.uk-search-medium .uk-search-input:focus {
|
|
449
|
+
background-color: @inverse-search-medium-focus-background;
|
|
425
450
|
.hook-inverse-search-medium-input-focus();
|
|
426
451
|
}
|
|
427
452
|
|
|
@@ -431,6 +456,7 @@
|
|
|
431
456
|
}
|
|
432
457
|
|
|
433
458
|
.uk-search-large .uk-search-input:focus {
|
|
459
|
+
background-color: @inverse-search-large-focus-background;
|
|
434
460
|
.hook-inverse-search-large-input-focus();
|
|
435
461
|
}
|
|
436
462
|
|
|
@@ -39,16 +39,7 @@
|
|
|
39
39
|
box-sizing: border-box;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
|
|
43
|
-
* 1. Force new layer to resolve frame rate issues on devices with lower frame rates
|
|
44
|
-
*/
|
|
45
|
-
|
|
46
|
-
.uk-sticky-fixed {
|
|
47
|
-
margin: 0 !important;
|
|
48
|
-
/* 1 */
|
|
49
|
-
-webkit-backface-visibility: hidden;
|
|
50
|
-
backface-visibility: hidden;
|
|
51
|
-
}
|
|
42
|
+
.uk-sticky-fixed { margin: 0 !important; }
|
|
52
43
|
|
|
53
44
|
/*
|
|
54
45
|
* Faster animations
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
|
|
78
78
|
.uk-transition-toggle:hover .uk-transition-fade,
|
|
79
79
|
.uk-transition-toggle:focus .uk-transition-fade,
|
|
80
|
-
.uk-transition-toggle .uk-transition-fade
|
|
80
|
+
.uk-transition-toggle:focus-within .uk-transition-fade,
|
|
81
81
|
.uk-transition-active.uk-active .uk-transition-fade { opacity: 1; }
|
|
82
82
|
|
|
83
83
|
/*
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
/* Show */
|
|
101
101
|
.uk-transition-toggle:hover .uk-transition-scale-up,
|
|
102
102
|
.uk-transition-toggle:focus .uk-transition-scale-up,
|
|
103
|
-
.uk-transition-toggle .uk-transition-scale-up
|
|
103
|
+
.uk-transition-toggle:focus-within .uk-transition-scale-up,
|
|
104
104
|
.uk-transition-active.uk-active .uk-transition-scale-up {
|
|
105
105
|
--uk-scale-x: @transition-scale;
|
|
106
106
|
--uk-scale-y: @transition-scale;
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
|
|
110
110
|
.uk-transition-toggle:hover .uk-transition-scale-down,
|
|
111
111
|
.uk-transition-toggle:focus .uk-transition-scale-down,
|
|
112
|
-
.uk-transition-toggle .uk-transition-scale-down
|
|
112
|
+
.uk-transition-toggle:focus-within .uk-transition-scale-down,
|
|
113
113
|
.uk-transition-active.uk-active .uk-transition-scale-down {
|
|
114
114
|
--uk-scale-x: 1;
|
|
115
115
|
--uk-scale-y: 1;
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
/* Show */
|
|
139
139
|
.uk-transition-toggle:hover [class*="uk-transition-slide"],
|
|
140
140
|
.uk-transition-toggle:focus [class*="uk-transition-slide"],
|
|
141
|
-
.uk-transition-toggle [class*="uk-transition-slide"]
|
|
141
|
+
.uk-transition-toggle:focus-within [class*="uk-transition-slide"],
|
|
142
142
|
.uk-transition-active.uk-active [class*="uk-transition-slide"] {
|
|
143
143
|
--uk-translate-x: 0;
|
|
144
144
|
--uk-translate-y: 0;
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
*/
|
|
25
25
|
|
|
26
26
|
[hidden],
|
|
27
|
-
.uk-hidden
|
|
27
|
+
.uk-hidden,
|
|
28
|
+
.uk-hidden-empty:empty { display: none !important; }
|
|
28
29
|
|
|
29
30
|
/* Phone landscape and bigger */
|
|
30
31
|
@media (min-width: @breakpoint-small) {
|
|
@@ -114,7 +115,7 @@
|
|
|
114
115
|
*/
|
|
115
116
|
|
|
116
117
|
.uk-hidden-visually:not(:focus):not(:active):not(:focus-within),
|
|
117
|
-
.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-
|
|
118
|
+
.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-visible):not(:has(:focus-visible)) {
|
|
118
119
|
/* 1 */
|
|
119
120
|
position: absolute !important;
|
|
120
121
|
/* 2 */
|
|
@@ -43,3 +43,15 @@
|
|
|
43
43
|
// ========================================================================
|
|
44
44
|
|
|
45
45
|
.hook-form-range-misc() {}
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
// Inverse
|
|
49
|
+
// ========================================================================
|
|
50
|
+
|
|
51
|
+
@inverse-form-range-thumb-background: darken(fadein(@inverse-global-color, 100%), 50%);
|
|
52
|
+
|
|
53
|
+
@inverse-form-range-thumb-border: darken(fadein(@inverse-global-border, 100%), 10%);
|
|
54
|
+
|
|
55
|
+
.hook-inverse-form-range-track() {}
|
|
56
|
+
.hook-inverse-form-range-track-focus() {}
|
|
57
|
+
.hook-inverse-form-range-thumb() { border-color: @inverse-form-range-thumb-border; }
|
|
@@ -20,28 +20,10 @@
|
|
|
20
20
|
.hook-lightbox-item() {}
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
//
|
|
23
|
+
// Caption
|
|
24
24
|
// ========================================================================
|
|
25
25
|
|
|
26
|
-
.hook-lightbox-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
// Toolbar Icon
|
|
30
|
-
// ========================================================================
|
|
31
|
-
|
|
32
|
-
.hook-lightbox-toolbar-icon() {}
|
|
33
|
-
|
|
34
|
-
.hook-lightbox-toolbar-icon-hover() {}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
// Button
|
|
38
|
-
// ========================================================================
|
|
39
|
-
|
|
40
|
-
.hook-lightbox-button() {}
|
|
41
|
-
|
|
42
|
-
.hook-lightbox-button-hover() {}
|
|
43
|
-
|
|
44
|
-
.hook-lightbox-button-active() {}
|
|
26
|
+
.hook-lightbox-caption() {}
|
|
45
27
|
|
|
46
28
|
|
|
47
29
|
// Miscellaneous
|
|
@@ -11,20 +11,30 @@
|
|
|
11
11
|
|
|
12
12
|
@search-navbar-focus-background: @search-navbar-background;
|
|
13
13
|
|
|
14
|
+
@search-medium-background: transparent;
|
|
15
|
+
|
|
16
|
+
@search-large-background: transparent;
|
|
17
|
+
|
|
14
18
|
//
|
|
15
19
|
// New
|
|
16
20
|
//
|
|
17
21
|
|
|
18
22
|
@search-default-border-width: @global-border-width;
|
|
19
23
|
@search-default-border: @global-border;
|
|
20
|
-
|
|
21
24
|
@search-default-focus-border: @global-primary-background;
|
|
22
25
|
|
|
23
26
|
@search-navbar-border-width: @global-border-width;
|
|
24
27
|
@search-navbar-border: @global-border;
|
|
25
|
-
|
|
26
28
|
@search-navbar-focus-border: @global-primary-background;
|
|
27
29
|
|
|
30
|
+
@search-medium-border-width: @global-border-width;
|
|
31
|
+
@search-medium-border: @global-border;
|
|
32
|
+
@search-medium-focus-border: @global-primary-background;
|
|
33
|
+
|
|
34
|
+
@search-large-border-width: @global-border-width;
|
|
35
|
+
@search-large-border: @global-border;
|
|
36
|
+
@search-large-focus-border: @global-primary-background;
|
|
37
|
+
|
|
28
38
|
|
|
29
39
|
// Component
|
|
30
40
|
// ========================================================================
|
|
@@ -57,17 +67,17 @@
|
|
|
57
67
|
// Medium modifiers
|
|
58
68
|
// ========================================================================
|
|
59
69
|
|
|
60
|
-
.hook-search-medium-input() {}
|
|
70
|
+
.hook-search-medium-input() { border: @search-medium-border-width solid @search-medium-border; }
|
|
61
71
|
|
|
62
|
-
.hook-search-medium-input-focus() {}
|
|
72
|
+
.hook-search-medium-input-focus() { border-color: @search-medium-focus-border; }
|
|
63
73
|
|
|
64
74
|
|
|
65
75
|
// Large modifiers
|
|
66
76
|
// ========================================================================
|
|
67
77
|
|
|
68
|
-
.hook-search-large-input() {}
|
|
78
|
+
.hook-search-large-input() { border: @search-large-border-width solid @search-large-border; }
|
|
69
79
|
|
|
70
|
-
.hook-search-large-input-focus() {}
|
|
80
|
+
.hook-search-large-input-focus() { border-color: @search-large-focus-border; }
|
|
71
81
|
|
|
72
82
|
|
|
73
83
|
// Toggle
|
|
@@ -87,9 +97,13 @@
|
|
|
87
97
|
// Inverse
|
|
88
98
|
// ========================================================================
|
|
89
99
|
|
|
90
|
-
@inverse-search-default-background:
|
|
100
|
+
@inverse-search-default-background: transparent;
|
|
101
|
+
|
|
102
|
+
@inverse-search-navbar-background: transparent;
|
|
103
|
+
|
|
104
|
+
@inverse-search-medium-background: transparent;
|
|
91
105
|
|
|
92
|
-
@inverse-search-
|
|
106
|
+
@inverse-search-large-background: transparent;
|
|
93
107
|
|
|
94
108
|
.hook-inverse-search-default-input() { border-color: @inverse-global-border; }
|
|
95
109
|
.hook-inverse-search-default-input-focus() {}
|
|
@@ -97,10 +111,10 @@
|
|
|
97
111
|
.hook-inverse-search-navbar-input() { border-color: @inverse-global-border; }
|
|
98
112
|
.hook-inverse-search-navbar-input-focus() {}
|
|
99
113
|
|
|
100
|
-
.hook-inverse-search-medium-input() {}
|
|
114
|
+
.hook-inverse-search-medium-input() { border-color: @inverse-global-border; }
|
|
101
115
|
.hook-inverse-search-medium-input-focus() {}
|
|
102
116
|
|
|
103
|
-
.hook-inverse-search-large-input() {}
|
|
117
|
+
.hook-inverse-search-large-input() { border-color: @inverse-global-border; }
|
|
104
118
|
.hook-inverse-search-large-input-focus() {}
|
|
105
119
|
|
|
106
120
|
.hook-inverse-search-toggle() {}
|
|
@@ -65,15 +65,7 @@
|
|
|
65
65
|
/* Attachment
|
|
66
66
|
========================================================================== */
|
|
67
67
|
|
|
68
|
-
|
|
69
|
-
* 1. Fix bug introduced in Chrome 67: the background image is not visible if any element on the page uses `translate3d`
|
|
70
|
-
*/
|
|
71
|
-
|
|
72
|
-
.uk-background-fixed {
|
|
73
|
-
background-attachment: fixed;
|
|
74
|
-
/* 1 */
|
|
75
|
-
backface-visibility: hidden;
|
|
76
|
-
}
|
|
68
|
+
.uk-background-fixed { background-attachment: fixed; }
|
|
77
69
|
|
|
78
70
|
/*
|
|
79
71
|
* Exclude touch devices because `fixed` doesn't work on iOS and Android
|
|
@@ -19,12 +19,16 @@
|
|
|
19
19
|
========================================================================== */
|
|
20
20
|
|
|
21
21
|
/*
|
|
22
|
-
* Reset list
|
|
22
|
+
* 1. Reset list
|
|
23
|
+
* 2. Remove space between elements
|
|
23
24
|
*/
|
|
24
25
|
|
|
25
26
|
.uk-breadcrumb {
|
|
27
|
+
/* 1 */
|
|
26
28
|
padding: 0;
|
|
27
29
|
list-style: none;
|
|
30
|
+
/* 2 */
|
|
31
|
+
font-size: 0;
|
|
28
32
|
@if(mixin-exists(hook-breadcrumb)) {@include hook-breadcrumb();}
|
|
29
33
|
}
|
|
30
34
|
|
|
@@ -74,7 +78,7 @@
|
|
|
74
78
|
content: $breadcrumb-divider;
|
|
75
79
|
display: inline-block;
|
|
76
80
|
/* 1 */
|
|
77
|
-
margin: 0 $breadcrumb-divider-margin-horizontal
|
|
81
|
+
margin: 0 $breadcrumb-divider-margin-horizontal;
|
|
78
82
|
/* 2 */
|
|
79
83
|
font-size: $breadcrumb-divider-font-size;
|
|
80
84
|
color: $breadcrumb-divider-color;
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
========================================================================== */
|
|
307
307
|
|
|
308
308
|
/*
|
|
309
|
-
* 1. Using `flex` instead of `inline-block` to prevent whitespace
|
|
309
|
+
* 1. Using `flex` instead of `inline-block` to prevent whitespace between child elements
|
|
310
310
|
* 2. Behave like button
|
|
311
311
|
* 3. Create position context
|
|
312
312
|
*/
|
|
@@ -130,3 +130,15 @@
|
|
|
130
130
|
// @mixin hook-form-range-track-focus(){}
|
|
131
131
|
// @mixin hook-form-range-thumb(){}
|
|
132
132
|
// @mixin hook-form-range-misc(){}
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
// Inverse
|
|
136
|
+
// ========================================================================
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
// @mixin hook-inverse-form-range-track(){}
|
|
143
|
+
// @mixin hook-inverse-form-range-track-focus(){}
|
|
144
|
+
// @mixin hook-inverse-form-range-thumb(){}
|
|
@@ -547,7 +547,7 @@ select.uk-form-width-xsmall { width: ($form-width-xsmall + 25px); }
|
|
|
547
547
|
* 1. Position and resize the form control to always cover its container
|
|
548
548
|
* 2. Required for Firefox for positioning to the left
|
|
549
549
|
* 3. Required for Webkit to make `height` work
|
|
550
|
-
* 4. Hide
|
|
550
|
+
* 4. Hide controls and show cursor
|
|
551
551
|
* 5. Needed for the cursor
|
|
552
552
|
* 6. Clip height caused by 5. Needed for Webkit only
|
|
553
553
|
*/
|
|
@@ -5,11 +5,14 @@
|
|
|
5
5
|
//
|
|
6
6
|
// Sub-objects: `uk-lightbox-page`
|
|
7
7
|
// `uk-lightbox-items`
|
|
8
|
-
// `uk-lightbox-
|
|
9
|
-
// `uk-lightbox-
|
|
10
|
-
// `uk-lightbox-
|
|
8
|
+
// `uk-lightbox-items-fit`
|
|
9
|
+
// `uk-lightbox-thumbnav`
|
|
10
|
+
// `uk-lightbox-thumbnav-vertical`
|
|
11
|
+
// `uk-lightbox-dotnav`
|
|
11
12
|
// `uk-lightbox-caption`
|
|
13
|
+
// `uk-lightbox-counter`
|
|
12
14
|
// `uk-lightbox-iframe`
|
|
15
|
+
// `uk-lightbox-zoom`
|
|
13
16
|
//
|
|
14
17
|
// States: `uk-open`
|
|
15
18
|
//
|
|
@@ -25,9 +28,6 @@
|
|
|
25
28
|
|
|
26
29
|
|
|
27
30
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
31
|
/* ========================================================================
|
|
32
32
|
Component: Lightbox
|
|
33
33
|
========================================================================== */
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
*/
|
|
44
44
|
|
|
45
45
|
.uk-lightbox {
|
|
46
|
+
--uk-inverse: #{$lightbox-color-mode};
|
|
46
47
|
/* 1 */
|
|
47
48
|
display: none;
|
|
48
49
|
/* 2 */
|
|
@@ -91,15 +92,24 @@
|
|
|
91
92
|
.uk-lightbox-page { overflow: hidden; }
|
|
92
93
|
|
|
93
94
|
|
|
94
|
-
/*
|
|
95
|
+
/* Items
|
|
95
96
|
========================================================================== */
|
|
96
97
|
|
|
98
|
+
/*
|
|
99
|
+
* Reset list
|
|
100
|
+
*/
|
|
101
|
+
|
|
102
|
+
.uk-lightbox-items {
|
|
103
|
+
margin: 0;
|
|
104
|
+
padding: 0;
|
|
105
|
+
list-style: none;
|
|
106
|
+
}
|
|
107
|
+
|
|
97
108
|
/*
|
|
98
109
|
* 1. Center child within the viewport
|
|
99
110
|
* 2. Not visible by default
|
|
100
|
-
* 3.
|
|
101
|
-
* 4.
|
|
102
|
-
* 5. Responsiveness
|
|
111
|
+
* 3. Optimize animation
|
|
112
|
+
* 4. Responsiveness
|
|
103
113
|
* Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
|
|
104
114
|
*/
|
|
105
115
|
|
|
@@ -113,96 +123,64 @@
|
|
|
113
123
|
/* 2 */
|
|
114
124
|
display: none;
|
|
115
125
|
justify-content: center;
|
|
116
|
-
align-items:
|
|
126
|
+
align-items: flex-start;
|
|
117
127
|
/* 3 */
|
|
118
|
-
color: $lightbox-item-color;
|
|
119
|
-
/* 4 */
|
|
120
128
|
will-change: transform, opacity;
|
|
129
|
+
/* 4 */
|
|
130
|
+
overflow: auto;
|
|
121
131
|
@if(mixin-exists(hook-lightbox-item)) {@include hook-lightbox-item();}
|
|
122
132
|
}
|
|
123
133
|
|
|
124
|
-
/*
|
|
125
|
-
.uk-lightbox-items >
|
|
134
|
+
/* 2 */
|
|
135
|
+
.uk-lightbox-items > .uk-active { display: flex; }
|
|
136
|
+
|
|
137
|
+
.uk-lightbox-items-fit > * { align-items: center; }
|
|
138
|
+
|
|
139
|
+
/* 4 */
|
|
140
|
+
.uk-lightbox-items-fit > * > * {
|
|
126
141
|
max-width: $lightbox-item-max-width;
|
|
127
142
|
max-height: $lightbox-item-max-height;
|
|
128
143
|
}
|
|
129
144
|
|
|
130
|
-
.uk-lightbox-items > * > :not(iframe) {
|
|
145
|
+
.uk-lightbox-items-fit > * > :not(iframe) {
|
|
131
146
|
width: auto;
|
|
132
147
|
height: auto;
|
|
133
148
|
}
|
|
134
149
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
========================================================================== */
|
|
139
|
-
|
|
140
|
-
.uk-lightbox-toolbar {
|
|
141
|
-
padding: $lightbox-toolbar-padding-vertical $lightbox-toolbar-padding-horizontal;
|
|
142
|
-
background: $lightbox-toolbar-background;
|
|
143
|
-
color: $lightbox-toolbar-color;
|
|
144
|
-
@if(mixin-exists(hook-lightbox-toolbar)) {@include hook-lightbox-toolbar();}
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.uk-lightbox-toolbar > * { color: $lightbox-toolbar-color; }
|
|
150
|
+
/* Zoom Cursor */
|
|
151
|
+
.uk-lightbox-items.uk-lightbox-items-fit .uk-lightbox-zoom:hover { cursor: zoom-in; }
|
|
152
|
+
.uk-lightbox-items:not(.uk-lightbox-items-fit) .uk-lightbox-zoom:hover { cursor: zoom-out; }
|
|
148
153
|
|
|
149
154
|
|
|
150
|
-
/*
|
|
155
|
+
/* Navs
|
|
151
156
|
========================================================================== */
|
|
152
157
|
|
|
153
|
-
.uk-lightbox-
|
|
154
|
-
|
|
155
|
-
color: $lightbox-toolbar-icon-color;
|
|
156
|
-
@if(mixin-exists(hook-lightbox-toolbar-icon)) {@include hook-lightbox-toolbar-icon();}
|
|
157
|
-
}
|
|
158
|
+
.uk-lightbox-thumbnav-vertical :where(img, video) { max-width: $lightbox-thumbnav-vertical-width; }
|
|
159
|
+
.uk-lightbox-thumbnav:not(.uk-lightbox-thumbnav-vertical) :where(img, video) { max-height: $lightbox-thumbnav-height; }
|
|
158
160
|
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
*/
|
|
161
|
+
.uk-lightbox-thumbnav:empty,
|
|
162
|
+
.uk-lightbox-dotnav:empty { display: none; }
|
|
162
163
|
|
|
163
|
-
.uk-lightbox-toolbar-icon:hover {
|
|
164
|
-
color: $lightbox-toolbar-icon-hover-color;
|
|
165
|
-
@if(mixin-exists(hook-lightbox-toolbar-icon-hover)) {@include hook-lightbox-toolbar-icon-hover();}
|
|
166
|
-
}
|
|
167
164
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
/* Button (Slidenav)
|
|
165
|
+
/* Caption
|
|
171
166
|
========================================================================== */
|
|
172
167
|
|
|
173
|
-
|
|
174
|
-
* 1. Center icon vertically and horizontally
|
|
175
|
-
*/
|
|
176
|
-
|
|
177
|
-
.uk-lightbox-button {
|
|
178
|
-
box-sizing: border-box;
|
|
179
|
-
width: $lightbox-button-size;
|
|
180
|
-
height: $lightbox-button-size;
|
|
181
|
-
background: $lightbox-button-background;
|
|
182
|
-
color: $lightbox-button-color;
|
|
183
|
-
/* 1 */
|
|
184
|
-
display: inline-flex;
|
|
185
|
-
justify-content: center;
|
|
186
|
-
align-items: center;
|
|
187
|
-
@if(mixin-exists(hook-lightbox-button)) {@include hook-lightbox-button();}
|
|
188
|
-
}
|
|
168
|
+
.uk-lightbox-caption:empty { display: none; }
|
|
189
169
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
170
|
+
.uk-lightbox-caption {
|
|
171
|
+
padding: $lightbox-caption-padding-vertical $lightbox-caption-padding-horizontal;
|
|
172
|
+
background: $lightbox-caption-background;
|
|
173
|
+
color: $lightbox-caption-color;
|
|
174
|
+
@if(mixin-exists(hook-lightbox-caption)) {@include hook-lightbox-caption();}
|
|
194
175
|
}
|
|
195
176
|
|
|
196
|
-
|
|
197
|
-
.uk-lightbox-button:active {
|
|
198
|
-
@if(mixin-exists(hook-lightbox-button-active)) {@include hook-lightbox-button-active();}
|
|
199
|
-
}
|
|
177
|
+
.uk-lightbox-caption > * { color: $lightbox-caption-color; }
|
|
200
178
|
|
|
201
179
|
|
|
202
|
-
/*
|
|
180
|
+
/* Counter
|
|
203
181
|
========================================================================== */
|
|
204
182
|
|
|
205
|
-
.uk-lightbox-
|
|
183
|
+
.uk-lightbox-counter:empty { display: none; }
|
|
206
184
|
|
|
207
185
|
|
|
208
186
|
/* Iframe
|
|
@@ -221,10 +199,5 @@
|
|
|
221
199
|
|
|
222
200
|
// @mixin hook-lightbox(){}
|
|
223
201
|
// @mixin hook-lightbox-item(){}
|
|
224
|
-
// @mixin hook-lightbox-
|
|
225
|
-
// @mixin hook-lightbox-toolbar-icon(){}
|
|
226
|
-
// @mixin hook-lightbox-toolbar-icon-hover(){}
|
|
227
|
-
// @mixin hook-lightbox-button(){}
|
|
228
|
-
// @mixin hook-lightbox-button-hover(){}
|
|
229
|
-
// @mixin hook-lightbox-button-active(){}
|
|
202
|
+
// @mixin hook-lightbox-caption(){}
|
|
230
203
|
// @mixin hook-lightbox-misc(){}
|