@festo-ui/web-essentials 8.2.0-dev.630 → 8.2.0-dev.638

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.
Files changed (78) hide show
  1. package/README.md +83 -83
  2. package/dist/css/festo-web-essentials.css +9 -12
  3. package/dist/css/festo-web-essentials.css.map +1 -1
  4. package/dist/css/festo-web-essentials.min.css +12 -12
  5. package/dist/css/festo-web-essentials.min.css.map +1 -1
  6. package/dist/css/light/festo-web-essentials-light.css +0 -3
  7. package/dist/css/light/festo-web-essentials-light.css.map +1 -1
  8. package/dist/css/themes/flatpickr/festo.css +1 -1
  9. package/dist/css/themes/flatpickr/festo.min.css +1 -1
  10. package/dist/scss/_badge.scss +49 -49
  11. package/dist/scss/_border.scss +86 -86
  12. package/dist/scss/_bottom-navigation.scss +47 -47
  13. package/dist/scss/_bottom-sheet.scss +116 -116
  14. package/dist/scss/_colors.scss +11 -11
  15. package/dist/scss/_display.scss +63 -63
  16. package/dist/scss/_flex.scss +269 -269
  17. package/dist/scss/_grid.scss +44 -44
  18. package/dist/scss/_layout.scss +64 -64
  19. package/dist/scss/_list.scss +211 -211
  20. package/dist/scss/_misc.scss +51 -51
  21. package/dist/scss/_mixins.scss +51 -51
  22. package/dist/scss/_modal.scss +233 -233
  23. package/dist/scss/_normalize.scss +369 -369
  24. package/dist/scss/_pagination.scss +124 -124
  25. package/dist/scss/_rfs.scss +177 -177
  26. package/dist/scss/_segment.scss +146 -146
  27. package/dist/scss/_sidebar-overlay.scss +51 -51
  28. package/dist/scss/_slider.scss +150 -150
  29. package/dist/scss/_snackbar.scss +159 -159
  30. package/dist/scss/_spacing.scss +51 -51
  31. package/dist/scss/_switch.scss +145 -145
  32. package/dist/scss/_text-input.scss +191 -191
  33. package/dist/scss/_text-link.scss +52 -52
  34. package/dist/scss/_toolbar.scss +83 -83
  35. package/dist/scss/_type.scss +50 -50
  36. package/dist/scss/_utils.scss +9 -9
  37. package/dist/scss/festo-web-essentials.scss +1 -1
  38. package/dist/scss/light/_border-light.scss +75 -75
  39. package/dist/scss/light/_flex-light.scss +258 -258
  40. package/dist/scss/light/_spacing-light.scss +52 -52
  41. package/dist/scss/light/festo-web-essentials-light.scss +59 -59
  42. package/dist/scss/organisms/_header-modul.scss +111 -111
  43. package/dist/scss/organisms/_teaser.scss +96 -96
  44. package/dist/scss/themes/flatpickr/festo.scss +1 -1
  45. package/package.json +10 -16
  46. package/scss/_badge.scss +49 -49
  47. package/scss/_border.scss +86 -86
  48. package/scss/_bottom-navigation.scss +47 -47
  49. package/scss/_bottom-sheet.scss +116 -116
  50. package/scss/_colors.scss +11 -11
  51. package/scss/_display.scss +63 -63
  52. package/scss/_flex.scss +269 -269
  53. package/scss/_grid.scss +44 -44
  54. package/scss/_layout.scss +64 -64
  55. package/scss/_list.scss +211 -211
  56. package/scss/_misc.scss +51 -51
  57. package/scss/_mixins.scss +51 -51
  58. package/scss/_modal.scss +233 -233
  59. package/scss/_normalize.scss +369 -369
  60. package/scss/_pagination.scss +124 -124
  61. package/scss/_rfs.scss +177 -177
  62. package/scss/_segment.scss +146 -146
  63. package/scss/_sidebar-overlay.scss +51 -51
  64. package/scss/_slider.scss +150 -150
  65. package/scss/_snackbar.scss +159 -159
  66. package/scss/_spacing.scss +51 -51
  67. package/scss/_switch.scss +145 -145
  68. package/scss/_text-input.scss +191 -191
  69. package/scss/_text-link.scss +52 -52
  70. package/scss/_toolbar.scss +83 -83
  71. package/scss/_type.scss +50 -50
  72. package/scss/_utils.scss +9 -9
  73. package/scss/light/_border-light.scss +75 -75
  74. package/scss/light/_flex-light.scss +258 -258
  75. package/scss/light/_spacing-light.scss +52 -52
  76. package/scss/light/festo-web-essentials-light.scss +59 -59
  77. package/scss/organisms/_header-modul.scss +111 -111
  78. package/scss/organisms/_teaser.scss +96 -96
@@ -1,369 +1,369 @@
1
- @use "rfs";
2
- @use "variables";
3
-
4
- // Normalization of HTML elements, manually forked from Normalize.css to remove
5
- // styles targeting irrelevant browsers while applying new styles.
6
- // Normalize is licensed MIT. https://github.com/necolas/normalize.css
7
-
8
- // The specified width and height include the padding and borders
9
- * {
10
- box-sizing: border-box;
11
- }
12
-
13
- /* Document
14
- ========================================================================== */
15
-
16
- /**
17
- * 1. Correct the line height in all browsers.
18
- * 2. Prevent adjustments of font size after orientation changes in iOS.
19
- */
20
-
21
- html {
22
- line-height: variables.$line-height-base; /* 1.5 */
23
- -webkit-text-size-adjust: 100%; /* 2 */
24
- }
25
-
26
- /* Sections
27
- ========================================================================== */
28
-
29
- /**
30
- * Remove the margin in all browsers.
31
- */
32
-
33
- body {
34
- margin: 0;
35
- font-family: variables.$font-family-base;
36
- font-feature-settings: variables.$font-feature-settings;
37
- font-size: variables.$font-size-base;
38
- font-weight: variables.$font-weight-base;
39
- color: variables.$text;
40
- background: variables.$background;
41
- }
42
-
43
- /**
44
- * Render the `main` element consistently in IE.
45
- */
46
-
47
- main {
48
- display: block;
49
- }
50
-
51
- /**
52
- * Correct the font size and margin on `h1` elements within `section` and
53
- * `article` contexts in Chrome, Firefox, and Safari.
54
- */
55
-
56
- h1 {
57
- font-size: 2em;
58
- margin: 0.67em 0;
59
- }
60
-
61
- /* Grouping content
62
- ========================================================================== */
63
-
64
- /**
65
- * 1. Add the correct box sizing in Firefox.
66
- * 2. Show the overflow in Edge and IE.
67
- */
68
-
69
- hr {
70
- box-sizing: content-box; /* 1 */
71
- height: 0; /* 1 */
72
- overflow: visible; /* 2 */
73
- border: none;
74
- border-bottom: 1px solid variables.$border;
75
- }
76
-
77
- /**
78
- * 1. Correct the inheritance and scaling of font size in all browsers.
79
- * 2. Correct the odd `em` font sizing in all browsers.
80
- */
81
-
82
- pre {
83
- font-family: variables.$font-family-monospace; /* 1 */
84
- font-size: 1em; /* 2 */
85
- }
86
-
87
- /* Text-level semantics
88
- ========================================================================== */
89
-
90
- /**
91
- * Remove the gray background on active links in IE 10.
92
- */
93
-
94
- a {
95
- background-color: transparent;
96
- }
97
-
98
- /**
99
- * 1. Remove the bottom border in Chrome 57-
100
- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
101
- */
102
-
103
- abbr[title] {
104
- border-bottom: none; /* 1 */
105
- text-decoration: underline; /* 2 */
106
- text-decoration: underline dotted; /* 2 */
107
- }
108
-
109
- /**
110
- * Add the correct font weight in Chrome, Edge, and Safari.
111
- */
112
-
113
- b,
114
- strong {
115
- font-weight: variables.$font-weight-bold;
116
- }
117
-
118
- /**
119
- * 1. Correct the inheritance and scaling of font size in all browsers.
120
- * 2. Correct the odd `em` font sizing in all browsers.
121
- */
122
-
123
- code,
124
- kbd,
125
- samp {
126
- font-family: variables.$font-family-monospace;
127
- @include rfs.font-size(1em); /* 2 */
128
- }
129
-
130
- /**
131
- * Add the correct font size in all browsers.
132
- */
133
-
134
- small {
135
- font-size: 87.5%;
136
- }
137
-
138
- /**
139
- * Prevent `sub` and `sup` elements from affecting the line height in
140
- * all browsers.
141
- */
142
-
143
- sub,
144
- sup {
145
- font-size: 75%;
146
- line-height: 0;
147
- position: relative;
148
- vertical-align: baseline;
149
- }
150
-
151
- sub {
152
- bottom: -0.25em;
153
- }
154
-
155
- sup {
156
- top: -0.5em;
157
- }
158
-
159
- /* Embedded content
160
- ========================================================================== */
161
-
162
- /**
163
- * Remove the border on images inside links in IE 10.
164
- */
165
-
166
- img {
167
- border-style: none;
168
- }
169
-
170
- /* Forms
171
- ========================================================================== */
172
-
173
- /**
174
- * 1. Change the font styles in all browsers.
175
- * 2. Remove the margin in Firefox and Safari.
176
- */
177
-
178
- button,
179
- input,
180
- optgroup,
181
- select,
182
- textarea {
183
- font-family: inherit; /* 1 */
184
- font-size: 100%; /* 1 */
185
- line-height: variables.$line-height-base; /* 1.5 */
186
- margin: 0; /* 2 */
187
- }
188
-
189
- /**
190
- * Show the overflow in IE.
191
- * 1. Show the overflow in Edge.
192
- */
193
-
194
- button,
195
- input {
196
- /* 1 */
197
- overflow: visible;
198
- }
199
-
200
- /**
201
- * Remove the inheritance of text transform in Edge, Firefox, and IE.
202
- * 1. Remove the inheritance of text transform in Firefox.
203
- */
204
-
205
- button,
206
- select {
207
- /* 1 */
208
- text-transform: none;
209
- }
210
-
211
- /**
212
- * Correct the inability to style clickable types in iOS and Safari.
213
- */
214
-
215
- button,
216
- [type="button"],
217
- [type="reset"],
218
- [type="submit"] {
219
- -webkit-appearance: button;
220
- }
221
-
222
- /**
223
- * Remove the inner border and padding in Firefox.
224
- */
225
-
226
- button::-moz-focus-inner,
227
- [type="button"]::-moz-focus-inner,
228
- [type="reset"]::-moz-focus-inner,
229
- [type="submit"]::-moz-focus-inner {
230
- border-style: none;
231
- padding: 0;
232
- }
233
-
234
- /**
235
- * Restore the focus styles unset by the previous rule.
236
- */
237
-
238
- button:-moz-focusring,
239
- [type="button"]:-moz-focusring,
240
- [type="reset"]:-moz-focusring,
241
- [type="submit"]:-moz-focusring {
242
- outline: 1px dotted ButtonText;
243
- }
244
-
245
- /**
246
- * Correct the padding in Firefox.
247
- */
248
-
249
- fieldset {
250
- padding: 0.35em 0.75em 0.625em;
251
- }
252
-
253
- /**
254
- * 1. Correct the text wrapping in Edge and IE.
255
- * 2. Correct the color inheritance from `fieldset` elements in IE.
256
- * 3. Remove the padding so developers are not caught out when they zero out
257
- * `fieldset` elements in all browsers.
258
- */
259
-
260
- legend {
261
- box-sizing: border-box; /* 1 */
262
- color: inherit; /* 2 */
263
- display: table; /* 1 */
264
- max-width: 100%; /* 1 */
265
- padding: 0; /* 3 */
266
- white-space: normal; /* 1 */
267
- }
268
-
269
- /**
270
- * Add the correct vertical alignment in Chrome, Firefox, and Opera.
271
- */
272
-
273
- progress {
274
- vertical-align: baseline;
275
- }
276
-
277
- /**
278
- * Remove the default vertical scrollbar in IE 10+.
279
- */
280
-
281
- textarea {
282
- overflow: auto;
283
- }
284
-
285
- /**
286
- * 1. Add the correct box sizing in IE 10.
287
- * 2. Remove the padding in IE 10.
288
- */
289
-
290
- [type="checkbox"],
291
- [type="radio"] {
292
- box-sizing: border-box; /* 1 */
293
- padding: 0; /* 2 */
294
- }
295
-
296
- /**
297
- * Correct the cursor style of increment and decrement buttons in Chrome.
298
- */
299
-
300
- [type="number"]::-webkit-inner-spin-button,
301
- [type="number"]::-webkit-outer-spin-button {
302
- height: auto;
303
- }
304
-
305
- /**
306
- * 1. Correct the odd appearance in Chrome and Safari.
307
- * 2. Correct the outline style in Safari.
308
- */
309
-
310
- [type="search"] {
311
- -webkit-appearance: textfield; /* 1 */
312
- outline-offset: -2px; /* 2 */
313
- }
314
-
315
- /**
316
- * Remove the inner padding in Chrome and Safari on macOS.
317
- */
318
-
319
- [type="search"]::-webkit-search-decoration {
320
- -webkit-appearance: none;
321
- }
322
-
323
- /**
324
- * 1. Correct the inability to style clickable types in iOS and Safari.
325
- * 2. Change font properties to `inherit` in Safari.
326
- */
327
-
328
- ::-webkit-file-upload-button {
329
- -webkit-appearance: button; /* 1 */
330
- font: inherit; /* 2 */
331
- }
332
-
333
- /* Interactive
334
- ========================================================================== */
335
-
336
- /*
337
- * Add the correct display in Edge, IE 10+, and Firefox.
338
- */
339
-
340
- details {
341
- display: block;
342
- }
343
-
344
- /*
345
- * Add the correct display in all browsers.
346
- */
347
-
348
- summary {
349
- display: list-item;
350
- }
351
-
352
- /* Misc
353
- ========================================================================== */
354
-
355
- /**
356
- * Add the correct display in IE 10+.
357
- */
358
-
359
- template {
360
- display: none;
361
- }
362
-
363
- /**
364
- * Add the correct display in IE 10.
365
- */
366
-
367
- [hidden] {
368
- display: none;
369
- }
1
+ @use "rfs";
2
+ @use "variables";
3
+
4
+ // Normalization of HTML elements, manually forked from Normalize.css to remove
5
+ // styles targeting irrelevant browsers while applying new styles.
6
+ // Normalize is licensed MIT. https://github.com/necolas/normalize.css
7
+
8
+ // The specified width and height include the padding and borders
9
+ * {
10
+ box-sizing: border-box;
11
+ }
12
+
13
+ /* Document
14
+ ========================================================================== */
15
+
16
+ /**
17
+ * 1. Correct the line height in all browsers.
18
+ * 2. Prevent adjustments of font size after orientation changes in iOS.
19
+ */
20
+
21
+ html {
22
+ line-height: variables.$line-height-base; /* 1.5 */
23
+ -webkit-text-size-adjust: 100%; /* 2 */
24
+ }
25
+
26
+ /* Sections
27
+ ========================================================================== */
28
+
29
+ /**
30
+ * Remove the margin in all browsers.
31
+ */
32
+
33
+ body {
34
+ margin: 0;
35
+ font-family: variables.$font-family-base;
36
+ font-feature-settings: variables.$font-feature-settings;
37
+ font-size: variables.$font-size-base;
38
+ font-weight: variables.$font-weight-base;
39
+ color: variables.$text;
40
+ background: variables.$background;
41
+ }
42
+
43
+ /**
44
+ * Render the `main` element consistently in IE.
45
+ */
46
+
47
+ main {
48
+ display: block;
49
+ }
50
+
51
+ /**
52
+ * Correct the font size and margin on `h1` elements within `section` and
53
+ * `article` contexts in Chrome, Firefox, and Safari.
54
+ */
55
+
56
+ h1 {
57
+ font-size: 2em;
58
+ margin: 0.67em 0;
59
+ }
60
+
61
+ /* Grouping content
62
+ ========================================================================== */
63
+
64
+ /**
65
+ * 1. Add the correct box sizing in Firefox.
66
+ * 2. Show the overflow in Edge and IE.
67
+ */
68
+
69
+ hr {
70
+ box-sizing: content-box; /* 1 */
71
+ height: 0; /* 1 */
72
+ overflow: visible; /* 2 */
73
+ border: none;
74
+ border-bottom: 1px solid variables.$border;
75
+ }
76
+
77
+ /**
78
+ * 1. Correct the inheritance and scaling of font size in all browsers.
79
+ * 2. Correct the odd `em` font sizing in all browsers.
80
+ */
81
+
82
+ pre {
83
+ font-family: variables.$font-family-monospace; /* 1 */
84
+ font-size: 1em; /* 2 */
85
+ }
86
+
87
+ /* Text-level semantics
88
+ ========================================================================== */
89
+
90
+ /**
91
+ * Remove the gray background on active links in IE 10.
92
+ */
93
+
94
+ a {
95
+ background-color: transparent;
96
+ }
97
+
98
+ /**
99
+ * 1. Remove the bottom border in Chrome 57-
100
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
101
+ */
102
+
103
+ abbr[title] {
104
+ border-bottom: none; /* 1 */
105
+ text-decoration: underline; /* 2 */
106
+ text-decoration: underline dotted; /* 2 */
107
+ }
108
+
109
+ /**
110
+ * Add the correct font weight in Chrome, Edge, and Safari.
111
+ */
112
+
113
+ b,
114
+ strong {
115
+ font-weight: variables.$font-weight-bold;
116
+ }
117
+
118
+ /**
119
+ * 1. Correct the inheritance and scaling of font size in all browsers.
120
+ * 2. Correct the odd `em` font sizing in all browsers.
121
+ */
122
+
123
+ code,
124
+ kbd,
125
+ samp {
126
+ font-family: variables.$font-family-monospace;
127
+ @include rfs.font-size(1em); /* 2 */
128
+ }
129
+
130
+ /**
131
+ * Add the correct font size in all browsers.
132
+ */
133
+
134
+ small {
135
+ font-size: 87.5%;
136
+ }
137
+
138
+ /**
139
+ * Prevent `sub` and `sup` elements from affecting the line height in
140
+ * all browsers.
141
+ */
142
+
143
+ sub,
144
+ sup {
145
+ font-size: 75%;
146
+ line-height: 0;
147
+ position: relative;
148
+ vertical-align: baseline;
149
+ }
150
+
151
+ sub {
152
+ bottom: -0.25em;
153
+ }
154
+
155
+ sup {
156
+ top: -0.5em;
157
+ }
158
+
159
+ /* Embedded content
160
+ ========================================================================== */
161
+
162
+ /**
163
+ * Remove the border on images inside links in IE 10.
164
+ */
165
+
166
+ img {
167
+ border-style: none;
168
+ }
169
+
170
+ /* Forms
171
+ ========================================================================== */
172
+
173
+ /**
174
+ * 1. Change the font styles in all browsers.
175
+ * 2. Remove the margin in Firefox and Safari.
176
+ */
177
+
178
+ button,
179
+ input,
180
+ optgroup,
181
+ select,
182
+ textarea {
183
+ font-family: inherit; /* 1 */
184
+ font-size: 100%; /* 1 */
185
+ line-height: variables.$line-height-base; /* 1.5 */
186
+ margin: 0; /* 2 */
187
+ }
188
+
189
+ /**
190
+ * Show the overflow in IE.
191
+ * 1. Show the overflow in Edge.
192
+ */
193
+
194
+ button,
195
+ input {
196
+ /* 1 */
197
+ overflow: visible;
198
+ }
199
+
200
+ /**
201
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
202
+ * 1. Remove the inheritance of text transform in Firefox.
203
+ */
204
+
205
+ button,
206
+ select {
207
+ /* 1 */
208
+ text-transform: none;
209
+ }
210
+
211
+ /**
212
+ * Correct the inability to style clickable types in iOS and Safari.
213
+ */
214
+
215
+ button,
216
+ [type="button"],
217
+ [type="reset"],
218
+ [type="submit"] {
219
+ -webkit-appearance: button;
220
+ }
221
+
222
+ /**
223
+ * Remove the inner border and padding in Firefox.
224
+ */
225
+
226
+ button::-moz-focus-inner,
227
+ [type="button"]::-moz-focus-inner,
228
+ [type="reset"]::-moz-focus-inner,
229
+ [type="submit"]::-moz-focus-inner {
230
+ border-style: none;
231
+ padding: 0;
232
+ }
233
+
234
+ /**
235
+ * Restore the focus styles unset by the previous rule.
236
+ */
237
+
238
+ button:-moz-focusring,
239
+ [type="button"]:-moz-focusring,
240
+ [type="reset"]:-moz-focusring,
241
+ [type="submit"]:-moz-focusring {
242
+ outline: 1px dotted ButtonText;
243
+ }
244
+
245
+ /**
246
+ * Correct the padding in Firefox.
247
+ */
248
+
249
+ fieldset {
250
+ padding: 0.35em 0.75em 0.625em;
251
+ }
252
+
253
+ /**
254
+ * 1. Correct the text wrapping in Edge and IE.
255
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
256
+ * 3. Remove the padding so developers are not caught out when they zero out
257
+ * `fieldset` elements in all browsers.
258
+ */
259
+
260
+ legend {
261
+ box-sizing: border-box; /* 1 */
262
+ color: inherit; /* 2 */
263
+ display: table; /* 1 */
264
+ max-width: 100%; /* 1 */
265
+ padding: 0; /* 3 */
266
+ white-space: normal; /* 1 */
267
+ }
268
+
269
+ /**
270
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
271
+ */
272
+
273
+ progress {
274
+ vertical-align: baseline;
275
+ }
276
+
277
+ /**
278
+ * Remove the default vertical scrollbar in IE 10+.
279
+ */
280
+
281
+ textarea {
282
+ overflow: auto;
283
+ }
284
+
285
+ /**
286
+ * 1. Add the correct box sizing in IE 10.
287
+ * 2. Remove the padding in IE 10.
288
+ */
289
+
290
+ [type="checkbox"],
291
+ [type="radio"] {
292
+ box-sizing: border-box; /* 1 */
293
+ padding: 0; /* 2 */
294
+ }
295
+
296
+ /**
297
+ * Correct the cursor style of increment and decrement buttons in Chrome.
298
+ */
299
+
300
+ [type="number"]::-webkit-inner-spin-button,
301
+ [type="number"]::-webkit-outer-spin-button {
302
+ height: auto;
303
+ }
304
+
305
+ /**
306
+ * 1. Correct the odd appearance in Chrome and Safari.
307
+ * 2. Correct the outline style in Safari.
308
+ */
309
+
310
+ [type="search"] {
311
+ -webkit-appearance: textfield; /* 1 */
312
+ outline-offset: -2px; /* 2 */
313
+ }
314
+
315
+ /**
316
+ * Remove the inner padding in Chrome and Safari on macOS.
317
+ */
318
+
319
+ [type="search"]::-webkit-search-decoration {
320
+ -webkit-appearance: none;
321
+ }
322
+
323
+ /**
324
+ * 1. Correct the inability to style clickable types in iOS and Safari.
325
+ * 2. Change font properties to `inherit` in Safari.
326
+ */
327
+
328
+ ::-webkit-file-upload-button {
329
+ -webkit-appearance: button; /* 1 */
330
+ font: inherit; /* 2 */
331
+ }
332
+
333
+ /* Interactive
334
+ ========================================================================== */
335
+
336
+ /*
337
+ * Add the correct display in Edge, IE 10+, and Firefox.
338
+ */
339
+
340
+ details {
341
+ display: block;
342
+ }
343
+
344
+ /*
345
+ * Add the correct display in all browsers.
346
+ */
347
+
348
+ summary {
349
+ display: list-item;
350
+ }
351
+
352
+ /* Misc
353
+ ========================================================================== */
354
+
355
+ /**
356
+ * Add the correct display in IE 10+.
357
+ */
358
+
359
+ template {
360
+ display: none;
361
+ }
362
+
363
+ /**
364
+ * Add the correct display in IE 10.
365
+ */
366
+
367
+ [hidden] {
368
+ display: none;
369
+ }