uikit 3.23.6 → 3.23.7-dev.ea33b1a06
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 +7 -0
- package/dist/css/uikit-core-rtl.css +1 -1
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +1 -1
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +1 -1
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +1 -1
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +2 -2
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +8 -8
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +12 -17
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +13 -18
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +1 -1
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +1 -1
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +11 -17
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +1 -1
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +8 -14
- 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 +2 -2
- 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 +39 -23
- 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 +59 -49
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/components/countdown.js +2 -2
- package/src/js/components/filter.js +1 -2
- package/src/js/components/lightbox.js +1 -2
- package/src/js/components/slider.js +3 -4
- package/src/js/components/tooltip.js +1 -1
- package/src/js/core/icon.js +3 -5
- package/src/js/core/img.js +1 -1
- package/src/js/core/inverse.js +19 -2
- package/src/js/core/switcher.js +4 -4
- package/src/js/core/toggle.js +3 -4
- package/src/js/core/video.js +1 -1
- package/src/js/mixin/modal.js +4 -4
- package/src/js/mixin/slider-nav.js +7 -13
- package/src/js/util/style.js +6 -2
- package/src/scss/components/_import.components.scss +0 -56
- package/src/scss/components/_import.utilities.scss +0 -19
- package/src/scss/components/grid-masonry.scss +0 -69
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "uikit",
|
|
3
3
|
"title": "UIkit",
|
|
4
4
|
"description": "UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces.",
|
|
5
|
-
"version": "3.23.
|
|
5
|
+
"version": "3.23.7-dev.ea33b1a06",
|
|
6
6
|
"main": "dist/js/uikit.js",
|
|
7
7
|
"style": "dist/css/uikit.css",
|
|
8
8
|
"sideEffects": [
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $,
|
|
1
|
+
import { $, html, toFloat, trigger } from 'uikit-util';
|
|
2
2
|
import Class from '../mixin/class';
|
|
3
3
|
|
|
4
4
|
const units = ['days', 'hours', 'minutes', 'seconds'];
|
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
},
|
|
22
22
|
|
|
23
23
|
connected() {
|
|
24
|
-
|
|
24
|
+
this.$el.role = this.role;
|
|
25
25
|
this.date = toFloat(Date.parse(this.$props.date));
|
|
26
26
|
this.started = this.end = false;
|
|
27
27
|
this.start();
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
$,
|
|
3
3
|
$$,
|
|
4
4
|
append,
|
|
5
|
-
attr,
|
|
6
5
|
css,
|
|
7
6
|
data,
|
|
8
7
|
fastdom,
|
|
@@ -57,7 +56,7 @@ export default {
|
|
|
57
56
|
}
|
|
58
57
|
const button = findButton(toggle);
|
|
59
58
|
if (isTag(button, 'a')) {
|
|
60
|
-
|
|
59
|
+
button.role = 'button';
|
|
61
60
|
}
|
|
62
61
|
}
|
|
63
62
|
},
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
$,
|
|
3
3
|
$$,
|
|
4
4
|
assign,
|
|
5
|
-
attr,
|
|
6
5
|
findIndex,
|
|
7
6
|
isElement,
|
|
8
7
|
isTag,
|
|
@@ -32,7 +31,7 @@ export default {
|
|
|
32
31
|
this.hide();
|
|
33
32
|
for (const toggle of toggles) {
|
|
34
33
|
if (isTag(toggle, 'a')) {
|
|
35
|
-
|
|
34
|
+
toggle.role = 'button';
|
|
36
35
|
}
|
|
37
36
|
}
|
|
38
37
|
},
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
$,
|
|
3
3
|
$$,
|
|
4
4
|
addClass,
|
|
5
|
-
attr,
|
|
6
5
|
children,
|
|
7
6
|
css,
|
|
8
7
|
data,
|
|
@@ -255,12 +254,12 @@ export default {
|
|
|
255
254
|
for (const slide of this.slides) {
|
|
256
255
|
const active = includes(actives, slide);
|
|
257
256
|
toggleClass(slide, activeClasses, active);
|
|
258
|
-
|
|
257
|
+
slide.ariaHidden = !active;
|
|
259
258
|
for (const focusable of $$(selFocusable, slide)) {
|
|
260
259
|
if (!hasOwn(focusable, '_tabindex')) {
|
|
261
|
-
focusable._tabindex =
|
|
260
|
+
focusable._tabindex = focusable.tabIndex;
|
|
262
261
|
}
|
|
263
|
-
|
|
262
|
+
focusable.tabIndex = active ? focusable._tabindex : -1;
|
|
264
263
|
}
|
|
265
264
|
}
|
|
266
265
|
},
|
package/src/js/core/icon.js
CHANGED
|
@@ -136,13 +136,11 @@ export const Search = {
|
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
if (isToggle) {
|
|
139
|
-
|
|
140
|
-
attr(this.$el, 'aria-label', label);
|
|
139
|
+
this.$el.ariaLabel = this.t('toggle');
|
|
141
140
|
} else {
|
|
142
141
|
const button = this.$el.closest('a,button');
|
|
143
142
|
if (button) {
|
|
144
|
-
|
|
145
|
-
attr(button, 'aria-label', label);
|
|
143
|
+
button.ariaLabel = this.t('submit');
|
|
146
144
|
}
|
|
147
145
|
}
|
|
148
146
|
},
|
|
@@ -152,7 +150,7 @@ export const Spinner = {
|
|
|
152
150
|
extends: IconComponent,
|
|
153
151
|
|
|
154
152
|
beforeConnect() {
|
|
155
|
-
|
|
153
|
+
this.$el.role = 'status';
|
|
156
154
|
},
|
|
157
155
|
|
|
158
156
|
methods: {
|
package/src/js/core/img.js
CHANGED
package/src/js/core/inverse.js
CHANGED
|
@@ -23,14 +23,31 @@ export default {
|
|
|
23
23
|
selActive: false,
|
|
24
24
|
},
|
|
25
25
|
|
|
26
|
+
connected() {
|
|
27
|
+
this.isIntersecting = 0;
|
|
28
|
+
},
|
|
29
|
+
|
|
26
30
|
computed: {
|
|
27
31
|
target: ({ target }, $el) => (target ? $$(target, $el) : $el),
|
|
28
32
|
},
|
|
29
33
|
|
|
34
|
+
watch: {
|
|
35
|
+
target: {
|
|
36
|
+
handler() {
|
|
37
|
+
queueMicrotask(() => this.$reset());
|
|
38
|
+
},
|
|
39
|
+
immediate: false,
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
|
|
30
43
|
observe: [
|
|
31
44
|
intersection({
|
|
32
45
|
handler(entries) {
|
|
33
|
-
this.isIntersecting = entries.
|
|
46
|
+
this.isIntersecting = entries.reduce(
|
|
47
|
+
(sum, { isIntersecting }) =>
|
|
48
|
+
sum + (isIntersecting ? 1 : this.isIntersecting ? -1 : 0),
|
|
49
|
+
this.isIntersecting,
|
|
50
|
+
);
|
|
34
51
|
this.$emit();
|
|
35
52
|
},
|
|
36
53
|
target: ({ target }) => target,
|
|
@@ -38,7 +55,7 @@ export default {
|
|
|
38
55
|
}),
|
|
39
56
|
mutation({
|
|
40
57
|
target: ({ target }) => target,
|
|
41
|
-
options: { attributes: true, attributeFilter: ['class']
|
|
58
|
+
options: { attributes: true, attributeFilter: ['class'] },
|
|
42
59
|
}),
|
|
43
60
|
{
|
|
44
61
|
target: ({ target }) => target,
|
package/src/js/core/switcher.js
CHANGED
|
@@ -93,7 +93,7 @@ export default {
|
|
|
93
93
|
},
|
|
94
94
|
|
|
95
95
|
connected() {
|
|
96
|
-
|
|
96
|
+
this.$el.role = 'tablist';
|
|
97
97
|
},
|
|
98
98
|
|
|
99
99
|
observe: [
|
|
@@ -184,7 +184,7 @@ export default {
|
|
|
184
184
|
update() {
|
|
185
185
|
for (const el of this.connects) {
|
|
186
186
|
if (isTag(el, 'ul')) {
|
|
187
|
-
|
|
187
|
+
el.role = 'presentation';
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
190
|
attr(children(this.$el), 'role', 'presentation');
|
|
@@ -193,7 +193,7 @@ export default {
|
|
|
193
193
|
const toggle = this.toggles[index];
|
|
194
194
|
const item = this.connects[0]?.children[index];
|
|
195
195
|
|
|
196
|
-
|
|
196
|
+
toggle.role = 'tab';
|
|
197
197
|
|
|
198
198
|
if (!item) {
|
|
199
199
|
continue;
|
|
@@ -202,7 +202,7 @@ export default {
|
|
|
202
202
|
toggle.id = generateId(this, toggle);
|
|
203
203
|
item.id = generateId(this, item);
|
|
204
204
|
|
|
205
|
-
|
|
205
|
+
toggle.ariaControls = item.id;
|
|
206
206
|
attr(item, { role: 'tabpanel', 'aria-labelledby': toggle.id });
|
|
207
207
|
}
|
|
208
208
|
attr(this.$el, 'aria-orientation', matches(this.$el, this.selVertical) ? 'vertical' : null);
|
package/src/js/core/toggle.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import {
|
|
2
|
-
attr,
|
|
3
2
|
hasAttr,
|
|
4
3
|
hasClass,
|
|
5
4
|
includes,
|
|
@@ -54,10 +53,10 @@ export default {
|
|
|
54
53
|
connected() {
|
|
55
54
|
if (!includes(this.mode, 'media')) {
|
|
56
55
|
if (!isFocusable(this.$el)) {
|
|
57
|
-
|
|
56
|
+
this.$el.tabIndex = 0;
|
|
58
57
|
}
|
|
59
58
|
if (!this.cls && isTag(this.$el, 'a')) {
|
|
60
|
-
|
|
59
|
+
this.$el.role = 'button';
|
|
61
60
|
}
|
|
62
61
|
}
|
|
63
62
|
},
|
|
@@ -193,7 +192,7 @@ export default {
|
|
|
193
192
|
}
|
|
194
193
|
|
|
195
194
|
if (hasAttr(this.$el, 'aria-expanded')) {
|
|
196
|
-
|
|
195
|
+
this.$el.ariaExpanded = !this.isToggled(this.target);
|
|
197
196
|
}
|
|
198
197
|
|
|
199
198
|
if (!this.queued) {
|
package/src/js/core/video.js
CHANGED
package/src/js/mixin/modal.js
CHANGED
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
$,
|
|
3
3
|
addClass,
|
|
4
4
|
append,
|
|
5
|
-
attr,
|
|
6
5
|
css,
|
|
7
6
|
endsWith,
|
|
8
7
|
includes,
|
|
@@ -57,10 +56,11 @@ export default {
|
|
|
57
56
|
},
|
|
58
57
|
|
|
59
58
|
connected() {
|
|
60
|
-
|
|
59
|
+
const el = this.panel || this.$el;
|
|
60
|
+
el.role = this.role;
|
|
61
61
|
|
|
62
62
|
if (this.overlay) {
|
|
63
|
-
|
|
63
|
+
el.ariaModal = true;
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
66
|
|
|
@@ -165,7 +165,7 @@ export default {
|
|
|
165
165
|
|
|
166
166
|
handler() {
|
|
167
167
|
if (!isFocusable(this.$el)) {
|
|
168
|
-
|
|
168
|
+
this.$el.tabIndex = -1;
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
if (!matches(this.$el, ':focus-within')) {
|
|
@@ -88,7 +88,7 @@ export default {
|
|
|
88
88
|
|
|
89
89
|
ariaLabel = this.t('slideX', toFloat(cmd) + 1);
|
|
90
90
|
|
|
91
|
-
|
|
91
|
+
button.role = 'tab';
|
|
92
92
|
} else {
|
|
93
93
|
if (this.list) {
|
|
94
94
|
if (!this.list.id) {
|
|
@@ -101,10 +101,8 @@ export default {
|
|
|
101
101
|
ariaLabel = this.t(cmd);
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
'aria-label': attr(button, 'aria-label') || ariaLabel,
|
|
107
|
-
});
|
|
104
|
+
button.ariaControls = ariaControls;
|
|
105
|
+
button.ariaLabel = button.ariaLabel || ariaLabel;
|
|
108
106
|
}
|
|
109
107
|
},
|
|
110
108
|
|
|
@@ -122,10 +120,8 @@ export default {
|
|
|
122
120
|
},
|
|
123
121
|
|
|
124
122
|
connected() {
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
'aria-roledescription': 'carousel',
|
|
128
|
-
});
|
|
123
|
+
this.$el.role = this.role;
|
|
124
|
+
this.$el.ariaRoleDescription = 'carousel';
|
|
129
125
|
},
|
|
130
126
|
|
|
131
127
|
update: [
|
|
@@ -214,10 +210,8 @@ export default {
|
|
|
214
210
|
toggleClass(el, this.clsActive, active);
|
|
215
211
|
toggleClass(button, 'uk-disabled', !!this.parallax);
|
|
216
212
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
tabindex: active && !this.parallax ? null : -1,
|
|
220
|
-
});
|
|
213
|
+
button.ariaSelected = active;
|
|
214
|
+
button.tabIndex = active && !this.parallax ? null : -1;
|
|
221
215
|
|
|
222
216
|
if (active && button && matches(parent(el), ':focus-within')) {
|
|
223
217
|
button.focus();
|
package/src/js/util/style.js
CHANGED
|
@@ -40,7 +40,7 @@ export function css(element, property, value, priority) {
|
|
|
40
40
|
} else {
|
|
41
41
|
element.style.setProperty(
|
|
42
42
|
property,
|
|
43
|
-
isNumeric(value) && !cssNumber[property]
|
|
43
|
+
isNumeric(value) && !cssNumber[property] && !isCustomProperty(property)
|
|
44
44
|
? `${value}px`
|
|
45
45
|
: value || isNumber(value)
|
|
46
46
|
? value
|
|
@@ -71,7 +71,7 @@ export function resetProps(element, props) {
|
|
|
71
71
|
|
|
72
72
|
// https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-setproperty
|
|
73
73
|
export const propName = memoize((name) => {
|
|
74
|
-
if (
|
|
74
|
+
if (isCustomProperty(name)) {
|
|
75
75
|
return name;
|
|
76
76
|
}
|
|
77
77
|
|
|
@@ -90,3 +90,7 @@ export const propName = memoize((name) => {
|
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
});
|
|
93
|
+
|
|
94
|
+
function isCustomProperty(name) {
|
|
95
|
+
return startsWith(name, '--');
|
|
96
|
+
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
// Base
|
|
2
|
-
@import "variables.scss";
|
|
3
|
-
@import "mixin.scss";
|
|
4
|
-
@import "base.scss";
|
|
5
|
-
|
|
6
|
-
// Elements
|
|
7
|
-
@import "link.scss";
|
|
8
|
-
@import "heading.scss";
|
|
9
|
-
@import "divider.scss";
|
|
10
|
-
@import "list.scss";
|
|
11
|
-
@import "description-list.scss";
|
|
12
|
-
@import "table.scss";
|
|
13
|
-
@import "icon.scss";
|
|
14
|
-
@import "form.scss"; // After: Icon
|
|
15
|
-
@import "button.scss";
|
|
16
|
-
|
|
17
|
-
// Layout
|
|
18
|
-
@import "section.scss";
|
|
19
|
-
@import "container.scss";
|
|
20
|
-
@import "grid.scss";
|
|
21
|
-
@import "tile.scss";
|
|
22
|
-
@import "card.scss";
|
|
23
|
-
|
|
24
|
-
// Common
|
|
25
|
-
@import "close.scss"; // After: Icon
|
|
26
|
-
@import "spinner.scss"; // After: Icon
|
|
27
|
-
@import "totop.scss"; // After: Icon
|
|
28
|
-
@import "alert.scss"; // After: Close
|
|
29
|
-
@import "badge.scss";
|
|
30
|
-
@import "label.scss";
|
|
31
|
-
@import "overlay.scss"; // After: Icon
|
|
32
|
-
@import "article.scss"; // After: Subnav
|
|
33
|
-
@import "comment.scss"; // After: Subnav
|
|
34
|
-
@import "search.scss"; // After: Icon
|
|
35
|
-
|
|
36
|
-
// Navs
|
|
37
|
-
@import "nav.scss";
|
|
38
|
-
@import "navbar.scss"; // After: Card, Grid, Nav, Icon, Search
|
|
39
|
-
@import "subnav.scss";
|
|
40
|
-
@import "breadcrumb.scss";
|
|
41
|
-
@import "pagination.scss";
|
|
42
|
-
@import "tab.scss";
|
|
43
|
-
@import "slidenav.scss"; // After: Icon
|
|
44
|
-
@import "dotnav.scss";
|
|
45
|
-
|
|
46
|
-
// JavaScript
|
|
47
|
-
@import "accordion.scss";
|
|
48
|
-
@import "drop.scss"; // After: Card
|
|
49
|
-
@import "dropdown.scss"; // After: Card
|
|
50
|
-
@import "modal.scss"; // After: Close
|
|
51
|
-
@import "sticky.scss";
|
|
52
|
-
@import "offcanvas.scss";
|
|
53
|
-
@import "switcher.scss";
|
|
54
|
-
// Scrollspy
|
|
55
|
-
// Toggle
|
|
56
|
-
// Scroll
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
// Utilities
|
|
2
|
-
@import "animation.scss";
|
|
3
|
-
@import "width.scss";
|
|
4
|
-
@import "text.scss";
|
|
5
|
-
@import "column.scss";
|
|
6
|
-
@import "cover.scss";
|
|
7
|
-
@import "background.scss";
|
|
8
|
-
@import "align.scss";
|
|
9
|
-
@import "utility.scss";
|
|
10
|
-
@import "flex.scss"; // After: Utility
|
|
11
|
-
@import "margin.scss";
|
|
12
|
-
@import "padding.scss";
|
|
13
|
-
@import "position.scss";
|
|
14
|
-
@import "transition.scss";
|
|
15
|
-
@import "visibility.scss";
|
|
16
|
-
@import "inverse.scss";
|
|
17
|
-
|
|
18
|
-
// Need to be loaded last
|
|
19
|
-
@import "print.scss";
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
// Name: Grid
|
|
2
|
-
// Description: Component to create two dimensional grids
|
|
3
|
-
//
|
|
4
|
-
// Component: `uk-grid2`
|
|
5
|
-
//
|
|
6
|
-
// ========================================================================
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
// Variables
|
|
10
|
-
// ========================================================================
|
|
11
|
-
|
|
12
|
-
$grid-column-xsmall: 100px !default;
|
|
13
|
-
$grid-column-small: 200px !default;
|
|
14
|
-
$grid-column-medium: 300px !default;
|
|
15
|
-
$grid-column-large: 400px !default;
|
|
16
|
-
$grid-column-xlarge: 500px !default;
|
|
17
|
-
$grid-column-xxlarge: 600px !default;
|
|
18
|
-
|
|
19
|
-
$grid-gap-small: $global-small-gutter !default;
|
|
20
|
-
$grid-gap-medium: $global-gutter !default;
|
|
21
|
-
$grid-gap-large: $global-large-gutter !default;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
/* ========================================================================
|
|
25
|
-
Component: Grid
|
|
26
|
-
========================================================================== */
|
|
27
|
-
|
|
28
|
-
.uk-grid-masonry { display: grid; }
|
|
29
|
-
.uk-grid-inline { display: inline-grid; }
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
/* Columns Width
|
|
33
|
-
========================================================================== */
|
|
34
|
-
|
|
35
|
-
.uk-grid-column-xsmall { grid-template-columns: repeat(auto-fill, minmax($grid-column-xsmall,1fr)); }
|
|
36
|
-
.uk-grid-column-small { grid-template-columns: repeat(auto-fill, minmax($grid-column-small,1fr)); }
|
|
37
|
-
.uk-grid-column-medium { grid-template-columns: repeat(auto-fill, minmax($grid-column-medium,1fr)); }
|
|
38
|
-
.uk-grid-column-large { grid-template-columns: repeat(auto-fill, minmax($grid-column-large,1fr)); }
|
|
39
|
-
.uk-grid-column-xlarge { grid-template-columns: repeat(auto-fill, minmax($grid-column-xlarge,1fr)); }
|
|
40
|
-
.uk-grid-column-xxlarge { grid-template-columns: repeat(auto-fill, minmax($grid-column-xxlarge,1fr)); }
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
/* Gap
|
|
44
|
-
========================================================================== */
|
|
45
|
-
|
|
46
|
-
.uk-grid-gap-none { grid-gap: 0; }
|
|
47
|
-
.uk-grid-gap-small { grid-gap: $grid-gap-small; }
|
|
48
|
-
.uk-grid-gap-medium { grid-gap: $grid-gap-medium; }
|
|
49
|
-
.uk-grid-gap-large { grid-gap: $grid-gap-large; }
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
/* Auto Placement
|
|
53
|
-
========================================================================== */
|
|
54
|
-
|
|
55
|
-
// Default
|
|
56
|
-
.uk-grid-auto-flow-row { grid-auto-flow: row; }
|
|
57
|
-
.uk-grid-auto-flow-column { grid-auto-flow: column; }
|
|
58
|
-
.uk-grid-auto-flow-dense { grid-auto-flow: dense; }
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
/* Item Span
|
|
62
|
-
========================================================================== */
|
|
63
|
-
|
|
64
|
-
// TODO Fix implicit tracks if span is too large
|
|
65
|
-
.uk-grid-item-span-2 { grid-column-start: span 2; }
|
|
66
|
-
.uk-grid-item-span-3 { grid-column-start: span 3; }
|
|
67
|
-
.uk-grid-item-span-4 { grid-column-start: span 4; }
|
|
68
|
-
.uk-grid-item-span-5 { grid-column-start: span 5; }
|
|
69
|
-
|