@festo-ui/web-essentials 8.2.0-dev.630 → 8.2.0-dev.637
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/README.md +83 -83
- package/dist/css/festo-web-essentials.css +9 -12
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +12 -12
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/light/festo-web-essentials-light.css +0 -3
- package/dist/css/light/festo-web-essentials-light.css.map +1 -1
- package/dist/css/themes/flatpickr/festo.css +1 -1
- package/dist/css/themes/flatpickr/festo.min.css +1 -1
- package/dist/scss/_badge.scss +49 -49
- package/dist/scss/_border.scss +86 -86
- package/dist/scss/_bottom-navigation.scss +47 -47
- package/dist/scss/_bottom-sheet.scss +116 -116
- package/dist/scss/_colors.scss +11 -11
- package/dist/scss/_display.scss +63 -63
- package/dist/scss/_flex.scss +269 -269
- package/dist/scss/_grid.scss +44 -44
- package/dist/scss/_layout.scss +64 -64
- package/dist/scss/_list.scss +211 -211
- package/dist/scss/_misc.scss +51 -51
- package/dist/scss/_mixins.scss +51 -51
- package/dist/scss/_modal.scss +233 -233
- package/dist/scss/_normalize.scss +369 -369
- package/dist/scss/_pagination.scss +124 -124
- package/dist/scss/_rfs.scss +177 -177
- package/dist/scss/_segment.scss +146 -146
- package/dist/scss/_sidebar-overlay.scss +51 -51
- package/dist/scss/_slider.scss +150 -150
- package/dist/scss/_snackbar.scss +159 -159
- package/dist/scss/_spacing.scss +51 -51
- package/dist/scss/_switch.scss +145 -145
- package/dist/scss/_text-input.scss +191 -191
- package/dist/scss/_text-link.scss +52 -52
- package/dist/scss/_toolbar.scss +83 -83
- package/dist/scss/_type.scss +50 -50
- package/dist/scss/_utils.scss +9 -9
- package/dist/scss/festo-web-essentials.scss +1 -1
- package/dist/scss/light/_border-light.scss +75 -75
- package/dist/scss/light/_flex-light.scss +258 -258
- package/dist/scss/light/_spacing-light.scss +52 -52
- package/dist/scss/light/festo-web-essentials-light.scss +59 -59
- package/dist/scss/organisms/_header-modul.scss +111 -111
- package/dist/scss/organisms/_teaser.scss +96 -96
- package/dist/scss/themes/flatpickr/festo.scss +1 -1
- package/package.json +10 -16
- package/scss/_badge.scss +49 -49
- package/scss/_border.scss +86 -86
- package/scss/_bottom-navigation.scss +47 -47
- package/scss/_bottom-sheet.scss +116 -116
- package/scss/_colors.scss +11 -11
- package/scss/_display.scss +63 -63
- package/scss/_flex.scss +269 -269
- package/scss/_grid.scss +44 -44
- package/scss/_layout.scss +64 -64
- package/scss/_list.scss +211 -211
- package/scss/_misc.scss +51 -51
- package/scss/_mixins.scss +51 -51
- package/scss/_modal.scss +233 -233
- package/scss/_normalize.scss +369 -369
- package/scss/_pagination.scss +124 -124
- package/scss/_rfs.scss +177 -177
- package/scss/_segment.scss +146 -146
- package/scss/_sidebar-overlay.scss +51 -51
- package/scss/_slider.scss +150 -150
- package/scss/_snackbar.scss +159 -159
- package/scss/_spacing.scss +51 -51
- package/scss/_switch.scss +145 -145
- package/scss/_text-input.scss +191 -191
- package/scss/_text-link.scss +52 -52
- package/scss/_toolbar.scss +83 -83
- package/scss/_type.scss +50 -50
- package/scss/_utils.scss +9 -9
- package/scss/light/_border-light.scss +75 -75
- package/scss/light/_flex-light.scss +258 -258
- package/scss/light/_spacing-light.scss +52 -52
- package/scss/light/festo-web-essentials-light.scss +59 -59
- package/scss/organisms/_header-modul.scss +111 -111
- package/scss/organisms/_teaser.scss +96 -96
package/dist/scss/_display.scss
CHANGED
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
@use "mixins";
|
|
3
|
-
@use "utils";
|
|
4
|
-
@use "variables";
|
|
5
|
-
|
|
6
|
-
@mixin displays($infix: "") {
|
|
7
|
-
.fwe-d#{$infix}-none {
|
|
8
|
-
display: none !important;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.fwe-d#{$infix}-flex {
|
|
12
|
-
display: flex !important;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.fwe-d#{$infix}-inline-flex {
|
|
16
|
-
display: inline-flex !important;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.fwe-d#{$infix}-grid {
|
|
20
|
-
display: grid !important;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.fwe-d#{$infix}-inline {
|
|
24
|
-
display: inline !important;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.fwe-d#{$infix}-block {
|
|
28
|
-
display: block !important;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.fwe-d#{$infix}-inline-block {
|
|
32
|
-
display: inline-block !important;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.fwe-d#{$infix}-table {
|
|
36
|
-
display: table !important;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.fwe-d#{$infix}-table-cell {
|
|
40
|
-
display: table-cell !important;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.fwe-d#{$infix}-table-row {
|
|
44
|
-
display: table-row !important;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
@each $breakpoint in map.keys(variables.$grid-breakpoints) {
|
|
49
|
-
$infix: utils.breakpoint-infix($breakpoint, variables.$grid-breakpoints);
|
|
50
|
-
$size: map.get(variables.$grid-breakpoints, $breakpoint);
|
|
51
|
-
|
|
52
|
-
@if $size == 0 {
|
|
53
|
-
@include displays();
|
|
54
|
-
} @else {
|
|
55
|
-
@media (min-width: $size) {
|
|
56
|
-
@include displays($infix);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.fwe-sr-only {
|
|
62
|
-
@include mixins.visual-hidden();
|
|
63
|
-
}
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "mixins";
|
|
3
|
+
@use "utils";
|
|
4
|
+
@use "variables";
|
|
5
|
+
|
|
6
|
+
@mixin displays($infix: "") {
|
|
7
|
+
.fwe-d#{$infix}-none {
|
|
8
|
+
display: none !important;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.fwe-d#{$infix}-flex {
|
|
12
|
+
display: flex !important;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.fwe-d#{$infix}-inline-flex {
|
|
16
|
+
display: inline-flex !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.fwe-d#{$infix}-grid {
|
|
20
|
+
display: grid !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.fwe-d#{$infix}-inline {
|
|
24
|
+
display: inline !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.fwe-d#{$infix}-block {
|
|
28
|
+
display: block !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.fwe-d#{$infix}-inline-block {
|
|
32
|
+
display: inline-block !important;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.fwe-d#{$infix}-table {
|
|
36
|
+
display: table !important;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.fwe-d#{$infix}-table-cell {
|
|
40
|
+
display: table-cell !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.fwe-d#{$infix}-table-row {
|
|
44
|
+
display: table-row !important;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@each $breakpoint in map.keys(variables.$grid-breakpoints) {
|
|
49
|
+
$infix: utils.breakpoint-infix($breakpoint, variables.$grid-breakpoints);
|
|
50
|
+
$size: map.get(variables.$grid-breakpoints, $breakpoint);
|
|
51
|
+
|
|
52
|
+
@if $size == 0 {
|
|
53
|
+
@include displays();
|
|
54
|
+
} @else {
|
|
55
|
+
@media (min-width: $size) {
|
|
56
|
+
@include displays($infix);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.fwe-sr-only {
|
|
62
|
+
@include mixins.visual-hidden();
|
|
63
|
+
}
|
package/dist/scss/_flex.scss
CHANGED
|
@@ -1,269 +1,269 @@
|
|
|
1
|
-
@use "sass:list";
|
|
2
|
-
@use "sass:map";
|
|
3
|
-
@use "utils";
|
|
4
|
-
@use "variables";
|
|
5
|
-
|
|
6
|
-
$basic-keywords: normal, stretch, center, start, end, flex-start, flex-end;
|
|
7
|
-
$baseline-keywords: baseline, first baseline, last baseline, safe center, unsafe center;
|
|
8
|
-
$positional-keywords: left, right;
|
|
9
|
-
$content-keywords: space-between, space-around, space-evenly;
|
|
10
|
-
$justify-keywords: auto, self-start, self-end;
|
|
11
|
-
$legacy-keywords: legacy right, legacy left, legacy center;
|
|
12
|
-
$flex-properties: (
|
|
13
|
-
auto: (
|
|
14
|
-
flex,
|
|
15
|
-
auto
|
|
16
|
-
),
|
|
17
|
-
grow-0: (
|
|
18
|
-
flex-grow,
|
|
19
|
-
0
|
|
20
|
-
),
|
|
21
|
-
grow-1: (
|
|
22
|
-
flex-grow,
|
|
23
|
-
1
|
|
24
|
-
),
|
|
25
|
-
grow-2: (
|
|
26
|
-
flex-grow,
|
|
27
|
-
2
|
|
28
|
-
),
|
|
29
|
-
grow-3: (
|
|
30
|
-
flex-grow,
|
|
31
|
-
3
|
|
32
|
-
),
|
|
33
|
-
shrink-0: (
|
|
34
|
-
flex-shrink,
|
|
35
|
-
0
|
|
36
|
-
),
|
|
37
|
-
shrink-1: (
|
|
38
|
-
flex-shrink,
|
|
39
|
-
1
|
|
40
|
-
),
|
|
41
|
-
shrink-2: (
|
|
42
|
-
flex-shrink,
|
|
43
|
-
2
|
|
44
|
-
),
|
|
45
|
-
shrink-3: (
|
|
46
|
-
flex-shrink,
|
|
47
|
-
3
|
|
48
|
-
),
|
|
49
|
-
basis-0: (
|
|
50
|
-
flex-basis,
|
|
51
|
-
0
|
|
52
|
-
),
|
|
53
|
-
basis-auto: (
|
|
54
|
-
flex-basis,
|
|
55
|
-
auto
|
|
56
|
-
),
|
|
57
|
-
basis-fill: (
|
|
58
|
-
flex-basis,
|
|
59
|
-
fill
|
|
60
|
-
),
|
|
61
|
-
basis-max-content: (
|
|
62
|
-
flex-basis,
|
|
63
|
-
max-content
|
|
64
|
-
),
|
|
65
|
-
basis-min-content: (
|
|
66
|
-
flex-basis,
|
|
67
|
-
min-content
|
|
68
|
-
),
|
|
69
|
-
basis-fit-content: (
|
|
70
|
-
flex-basis,
|
|
71
|
-
fit-content
|
|
72
|
-
),
|
|
73
|
-
basis-content: (
|
|
74
|
-
flex-basis,
|
|
75
|
-
content
|
|
76
|
-
),
|
|
77
|
-
wrap: (
|
|
78
|
-
flex-wrap,
|
|
79
|
-
wrap
|
|
80
|
-
),
|
|
81
|
-
wrap-reverse: (
|
|
82
|
-
flex-wrap,
|
|
83
|
-
wrap-reverse
|
|
84
|
-
),
|
|
85
|
-
nowrap: (
|
|
86
|
-
flex-wrap,
|
|
87
|
-
nowrap
|
|
88
|
-
),
|
|
89
|
-
row-nowrap: (
|
|
90
|
-
flex-flow,
|
|
91
|
-
row nowrap
|
|
92
|
-
),
|
|
93
|
-
column-wrap: (
|
|
94
|
-
flex-flow,
|
|
95
|
-
column wrap
|
|
96
|
-
),
|
|
97
|
-
column-reverse-wrap-reverse: (
|
|
98
|
-
flex-flow,
|
|
99
|
-
column-reverse wrap-reverse
|
|
100
|
-
),
|
|
101
|
-
row: (
|
|
102
|
-
flex-direction,
|
|
103
|
-
row
|
|
104
|
-
),
|
|
105
|
-
row-reverse: (
|
|
106
|
-
flex-direction,
|
|
107
|
-
row-reverse
|
|
108
|
-
),
|
|
109
|
-
column: (
|
|
110
|
-
flex-direction,
|
|
111
|
-
column
|
|
112
|
-
),
|
|
113
|
-
column-reverse: (
|
|
114
|
-
flex-direction,
|
|
115
|
-
column-reverse
|
|
116
|
-
)
|
|
117
|
-
) !default;
|
|
118
|
-
|
|
119
|
-
@mixin flex-helpers($infix: "") {
|
|
120
|
-
.fwe-ml#{$infix}-auto {
|
|
121
|
-
margin-left: auto !important;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.fwe-mr#{$infix}-auto {
|
|
125
|
-
margin-right: auto !important;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.fwe-mt#{$infix}-auto {
|
|
129
|
-
margin-top: auto !important;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
.fwe-mb#{$infix}-auto {
|
|
133
|
-
margin-bottom: auto !important;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.fwe-order#{$infix}-first {
|
|
137
|
-
order: -1;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.fwe-order#{$infix}-last {
|
|
141
|
-
order: 6;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.fwe-order#{$infix}-1 {
|
|
145
|
-
order: 1;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.fwe-order#{$infix}-2 {
|
|
149
|
-
order: 2;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.fwe-order#{$infix}-3 {
|
|
153
|
-
order: 3;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.fwe-order#{$infix}-4 {
|
|
157
|
-
order: 4;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.fwe-order#{$infix}-5 {
|
|
161
|
-
order: 5;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
@each $classname, $properties in $flex-properties {
|
|
165
|
-
$property: list.nth($properties, 1);
|
|
166
|
-
$value: list.nth($properties, 2);
|
|
167
|
-
|
|
168
|
-
.fwe-flex#{$infix}-#{$classname} {
|
|
169
|
-
#{$property}: $value !important;
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
@each $property in $basic-keywords {
|
|
174
|
-
.fwe-align-items#{$infix}-#{$property} {
|
|
175
|
-
align-items: $property !important;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.fwe-align-self#{$infix}-#{$property} {
|
|
179
|
-
align-self: $property !important;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.fwe-align-content#{$infix}-#{$property} {
|
|
183
|
-
align-content: $property !important;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.fwe-justify-items#{$infix}-#{$property} {
|
|
187
|
-
justify-items: $property !important;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.fwe-justify-self#{$infix}-#{$property} {
|
|
191
|
-
justify-self: $property !important;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
.fwe-justify-content#{$infix}-#{$property} {
|
|
195
|
-
justify-content: $property !important;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
@each $property in $baseline-keywords {
|
|
200
|
-
.fwe-align-items#{$infix}-#{$property} {
|
|
201
|
-
align-items: $property !important;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.fwe-align-self#{$infix}-#{$property} {
|
|
205
|
-
align-self: $property !important;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
.fwe-align-content#{$infix}-#{$property} {
|
|
209
|
-
align-content: $property !important;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
.fwe-justify-items#{$infix}-#{$property} {
|
|
213
|
-
justify-items: $property !important;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.fwe-justify-self#{$infix}-#{$property} {
|
|
217
|
-
justify-self: $property !important;
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
@each $property in $positional-keywords {
|
|
222
|
-
.fwe-justify-items#{$infix}-#{$property} {
|
|
223
|
-
justify-items: $property !important;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
.fwe-justify-self#{$infix}-#{$property} {
|
|
227
|
-
justify-self: $property !important;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
@each $property in $content-keywords {
|
|
232
|
-
.fwe-align-content#{$infix}-#{$property} {
|
|
233
|
-
align-content: $property !important;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
.fwe-justify-content#{$infix}-#{$property} {
|
|
237
|
-
justify-content: $property !important;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
@each $property in $justify-keywords {
|
|
242
|
-
.fwe-justify-items#{$infix}-#{$property} {
|
|
243
|
-
justify-items: $property !important;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
.fwe-justify-self#{$infix}-#{$property} {
|
|
247
|
-
justify-self: $property !important;
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
@each $property in $legacy-keywords {
|
|
252
|
-
.fwe-justify-items#{$infix}-#{$property} {
|
|
253
|
-
justify-items: $property !important;
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
@each $breakpoint in map.keys(variables.$grid-breakpoints) {
|
|
259
|
-
$infix: utils.breakpoint-infix($breakpoint, variables.$grid-breakpoints);
|
|
260
|
-
$size: map.get(variables.$grid-breakpoints, $breakpoint);
|
|
261
|
-
|
|
262
|
-
@if $size == 0 {
|
|
263
|
-
@include flex-helpers();
|
|
264
|
-
} @else {
|
|
265
|
-
@media (min-width: $size) {
|
|
266
|
-
@include flex-helpers($infix);
|
|
267
|
-
}
|
|
268
|
-
}
|
|
269
|
-
}
|
|
1
|
+
@use "sass:list";
|
|
2
|
+
@use "sass:map";
|
|
3
|
+
@use "utils";
|
|
4
|
+
@use "variables";
|
|
5
|
+
|
|
6
|
+
$basic-keywords: normal, stretch, center, start, end, flex-start, flex-end;
|
|
7
|
+
$baseline-keywords: baseline, first baseline, last baseline, safe center, unsafe center;
|
|
8
|
+
$positional-keywords: left, right;
|
|
9
|
+
$content-keywords: space-between, space-around, space-evenly;
|
|
10
|
+
$justify-keywords: auto, self-start, self-end;
|
|
11
|
+
$legacy-keywords: legacy right, legacy left, legacy center;
|
|
12
|
+
$flex-properties: (
|
|
13
|
+
auto: (
|
|
14
|
+
flex,
|
|
15
|
+
auto
|
|
16
|
+
),
|
|
17
|
+
grow-0: (
|
|
18
|
+
flex-grow,
|
|
19
|
+
0
|
|
20
|
+
),
|
|
21
|
+
grow-1: (
|
|
22
|
+
flex-grow,
|
|
23
|
+
1
|
|
24
|
+
),
|
|
25
|
+
grow-2: (
|
|
26
|
+
flex-grow,
|
|
27
|
+
2
|
|
28
|
+
),
|
|
29
|
+
grow-3: (
|
|
30
|
+
flex-grow,
|
|
31
|
+
3
|
|
32
|
+
),
|
|
33
|
+
shrink-0: (
|
|
34
|
+
flex-shrink,
|
|
35
|
+
0
|
|
36
|
+
),
|
|
37
|
+
shrink-1: (
|
|
38
|
+
flex-shrink,
|
|
39
|
+
1
|
|
40
|
+
),
|
|
41
|
+
shrink-2: (
|
|
42
|
+
flex-shrink,
|
|
43
|
+
2
|
|
44
|
+
),
|
|
45
|
+
shrink-3: (
|
|
46
|
+
flex-shrink,
|
|
47
|
+
3
|
|
48
|
+
),
|
|
49
|
+
basis-0: (
|
|
50
|
+
flex-basis,
|
|
51
|
+
0
|
|
52
|
+
),
|
|
53
|
+
basis-auto: (
|
|
54
|
+
flex-basis,
|
|
55
|
+
auto
|
|
56
|
+
),
|
|
57
|
+
basis-fill: (
|
|
58
|
+
flex-basis,
|
|
59
|
+
fill
|
|
60
|
+
),
|
|
61
|
+
basis-max-content: (
|
|
62
|
+
flex-basis,
|
|
63
|
+
max-content
|
|
64
|
+
),
|
|
65
|
+
basis-min-content: (
|
|
66
|
+
flex-basis,
|
|
67
|
+
min-content
|
|
68
|
+
),
|
|
69
|
+
basis-fit-content: (
|
|
70
|
+
flex-basis,
|
|
71
|
+
fit-content
|
|
72
|
+
),
|
|
73
|
+
basis-content: (
|
|
74
|
+
flex-basis,
|
|
75
|
+
content
|
|
76
|
+
),
|
|
77
|
+
wrap: (
|
|
78
|
+
flex-wrap,
|
|
79
|
+
wrap
|
|
80
|
+
),
|
|
81
|
+
wrap-reverse: (
|
|
82
|
+
flex-wrap,
|
|
83
|
+
wrap-reverse
|
|
84
|
+
),
|
|
85
|
+
nowrap: (
|
|
86
|
+
flex-wrap,
|
|
87
|
+
nowrap
|
|
88
|
+
),
|
|
89
|
+
row-nowrap: (
|
|
90
|
+
flex-flow,
|
|
91
|
+
row nowrap
|
|
92
|
+
),
|
|
93
|
+
column-wrap: (
|
|
94
|
+
flex-flow,
|
|
95
|
+
column wrap
|
|
96
|
+
),
|
|
97
|
+
column-reverse-wrap-reverse: (
|
|
98
|
+
flex-flow,
|
|
99
|
+
column-reverse wrap-reverse
|
|
100
|
+
),
|
|
101
|
+
row: (
|
|
102
|
+
flex-direction,
|
|
103
|
+
row
|
|
104
|
+
),
|
|
105
|
+
row-reverse: (
|
|
106
|
+
flex-direction,
|
|
107
|
+
row-reverse
|
|
108
|
+
),
|
|
109
|
+
column: (
|
|
110
|
+
flex-direction,
|
|
111
|
+
column
|
|
112
|
+
),
|
|
113
|
+
column-reverse: (
|
|
114
|
+
flex-direction,
|
|
115
|
+
column-reverse
|
|
116
|
+
)
|
|
117
|
+
) !default;
|
|
118
|
+
|
|
119
|
+
@mixin flex-helpers($infix: "") {
|
|
120
|
+
.fwe-ml#{$infix}-auto {
|
|
121
|
+
margin-left: auto !important;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.fwe-mr#{$infix}-auto {
|
|
125
|
+
margin-right: auto !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.fwe-mt#{$infix}-auto {
|
|
129
|
+
margin-top: auto !important;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.fwe-mb#{$infix}-auto {
|
|
133
|
+
margin-bottom: auto !important;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.fwe-order#{$infix}-first {
|
|
137
|
+
order: -1;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.fwe-order#{$infix}-last {
|
|
141
|
+
order: 6;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.fwe-order#{$infix}-1 {
|
|
145
|
+
order: 1;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.fwe-order#{$infix}-2 {
|
|
149
|
+
order: 2;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.fwe-order#{$infix}-3 {
|
|
153
|
+
order: 3;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.fwe-order#{$infix}-4 {
|
|
157
|
+
order: 4;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.fwe-order#{$infix}-5 {
|
|
161
|
+
order: 5;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
@each $classname, $properties in $flex-properties {
|
|
165
|
+
$property: list.nth($properties, 1);
|
|
166
|
+
$value: list.nth($properties, 2);
|
|
167
|
+
|
|
168
|
+
.fwe-flex#{$infix}-#{$classname} {
|
|
169
|
+
#{$property}: $value !important;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
@each $property in $basic-keywords {
|
|
174
|
+
.fwe-align-items#{$infix}-#{$property} {
|
|
175
|
+
align-items: $property !important;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.fwe-align-self#{$infix}-#{$property} {
|
|
179
|
+
align-self: $property !important;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.fwe-align-content#{$infix}-#{$property} {
|
|
183
|
+
align-content: $property !important;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.fwe-justify-items#{$infix}-#{$property} {
|
|
187
|
+
justify-items: $property !important;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.fwe-justify-self#{$infix}-#{$property} {
|
|
191
|
+
justify-self: $property !important;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.fwe-justify-content#{$infix}-#{$property} {
|
|
195
|
+
justify-content: $property !important;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
@each $property in $baseline-keywords {
|
|
200
|
+
.fwe-align-items#{$infix}-#{$property} {
|
|
201
|
+
align-items: $property !important;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.fwe-align-self#{$infix}-#{$property} {
|
|
205
|
+
align-self: $property !important;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.fwe-align-content#{$infix}-#{$property} {
|
|
209
|
+
align-content: $property !important;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.fwe-justify-items#{$infix}-#{$property} {
|
|
213
|
+
justify-items: $property !important;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.fwe-justify-self#{$infix}-#{$property} {
|
|
217
|
+
justify-self: $property !important;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
@each $property in $positional-keywords {
|
|
222
|
+
.fwe-justify-items#{$infix}-#{$property} {
|
|
223
|
+
justify-items: $property !important;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.fwe-justify-self#{$infix}-#{$property} {
|
|
227
|
+
justify-self: $property !important;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
@each $property in $content-keywords {
|
|
232
|
+
.fwe-align-content#{$infix}-#{$property} {
|
|
233
|
+
align-content: $property !important;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.fwe-justify-content#{$infix}-#{$property} {
|
|
237
|
+
justify-content: $property !important;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
@each $property in $justify-keywords {
|
|
242
|
+
.fwe-justify-items#{$infix}-#{$property} {
|
|
243
|
+
justify-items: $property !important;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.fwe-justify-self#{$infix}-#{$property} {
|
|
247
|
+
justify-self: $property !important;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
@each $property in $legacy-keywords {
|
|
252
|
+
.fwe-justify-items#{$infix}-#{$property} {
|
|
253
|
+
justify-items: $property !important;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
@each $breakpoint in map.keys(variables.$grid-breakpoints) {
|
|
259
|
+
$infix: utils.breakpoint-infix($breakpoint, variables.$grid-breakpoints);
|
|
260
|
+
$size: map.get(variables.$grid-breakpoints, $breakpoint);
|
|
261
|
+
|
|
262
|
+
@if $size == 0 {
|
|
263
|
+
@include flex-helpers();
|
|
264
|
+
} @else {
|
|
265
|
+
@media (min-width: $size) {
|
|
266
|
+
@include flex-helpers($infix);
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|