@vaadin/vaadin-lumo-styles 25.0.0-alpha5 → 25.0.0-alpha7

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 (223) hide show
  1. package/components/accordion-heading.css +14 -0
  2. package/components/accordion-panel.css +15 -0
  3. package/components/accordion.css +7 -0
  4. package/components/app-layout.css +11 -0
  5. package/components/avatar-group.css +31 -0
  6. package/components/avatar.css +17 -0
  7. package/components/button.css +12 -0
  8. package/components/card.css +50 -0
  9. package/components/charts.css +11 -0
  10. package/components/checkbox-group.css +23 -0
  11. package/components/checkbox.css +14 -0
  12. package/components/combo-box.css +47 -0
  13. package/components/confirm-dialog.css +17 -0
  14. package/components/context-menu.css +32 -0
  15. package/components/crud.css +40 -0
  16. package/components/custom-field.css +20 -0
  17. package/components/dashboard.css +34 -0
  18. package/components/date-picker.css +49 -0
  19. package/components/date-time-picker.css +28 -0
  20. package/components/details-summary.css +11 -0
  21. package/components/details.css +12 -0
  22. package/components/dialog.css +16 -0
  23. package/components/drawer-toggle.css +14 -0
  24. package/components/email-field.css +25 -0
  25. package/components/field-highlighter.css +22 -0
  26. package/components/form-item.css +11 -0
  27. package/components/form-layout.css +11 -0
  28. package/components/grid-filter-column.css +6 -0
  29. package/components/grid-filter.css +12 -0
  30. package/components/grid-pro-edit-column.css +48 -0
  31. package/components/grid-pro.css +14 -0
  32. package/components/grid-selection-column.css +6 -0
  33. package/components/grid-sort-column.css +6 -0
  34. package/components/grid-sorter.css +19 -0
  35. package/components/grid-tree-column.css +6 -0
  36. package/components/grid-tree-toggle.css +11 -0
  37. package/components/grid.css +11 -0
  38. package/components/horizontal-layout.css +11 -0
  39. package/components/icon.css +11 -0
  40. package/components/input-container.css +11 -0
  41. package/components/integer-field.css +25 -0
  42. package/components/item.css +11 -0
  43. package/components/list-box.css +11 -0
  44. package/components/login-form.css +14 -0
  45. package/components/login.css +15 -0
  46. package/components/map.css +11 -0
  47. package/components/master-detail-layout.css +11 -0
  48. package/components/menu-bar.css +47 -0
  49. package/components/message-input.css +13 -0
  50. package/components/message-list.css +6 -0
  51. package/components/message.css +12 -0
  52. package/components/multi-select-combo-box.css +61 -0
  53. package/components/notification.css +15 -0
  54. package/components/number-field.css +25 -0
  55. package/components/overlay.css +11 -0
  56. package/components/password-field.css +32 -0
  57. package/components/popover.css +14 -0
  58. package/components/progress-bar.css +11 -0
  59. package/components/radio-button.css +14 -0
  60. package/components/radio-group.css +23 -0
  61. package/components/rich-text-editor.css +26 -0
  62. package/components/scroller.css +11 -0
  63. package/components/select.css +48 -0
  64. package/components/side-nav-item.css +14 -0
  65. package/components/side-nav.css +12 -0
  66. package/components/split-layout.css +11 -0
  67. package/components/tab.css +11 -0
  68. package/components/tabs.css +12 -0
  69. package/components/tabsheet.css +19 -0
  70. package/components/text-area.css +25 -0
  71. package/components/text-field.css +23 -0
  72. package/components/time-picker.css +43 -0
  73. package/components/tooltip.css +14 -0
  74. package/components/upload.css +28 -0
  75. package/components/vertical-layout.css +11 -0
  76. package/components.css +71 -0
  77. package/font-icons.js +28 -26
  78. package/global.css +14 -0
  79. package/lumo.css +8 -0
  80. package/mixins/input-field-shared.js +1 -2
  81. package/mixins/menu-overlay.js +0 -2
  82. package/package.json +8 -6
  83. package/props.css +12 -0
  84. package/src/components/accordion-heading.css +42 -0
  85. package/src/components/accordion-panel.css +38 -0
  86. package/src/components/app-layout.css +193 -0
  87. package/src/components/avatar-group-menu-item.css +22 -0
  88. package/src/components/avatar-group-overlay.css +15 -0
  89. package/src/components/avatar-group.css +67 -0
  90. package/src/components/avatar.css +110 -0
  91. package/src/components/button.css +335 -0
  92. package/src/components/card.css +38 -0
  93. package/src/components/chart.css +88 -0
  94. package/src/components/checkbox-group.css +18 -0
  95. package/src/components/checkbox.css +341 -0
  96. package/src/components/combo-box-item.css +18 -0
  97. package/src/components/combo-box-overlay.css +15 -0
  98. package/src/components/combo-box.css +14 -0
  99. package/src/components/confirm-dialog-overlay.css +59 -0
  100. package/src/components/context-menu-item.css +39 -0
  101. package/src/components/context-menu-list-box.css +40 -0
  102. package/src/components/context-menu-overlay.css +41 -0
  103. package/src/components/crud-dialog-overlay.css +57 -0
  104. package/src/components/crud-edit.css +30 -0
  105. package/src/components/crud.css +157 -0
  106. package/src/components/custom-field.css +102 -0
  107. package/src/components/dashboard-layout.css +94 -0
  108. package/src/components/dashboard-section.css +113 -0
  109. package/src/components/dashboard-widget.css +224 -0
  110. package/src/components/dashboard.css +23 -0
  111. package/src/components/date-picker-month-calendar.css +192 -0
  112. package/src/components/date-picker-overlay-content.css +161 -0
  113. package/src/components/date-picker-overlay.css +60 -0
  114. package/src/components/date-picker-year.css +35 -0
  115. package/src/components/date-picker.css +41 -0
  116. package/src/components/date-time-picker.css +36 -0
  117. package/src/components/details-summary.css +131 -0
  118. package/src/components/details.css +37 -0
  119. package/src/components/dialog-overlay.css +173 -0
  120. package/src/components/drawer-toggle.css +51 -0
  121. package/src/components/email-field.css +26 -0
  122. package/src/components/field-outline.css +51 -0
  123. package/src/components/form-item.css +36 -0
  124. package/src/components/form-layout.css +11 -0
  125. package/src/components/grid-filter.css +16 -0
  126. package/src/components/grid-pro-edit-select.css +19 -0
  127. package/src/components/grid-pro.css +84 -0
  128. package/src/components/grid-sorter.css +70 -0
  129. package/src/components/grid-tree-toggle.css +104 -0
  130. package/src/components/grid.css +755 -0
  131. package/src/components/horizontal-layout.css +38 -0
  132. package/src/components/icon.css +47 -0
  133. package/src/components/input-container.css +230 -0
  134. package/src/components/item.css +94 -0
  135. package/src/components/list-box.css +31 -0
  136. package/src/components/login-form-wrapper.css +128 -0
  137. package/src/components/login-overlay-wrapper.css +179 -0
  138. package/src/components/map.css +437 -0
  139. package/src/components/master-detail-layout.css +26 -0
  140. package/src/components/menu-bar-button.css +128 -0
  141. package/src/components/menu-bar-item.css +24 -0
  142. package/src/components/menu-bar-overlay.css +10 -0
  143. package/src/components/menu-bar.css +31 -0
  144. package/src/components/message-input.css +30 -0
  145. package/src/components/message.css +82 -0
  146. package/src/components/multi-select-combo-box-chip.css +113 -0
  147. package/src/components/multi-select-combo-box-container.css +20 -0
  148. package/src/components/multi-select-combo-box-item.css +13 -0
  149. package/src/components/multi-select-combo-box-overlay.css +18 -0
  150. package/src/components/multi-select-combo-box.css +98 -0
  151. package/src/components/notification-card.css +228 -0
  152. package/src/components/notification-container.css +53 -0
  153. package/src/components/number-field.css +53 -0
  154. package/src/components/password-field-button.css +19 -0
  155. package/src/components/password-field.css +24 -0
  156. package/src/components/popover-overlay.css +162 -0
  157. package/src/components/progress-bar.css +295 -0
  158. package/src/components/radio-button.css +156 -0
  159. package/src/components/radio-group.css +18 -0
  160. package/src/components/rich-text-editor-popup-overlay.css +27 -0
  161. package/src/components/rich-text-editor.css +485 -0
  162. package/src/components/scroller.css +40 -0
  163. package/src/components/select-overlay.css +54 -0
  164. package/src/components/select-value-button.css +57 -0
  165. package/src/components/select.css +56 -0
  166. package/src/components/side-nav-item.css +170 -0
  167. package/src/components/side-nav.css +102 -0
  168. package/src/components/split-layout.css +132 -0
  169. package/src/components/tab.css +246 -0
  170. package/src/components/tabs.css +285 -0
  171. package/src/components/tabsheet.css +59 -0
  172. package/src/components/text-area.css +116 -0
  173. package/src/components/time-picker-overlay.css +15 -0
  174. package/src/components/time-picker.css +36 -0
  175. package/src/components/tooltip-overlay.css +53 -0
  176. package/src/components/upload-file-list.css +24 -0
  177. package/src/components/upload-file.css +133 -0
  178. package/src/components/upload-icon.css +14 -0
  179. package/src/components/upload.css +56 -0
  180. package/src/components/user-tag.css +48 -0
  181. package/src/components/user-tags-overlay.css +67 -0
  182. package/src/components/vertical-layout.css +38 -0
  183. package/src/global/badge.css +167 -0
  184. package/src/global/dark.css +93 -0
  185. package/src/global/style.css +93 -0
  186. package/src/global/typography.css +113 -0
  187. package/src/mixins/checkable-field.css +67 -0
  188. package/src/mixins/combo-box-loader.css +14 -0
  189. package/src/mixins/combo-box-overlay.css +30 -0
  190. package/src/mixins/dashboard-item.css +253 -0
  191. package/src/mixins/field-base.css +187 -0
  192. package/src/mixins/field-button.css +46 -0
  193. package/src/mixins/field-error-message.css +36 -0
  194. package/src/mixins/field-helper.css +62 -0
  195. package/src/mixins/field-label.css +62 -0
  196. package/src/mixins/field-required.css +26 -0
  197. package/src/mixins/grid-pro-editor.css +35 -0
  198. package/src/mixins/group-field.css +58 -0
  199. package/src/mixins/loader.css +48 -0
  200. package/src/mixins/menu-overlay-core.css +36 -0
  201. package/src/mixins/menu-overlay-ext.css +63 -0
  202. package/src/mixins/overlay.css +113 -0
  203. package/src/mixins/resizable-overlay.css +99 -0
  204. package/src/props/color.css +98 -0
  205. package/src/props/icons.css +61 -0
  206. package/src/props/reset.css +11 -0
  207. package/src/props/sizing.css +19 -0
  208. package/src/props/spacing.css +27 -0
  209. package/src/props/style.css +21 -0
  210. package/src/props/typography.css +24 -0
  211. package/src/utilities/accessibility.css +17 -0
  212. package/src/utilities/background.css +189 -0
  213. package/src/utilities/border.css +173 -0
  214. package/src/utilities/filter.css +37 -0
  215. package/src/utilities/flexbox-grid.css +781 -0
  216. package/src/utilities/layout.css +629 -0
  217. package/src/utilities/shadows.css +29 -0
  218. package/src/utilities/sizing.css +142 -0
  219. package/src/utilities/spacing.css +682 -0
  220. package/src/utilities/transition.css +46 -0
  221. package/src/utilities/typography.css +424 -0
  222. package/utility.css +17 -0
  223. package/vaadin-iconset.js +2 -0
@@ -0,0 +1,629 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2000 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ /* === Aspect ratio === */
7
+ .aspect-square {
8
+ aspect-ratio: 1 / 1;
9
+ }
10
+
11
+ .aspect-video {
12
+ aspect-ratio: 16 / 9;
13
+ }
14
+
15
+ /* === Box sizing === */
16
+ .box-border {
17
+ box-sizing: border-box;
18
+ }
19
+
20
+ .box-content {
21
+ box-sizing: content-box;
22
+ }
23
+
24
+ /* === Display === */
25
+ .block {
26
+ display: block;
27
+ }
28
+
29
+ .flex {
30
+ display: flex;
31
+ }
32
+
33
+ .grid {
34
+ display: grid;
35
+ }
36
+
37
+ .hidden {
38
+ display: none;
39
+ }
40
+
41
+ .inline {
42
+ display: inline;
43
+ }
44
+
45
+ .inline-block {
46
+ display: inline-block;
47
+ }
48
+
49
+ .inline-flex {
50
+ display: inline-flex;
51
+ }
52
+
53
+ .inline-grid {
54
+ display: inline-grid;
55
+ }
56
+
57
+ /* === Overflow === */
58
+ .overflow-auto {
59
+ overflow: auto;
60
+ }
61
+
62
+ .overflow-hidden {
63
+ overflow: hidden;
64
+ }
65
+
66
+ .overflow-scroll {
67
+ overflow: scroll;
68
+ }
69
+
70
+ /* === Position === */
71
+ .absolute {
72
+ position: absolute;
73
+ }
74
+
75
+ .fixed {
76
+ position: fixed;
77
+ }
78
+
79
+ .static {
80
+ position: static;
81
+ }
82
+
83
+ .sticky {
84
+ position: sticky;
85
+ }
86
+
87
+ .relative {
88
+ position: relative;
89
+ }
90
+
91
+ /* === Top, end, bottom, start === */
92
+ .-bottom-xs {
93
+ bottom: calc(var(--lumo-space-xs) / -1);
94
+ }
95
+
96
+ .-bottom-s {
97
+ bottom: calc(var(--lumo-space-s) / -1);
98
+ }
99
+
100
+ .-bottom-m {
101
+ bottom: calc(var(--lumo-space-m) / -1);
102
+ }
103
+
104
+ .-bottom-l {
105
+ bottom: calc(var(--lumo-space-l) / -1);
106
+ }
107
+
108
+ .-bottom-xl {
109
+ bottom: calc(var(--lumo-space-xl) / -1);
110
+ }
111
+
112
+ .-bottom-full {
113
+ bottom: -100%;
114
+ }
115
+
116
+ .bottom-0 {
117
+ bottom: 0;
118
+ }
119
+
120
+ .bottom-xs {
121
+ bottom: var(--lumo-space-xs);
122
+ }
123
+
124
+ .bottom-s {
125
+ bottom: var(--lumo-space-s);
126
+ }
127
+
128
+ .bottom-m {
129
+ bottom: var(--lumo-space-m);
130
+ }
131
+
132
+ .bottom-l {
133
+ bottom: var(--lumo-space-l);
134
+ }
135
+
136
+ .bottom-xl {
137
+ bottom: var(--lumo-space-xl);
138
+ }
139
+
140
+ .bottom-auto {
141
+ bottom: auto;
142
+ }
143
+
144
+ .bottom-full {
145
+ bottom: 100%;
146
+ }
147
+
148
+ .-end-xs {
149
+ inset-inline-end: calc(var(--lumo-space-xs) / -1);
150
+ }
151
+
152
+ .-end-s {
153
+ inset-inline-end: calc(var(--lumo-space-s) / -1);
154
+ }
155
+
156
+ .-end-m {
157
+ inset-inline-end: calc(var(--lumo-space-m) / -1);
158
+ }
159
+
160
+ .-end-l {
161
+ inset-inline-end: calc(var(--lumo-space-l) / -1);
162
+ }
163
+
164
+ .-end-xl {
165
+ inset-inline-end: calc(var(--lumo-space-xl) / -1);
166
+ }
167
+
168
+ .-end-full {
169
+ inset-inline-end: -100%;
170
+ }
171
+
172
+ .end-0 {
173
+ inset-inline-end: 0;
174
+ }
175
+
176
+ .end-xs {
177
+ inset-inline-end: var(--lumo-space-xs);
178
+ }
179
+
180
+ .end-s {
181
+ inset-inline-end: var(--lumo-space-s);
182
+ }
183
+
184
+ .end-m {
185
+ inset-inline-end: var(--lumo-space-m);
186
+ }
187
+
188
+ .end-l {
189
+ inset-inline-end: var(--lumo-space-l);
190
+ }
191
+
192
+ .end-xl {
193
+ inset-inline-end: var(--lumo-space-xl);
194
+ }
195
+
196
+ .end-auto {
197
+ inset-inline-end: auto;
198
+ }
199
+
200
+ .end-full {
201
+ inset-inline-end: 100%;
202
+ }
203
+
204
+ .-start-xs {
205
+ inset-inline-start: calc(var(--lumo-space-xs) / -1);
206
+ }
207
+
208
+ .-start-s {
209
+ inset-inline-start: calc(var(--lumo-space-s) / -1);
210
+ }
211
+
212
+ .-start-m {
213
+ inset-inline-start: calc(var(--lumo-space-m) / -1);
214
+ }
215
+
216
+ .-start-l {
217
+ inset-inline-start: calc(var(--lumo-space-l) / -1);
218
+ }
219
+
220
+ .-start-xl {
221
+ inset-inline-start: calc(var(--lumo-space-xl) / -1);
222
+ }
223
+
224
+ .-start-full {
225
+ inset-inline-start: -100%;
226
+ }
227
+
228
+ .start-0 {
229
+ inset-inline-start: 0;
230
+ }
231
+
232
+ .start-xs {
233
+ inset-inline-start: var(--lumo-space-xs);
234
+ }
235
+
236
+ .start-s {
237
+ inset-inline-start: var(--lumo-space-s);
238
+ }
239
+
240
+ .start-m {
241
+ inset-inline-start: var(--lumo-space-m);
242
+ }
243
+
244
+ .start-l {
245
+ inset-inline-start: var(--lumo-space-l);
246
+ }
247
+
248
+ .start-xl {
249
+ inset-inline-start: var(--lumo-space-xl);
250
+ }
251
+
252
+ .start-auto {
253
+ inset-inline-start: auto;
254
+ }
255
+
256
+ .start-full {
257
+ inset-inline-start: 100%;
258
+ }
259
+
260
+ .-top-xs {
261
+ top: calc(var(--lumo-space-xs) / -1);
262
+ }
263
+
264
+ .-top-s {
265
+ top: calc(var(--lumo-space-s) / -1);
266
+ }
267
+
268
+ .-top-m {
269
+ top: calc(var(--lumo-space-m) / -1);
270
+ }
271
+
272
+ .-top-l {
273
+ top: calc(var(--lumo-space-l) / -1);
274
+ }
275
+
276
+ .-top-xl {
277
+ top: calc(var(--lumo-space-xl) / -1);
278
+ }
279
+
280
+ .-top-full {
281
+ top: -100%;
282
+ }
283
+
284
+ .top-0 {
285
+ top: 0;
286
+ }
287
+
288
+ .top-xs {
289
+ top: var(--lumo-space-xs);
290
+ }
291
+
292
+ .top-s {
293
+ top: var(--lumo-space-s);
294
+ }
295
+
296
+ .top-m {
297
+ top: var(--lumo-space-m);
298
+ }
299
+
300
+ .top-l {
301
+ top: var(--lumo-space-l);
302
+ }
303
+
304
+ .top-xl {
305
+ top: var(--lumo-space-xl);
306
+ }
307
+
308
+ .top-auto {
309
+ top: auto;
310
+ }
311
+
312
+ .top-full {
313
+ top: 100%;
314
+ }
315
+
316
+ /* === Visibility === */
317
+ .invisible {
318
+ visibility: hidden;
319
+ }
320
+
321
+ .visible {
322
+ visibility: visible;
323
+ }
324
+
325
+ /* === Z-index === */
326
+ .z-0 {
327
+ z-index: 0;
328
+ }
329
+
330
+ .z-10 {
331
+ z-index: 10;
332
+ }
333
+
334
+ .z-20 {
335
+ z-index: 20;
336
+ }
337
+
338
+ .z-30 {
339
+ z-index: 30;
340
+ }
341
+
342
+ .z-40 {
343
+ z-index: 40;
344
+ }
345
+
346
+ .z-50 {
347
+ z-index: 50;
348
+ }
349
+
350
+ .z-auto {
351
+ z-index: auto;
352
+ }
353
+
354
+ /* === Responsive design === */
355
+ @media (min-width: 640px) {
356
+ /* Display */
357
+ .sm\:block {
358
+ display: block;
359
+ }
360
+
361
+ .sm\:flex {
362
+ display: flex;
363
+ }
364
+
365
+ .sm\:grid {
366
+ display: grid;
367
+ }
368
+
369
+ .sm\:hidden {
370
+ display: none;
371
+ }
372
+
373
+ .sm\:inline {
374
+ display: inline;
375
+ }
376
+
377
+ .sm\:inline-block {
378
+ display: inline-block;
379
+ }
380
+
381
+ .sm\:inline-flex {
382
+ display: inline-flex;
383
+ }
384
+
385
+ .sm\:inline-grid {
386
+ display: inline-grid;
387
+ }
388
+
389
+ /* Position */
390
+ .sm\:absolute {
391
+ position: absolute;
392
+ }
393
+
394
+ .sm\:fixed {
395
+ position: fixed;
396
+ }
397
+
398
+ .sm\:relative {
399
+ position: relative;
400
+ }
401
+
402
+ .sm\:static {
403
+ position: static;
404
+ }
405
+
406
+ .sm\:sticky {
407
+ position: sticky;
408
+ }
409
+ }
410
+ @media (min-width: 768px) {
411
+ /* Display */
412
+ .md\:block {
413
+ display: block;
414
+ }
415
+
416
+ .md\:flex {
417
+ display: flex;
418
+ }
419
+
420
+ .md\:grid {
421
+ display: grid;
422
+ }
423
+
424
+ .md\:hidden {
425
+ display: none;
426
+ }
427
+
428
+ .md\:inline {
429
+ display: inline;
430
+ }
431
+
432
+ .md\:inline-block {
433
+ display: inline-block;
434
+ }
435
+
436
+ .md\:inline-flex {
437
+ display: inline-flex;
438
+ }
439
+
440
+ .md\:inline-grid {
441
+ display: inline-grid;
442
+ }
443
+
444
+ /* Position */
445
+ .md\:absolute {
446
+ position: absolute;
447
+ }
448
+
449
+ .md\:fixed {
450
+ position: fixed;
451
+ }
452
+
453
+ .md\:relative {
454
+ position: relative;
455
+ }
456
+
457
+ .md\:static {
458
+ position: static;
459
+ }
460
+
461
+ .md\:sticky {
462
+ position: sticky;
463
+ }
464
+ }
465
+ @media (min-width: 1024px) {
466
+ /* Display */
467
+ .lg\:block {
468
+ display: block;
469
+ }
470
+
471
+ .lg\:flex {
472
+ display: flex;
473
+ }
474
+
475
+ .lg\:grid {
476
+ display: grid;
477
+ }
478
+
479
+ .lg\:hidden {
480
+ display: none;
481
+ }
482
+
483
+ .lg\:inline {
484
+ display: inline;
485
+ }
486
+
487
+ .lg\:inline-block {
488
+ display: inline-block;
489
+ }
490
+
491
+ .lg\:inline-flex {
492
+ display: inline-flex;
493
+ }
494
+
495
+ .lg\:inline-grid {
496
+ display: inline-grid;
497
+ }
498
+
499
+ /* Position */
500
+ .lg\:absolute {
501
+ position: absolute;
502
+ }
503
+
504
+ .lg\:fixed {
505
+ position: fixed;
506
+ }
507
+
508
+ .lg\:relative {
509
+ position: relative;
510
+ }
511
+
512
+ .lg\:static {
513
+ position: static;
514
+ }
515
+
516
+ .lg\:sticky {
517
+ position: sticky;
518
+ }
519
+ }
520
+ @media (min-width: 1280px) {
521
+ /* Display */
522
+ .xl\:block {
523
+ display: block;
524
+ }
525
+
526
+ .xl\:flex {
527
+ display: flex;
528
+ }
529
+
530
+ .xl\:grid {
531
+ display: grid;
532
+ }
533
+
534
+ .xl\:hidden {
535
+ display: none;
536
+ }
537
+
538
+ .xl\:inline {
539
+ display: inline;
540
+ }
541
+
542
+ .xl\:inline-block {
543
+ display: inline-block;
544
+ }
545
+
546
+ .xl\:inline-flex {
547
+ display: inline-flex;
548
+ }
549
+
550
+ .xl\:inline-grid {
551
+ display: inline-grid;
552
+ }
553
+
554
+ /* Position */
555
+ .xl\:absolute {
556
+ position: absolute;
557
+ }
558
+
559
+ .xl\:fixed {
560
+ position: fixed;
561
+ }
562
+
563
+ .xl\:relative {
564
+ position: relative;
565
+ }
566
+
567
+ .xl\:static {
568
+ position: static;
569
+ }
570
+
571
+ .xl\:sticky {
572
+ position: sticky;
573
+ }
574
+ }
575
+ @media (min-width: 1536px) {
576
+ /* Display */
577
+ .\32xl\:block {
578
+ display: block;
579
+ }
580
+
581
+ .\32xl\:flex {
582
+ display: flex;
583
+ }
584
+
585
+ .\32xl\:grid {
586
+ display: grid;
587
+ }
588
+
589
+ .\32xl\:hidden {
590
+ display: none;
591
+ }
592
+
593
+ .\32xl\:inline {
594
+ display: inline;
595
+ }
596
+
597
+ .\32xl\:inline-block {
598
+ display: inline-block;
599
+ }
600
+
601
+ .\32xl\:inline-flex {
602
+ display: inline-flex;
603
+ }
604
+
605
+ .\32xl\:inline-grid {
606
+ display: inline-grid;
607
+ }
608
+
609
+ /* Position */
610
+ .\32xl\:absolute {
611
+ position: absolute;
612
+ }
613
+
614
+ .\32xl\:fixed {
615
+ position: fixed;
616
+ }
617
+
618
+ .\32xl\:relative {
619
+ position: relative;
620
+ }
621
+
622
+ .\32xl\:static {
623
+ position: static;
624
+ }
625
+
626
+ .\32xl\:sticky {
627
+ position: sticky;
628
+ }
629
+ }
@@ -0,0 +1,29 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2000 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ /* === Box shadow === */
7
+ .shadow-none {
8
+ box-shadow: none;
9
+ }
10
+
11
+ .shadow-xs {
12
+ box-shadow: var(--lumo-box-shadow-xs);
13
+ }
14
+
15
+ .shadow-s {
16
+ box-shadow: var(--lumo-box-shadow-s);
17
+ }
18
+
19
+ .shadow-m {
20
+ box-shadow: var(--lumo-box-shadow-m);
21
+ }
22
+
23
+ .shadow-l {
24
+ box-shadow: var(--lumo-box-shadow-l);
25
+ }
26
+
27
+ .shadow-xl {
28
+ box-shadow: var(--lumo-box-shadow-xl);
29
+ }