@vaadin/vaadin-lumo-styles 25.0.0-alpha2 → 25.0.0-alpha20

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 (263) hide show
  1. package/all-imports.d.ts +0 -8
  2. package/all-imports.js +0 -18
  3. package/components/accordion-heading.css +14 -0
  4. package/components/accordion-panel.css +15 -0
  5. package/{user-colors.d.ts → components/accordion.css} +2 -3
  6. package/components/app-layout.css +11 -0
  7. package/components/avatar-group.css +31 -0
  8. package/components/avatar.css +17 -0
  9. package/components/button.css +11 -0
  10. package/components/card.css +50 -0
  11. package/components/charts.css +11 -0
  12. package/components/checkbox-group.css +23 -0
  13. package/components/checkbox.css +14 -0
  14. package/components/combo-box.css +47 -0
  15. package/components/confirm-dialog.css +17 -0
  16. package/components/context-menu.css +32 -0
  17. package/components/crud.css +40 -0
  18. package/components/custom-field.css +20 -0
  19. package/components/dashboard.css +34 -0
  20. package/components/date-picker.css +49 -0
  21. package/components/date-time-picker.css +28 -0
  22. package/components/details-summary.css +11 -0
  23. package/components/details.css +12 -0
  24. package/components/dialog.css +16 -0
  25. package/components/drawer-toggle.css +14 -0
  26. package/components/email-field.css +25 -0
  27. package/components/field-highlighter.css +22 -0
  28. package/components/form-item.css +11 -0
  29. package/components/form-layout.css +11 -0
  30. package/components/grid-filter-column.css +6 -0
  31. package/components/grid-filter.css +12 -0
  32. package/components/grid-pro-edit-column.css +48 -0
  33. package/components/grid-pro.css +14 -0
  34. package/components/grid-selection-column.css +6 -0
  35. package/components/grid-sort-column.css +6 -0
  36. package/components/grid-sorter.css +19 -0
  37. package/components/grid-tree-column.css +6 -0
  38. package/components/grid-tree-toggle.css +11 -0
  39. package/components/grid.css +11 -0
  40. package/components/horizontal-layout.css +11 -0
  41. package/components/icon.css +11 -0
  42. package/components/index.css +71 -0
  43. package/components/input-container.css +11 -0
  44. package/components/integer-field.css +25 -0
  45. package/components/item.css +11 -0
  46. package/components/list-box.css +11 -0
  47. package/components/login-form.css +14 -0
  48. package/components/login.css +15 -0
  49. package/components/map.css +11 -0
  50. package/components/master-detail-layout.css +19 -0
  51. package/components/menu-bar.css +47 -0
  52. package/components/message-input-button.css +11 -0
  53. package/components/message-input.css +13 -0
  54. package/components/message-list.css +6 -0
  55. package/components/message.css +12 -0
  56. package/components/multi-select-combo-box.css +61 -0
  57. package/components/notification.css +15 -0
  58. package/components/number-field.css +25 -0
  59. package/components/overlay.css +11 -0
  60. package/components/password-field.css +32 -0
  61. package/components/popover.css +14 -0
  62. package/components/progress-bar.css +11 -0
  63. package/components/radio-button.css +14 -0
  64. package/components/radio-group.css +23 -0
  65. package/components/rich-text-editor.css +26 -0
  66. package/components/scroller.css +11 -0
  67. package/components/select.css +48 -0
  68. package/components/side-nav-item.css +14 -0
  69. package/components/side-nav.css +12 -0
  70. package/components/split-layout.css +11 -0
  71. package/components/tab.css +11 -0
  72. package/components/tabs.css +12 -0
  73. package/components/tabsheet.css +19 -0
  74. package/components/text-area.css +25 -0
  75. package/components/text-field.css +23 -0
  76. package/components/time-picker.css +43 -0
  77. package/components/tooltip.css +14 -0
  78. package/components/upload.css +31 -0
  79. package/components/vertical-layout.css +11 -0
  80. package/dist/lumo.css +41 -0
  81. package/dist/presets/compact.css +1 -0
  82. package/dist/utility.css +1 -0
  83. package/{color-global.js → global.css} +3 -4
  84. package/{badge-global.js → lumo.css} +3 -4
  85. package/mixins/field-button.js +3 -4
  86. package/mixins/helper.js +3 -4
  87. package/mixins/input-field-shared.js +5 -9
  88. package/mixins/loader.js +3 -2
  89. package/mixins/menu-overlay.js +3 -4
  90. package/mixins/overlay.js +3 -4
  91. package/mixins/required-field.js +3 -4
  92. package/package.json +23 -14
  93. package/postcss.config.js +11 -0
  94. package/presets/compact.css +31 -0
  95. package/props.css +12 -0
  96. package/src/components/accordion-heading.css +42 -0
  97. package/src/components/accordion-panel.css +38 -0
  98. package/src/components/app-layout.css +193 -0
  99. package/src/components/avatar-group-menu-item.css +22 -0
  100. package/src/components/avatar-group-overlay.css +11 -0
  101. package/src/components/avatar-group.css +67 -0
  102. package/src/components/avatar.css +86 -0
  103. package/src/components/button.css +334 -0
  104. package/src/components/card.css +38 -0
  105. package/src/components/chart.css +86 -0
  106. package/src/components/checkbox-group.css +18 -0
  107. package/src/components/checkbox.css +340 -0
  108. package/src/components/combo-box-item.css +18 -0
  109. package/src/components/combo-box-overlay.css +15 -0
  110. package/src/components/combo-box.css +14 -0
  111. package/src/components/confirm-dialog-overlay.css +55 -0
  112. package/src/components/context-menu-item.css +39 -0
  113. package/src/components/context-menu-list-box.css +40 -0
  114. package/src/components/context-menu-overlay.css +62 -0
  115. package/src/components/crud-dialog-overlay.css +57 -0
  116. package/src/components/crud-edit.css +30 -0
  117. package/src/components/crud.css +157 -0
  118. package/src/components/custom-field.css +102 -0
  119. package/src/components/dashboard-layout.css +28 -0
  120. package/src/components/dashboard-section.css +85 -0
  121. package/src/components/dashboard-widget.css +140 -0
  122. package/src/components/dashboard.css +14 -0
  123. package/src/components/date-picker-month-calendar.css +192 -0
  124. package/src/components/date-picker-overlay-content.css +127 -0
  125. package/src/components/date-picker-overlay.css +48 -0
  126. package/src/components/date-picker-year.css +35 -0
  127. package/src/components/date-picker.css +41 -0
  128. package/src/components/date-time-picker.css +36 -0
  129. package/src/components/details-summary.css +131 -0
  130. package/src/components/details.css +37 -0
  131. package/src/components/dialog-overlay.css +164 -0
  132. package/src/components/drawer-toggle.css +51 -0
  133. package/src/components/email-field.css +26 -0
  134. package/src/components/field-outline.css +51 -0
  135. package/src/components/form-item.css +36 -0
  136. package/src/components/form-layout.css +12 -0
  137. package/src/components/grid-filter.css +16 -0
  138. package/src/components/grid-pro-edit-select.css +19 -0
  139. package/src/components/grid-pro.css +90 -0
  140. package/src/components/grid-sorter.css +70 -0
  141. package/src/components/grid-tree-toggle.css +104 -0
  142. package/src/components/grid.css +755 -0
  143. package/src/components/horizontal-layout.css +34 -0
  144. package/src/components/icon.css +11 -0
  145. package/src/components/input-container.css +228 -0
  146. package/src/components/item.css +94 -0
  147. package/src/components/list-box.css +31 -0
  148. package/src/components/login-form-wrapper.css +113 -0
  149. package/src/components/login-overlay-wrapper.css +189 -0
  150. package/src/components/map.css +182 -0
  151. package/src/components/menu-bar-button.css +128 -0
  152. package/src/components/menu-bar-item.css +23 -0
  153. package/{utility-global.js → src/components/menu-bar-overlay.css} +5 -4
  154. package/src/components/menu-bar.css +31 -0
  155. package/src/components/message-input.css +30 -0
  156. package/src/components/message.css +57 -0
  157. package/src/components/multi-select-combo-box-chip.css +113 -0
  158. package/src/components/multi-select-combo-box-container.css +20 -0
  159. package/src/components/multi-select-combo-box-item.css +13 -0
  160. package/src/components/multi-select-combo-box-overlay.css +18 -0
  161. package/src/components/multi-select-combo-box.css +102 -0
  162. package/src/components/notification-card.css +228 -0
  163. package/src/components/notification-container.css +60 -0
  164. package/src/components/number-field.css +53 -0
  165. package/src/components/password-field-button.css +19 -0
  166. package/src/components/password-field.css +24 -0
  167. package/src/components/popover-overlay.css +20 -0
  168. package/src/components/progress-bar.css +295 -0
  169. package/src/components/radio-button.css +156 -0
  170. package/src/components/radio-group.css +18 -0
  171. package/src/components/rich-text-editor-popup-overlay.css +27 -0
  172. package/src/components/rich-text-editor.css +383 -0
  173. package/src/components/scroller.css +21 -0
  174. package/src/components/select-overlay.css +54 -0
  175. package/src/components/select-value-button.css +57 -0
  176. package/src/components/select.css +73 -0
  177. package/src/components/side-nav-item.css +183 -0
  178. package/src/components/side-nav.css +102 -0
  179. package/src/components/split-layout.css +53 -0
  180. package/src/components/tab.css +246 -0
  181. package/src/components/tabs.css +285 -0
  182. package/src/components/tabsheet.css +63 -0
  183. package/src/components/text-area.css +116 -0
  184. package/src/components/time-picker-overlay.css +15 -0
  185. package/src/components/time-picker.css +36 -0
  186. package/src/components/tooltip-overlay.css +50 -0
  187. package/src/components/upload-file.css +99 -0
  188. package/src/components/upload-icon.css +20 -0
  189. package/src/components/upload.css +56 -0
  190. package/src/components/user-tag.css +48 -0
  191. package/src/components/user-tags-overlay.css +64 -0
  192. package/src/components/vertical-layout.css +34 -0
  193. package/src/global/badge.css +167 -0
  194. package/src/global/color-scheme.css +99 -0
  195. package/src/global/typography.css +113 -0
  196. package/src/mixins/checkable-field.css +67 -0
  197. package/src/mixins/combo-box-loader.css +14 -0
  198. package/src/mixins/combo-box-overlay.css +30 -0
  199. package/src/mixins/dashboard-item.css +121 -0
  200. package/src/mixins/field-base.css +187 -0
  201. package/src/mixins/field-button.css +46 -0
  202. package/src/mixins/field-error-message.css +36 -0
  203. package/src/mixins/field-helper.css +62 -0
  204. package/src/mixins/field-label.css +62 -0
  205. package/src/mixins/field-required.css +26 -0
  206. package/src/mixins/grid-pro-editor.css +35 -0
  207. package/src/mixins/group-field.css +58 -0
  208. package/src/mixins/loader.css +48 -0
  209. package/src/mixins/menu-overlay-core.css +36 -0
  210. package/src/mixins/menu-overlay-ext.css +63 -0
  211. package/src/mixins/overlay.css +130 -0
  212. package/src/mixins/resizable-overlay.css +100 -0
  213. package/src/props/color.css +98 -0
  214. package/src/props/icons.css +63 -0
  215. package/src/props/reset.css +11 -0
  216. package/src/props/sizing.css +19 -0
  217. package/src/props/spacing.css +27 -0
  218. package/src/props/style.css +21 -0
  219. package/src/props/typography.css +24 -0
  220. package/src/utilities/accessibility.css +17 -0
  221. package/src/utilities/background.css +189 -0
  222. package/src/utilities/border.css +173 -0
  223. package/src/utilities/filter.css +37 -0
  224. package/src/utilities/flexbox-grid.css +781 -0
  225. package/src/utilities/layout.css +629 -0
  226. package/src/utilities/shadows.css +29 -0
  227. package/src/utilities/sizing.css +142 -0
  228. package/src/utilities/spacing.css +682 -0
  229. package/src/utilities/transition.css +46 -0
  230. package/src/utilities/typography.css +424 -0
  231. package/utility.css +16 -0
  232. package/vaadin-iconset.js +4 -0
  233. package/auto-complete.css +0 -2582
  234. package/badge.d.ts +0 -3
  235. package/badge.js +0 -178
  236. package/color.d.ts +0 -5
  237. package/color.js +0 -221
  238. package/font-icons.js +0 -67
  239. package/global.js +0 -5
  240. package/presets/compact.js +0 -40
  241. package/sizing.d.ts +0 -3
  242. package/sizing.js +0 -29
  243. package/spacing.d.ts +0 -3
  244. package/spacing.js +0 -37
  245. package/style.d.ts +0 -5
  246. package/style.js +0 -119
  247. package/typography-global.js +0 -13
  248. package/typography.d.ts +0 -7
  249. package/typography.js +0 -129
  250. package/user-colors.js +0 -33
  251. package/utilities/accessibility.js +0 -21
  252. package/utilities/background.js +0 -156
  253. package/utilities/border.js +0 -147
  254. package/utilities/filter.js +0 -34
  255. package/utilities/flexbox-grid.js +0 -619
  256. package/utilities/layout.js +0 -504
  257. package/utilities/shadows.js +0 -28
  258. package/utilities/sizing.js +0 -121
  259. package/utilities/spacing.js +0 -542
  260. package/utilities/transition.js +0 -49
  261. package/utilities/typography.js +0 -344
  262. package/utility.d.ts +0 -3
  263. package/utility.js +0 -34
@@ -0,0 +1,189 @@
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
+ /* === Background color === */
7
+ .bg-base {
8
+ background-color: var(--lumo-base-color);
9
+ }
10
+
11
+ .bg-transparent {
12
+ background-color: transparent;
13
+ }
14
+
15
+ .bg-tint {
16
+ background-color: var(--lumo-tint);
17
+ }
18
+
19
+ .bg-tint-90 {
20
+ background-color: var(--lumo-tint-90pct);
21
+ }
22
+
23
+ .bg-tint-80 {
24
+ background-color: var(--lumo-tint-80pct);
25
+ }
26
+
27
+ .bg-tint-70 {
28
+ background-color: var(--lumo-tint-70pct);
29
+ }
30
+
31
+ .bg-tint-60 {
32
+ background-color: var(--lumo-tint-60pct);
33
+ }
34
+
35
+ .bg-tint-50 {
36
+ background-color: var(--lumo-tint-50pct);
37
+ }
38
+
39
+ .bg-tint-40 {
40
+ background-color: var(--lumo-tint-40pct);
41
+ }
42
+
43
+ .bg-tint-30 {
44
+ background-color: var(--lumo-tint-30pct);
45
+ }
46
+
47
+ .bg-tint-20 {
48
+ background-color: var(--lumo-tint-20pct);
49
+ }
50
+
51
+ .bg-tint-10 {
52
+ background-color: var(--lumo-tint-10pct);
53
+ }
54
+
55
+ .bg-tint-5 {
56
+ background-color: var(--lumo-tint-5pct);
57
+ }
58
+
59
+ .bg-shade {
60
+ background-color: var(--lumo-shade);
61
+ }
62
+
63
+ .bg-shade-90 {
64
+ background-color: var(--lumo-shade-90pct);
65
+ }
66
+
67
+ .bg-shade-80 {
68
+ background-color: var(--lumo-shade-80pct);
69
+ }
70
+
71
+ .bg-shade-70 {
72
+ background-color: var(--lumo-shade-70pct);
73
+ }
74
+
75
+ .bg-shade-60 {
76
+ background-color: var(--lumo-shade-60pct);
77
+ }
78
+
79
+ .bg-shade-50 {
80
+ background-color: var(--lumo-shade-50pct);
81
+ }
82
+
83
+ .bg-shade-40 {
84
+ background-color: var(--lumo-shade-40pct);
85
+ }
86
+
87
+ .bg-shade-30 {
88
+ background-color: var(--lumo-shade-30pct);
89
+ }
90
+
91
+ .bg-shade-20 {
92
+ background-color: var(--lumo-shade-20pct);
93
+ }
94
+
95
+ .bg-shade-10 {
96
+ background-color: var(--lumo-shade-10pct);
97
+ }
98
+
99
+ .bg-shade-5 {
100
+ background-color: var(--lumo-shade-5pct);
101
+ }
102
+
103
+ .bg-contrast {
104
+ background-color: var(--lumo-contrast);
105
+ }
106
+
107
+ .bg-contrast-90 {
108
+ background-color: var(--lumo-contrast-90pct);
109
+ }
110
+
111
+ .bg-contrast-80 {
112
+ background-color: var(--lumo-contrast-80pct);
113
+ }
114
+
115
+ .bg-contrast-70 {
116
+ background-color: var(--lumo-contrast-70pct);
117
+ }
118
+
119
+ .bg-contrast-60 {
120
+ background-color: var(--lumo-contrast-60pct);
121
+ }
122
+
123
+ .bg-contrast-50 {
124
+ background-color: var(--lumo-contrast-50pct);
125
+ }
126
+
127
+ .bg-contrast-40 {
128
+ background-color: var(--lumo-contrast-40pct);
129
+ }
130
+
131
+ .bg-contrast-30 {
132
+ background-color: var(--lumo-contrast-30pct);
133
+ }
134
+
135
+ .bg-contrast-20 {
136
+ background-color: var(--lumo-contrast-20pct);
137
+ }
138
+
139
+ .bg-contrast-10 {
140
+ background-color: var(--lumo-contrast-10pct);
141
+ }
142
+
143
+ .bg-contrast-5 {
144
+ background-color: var(--lumo-contrast-5pct);
145
+ }
146
+
147
+ .bg-primary {
148
+ background-color: var(--lumo-primary-color);
149
+ }
150
+
151
+ .bg-primary-50 {
152
+ background-color: var(--lumo-primary-color-50pct);
153
+ }
154
+
155
+ .bg-primary-10 {
156
+ background-color: var(--lumo-primary-color-10pct);
157
+ }
158
+
159
+ .bg-error {
160
+ background-color: var(--lumo-error-color);
161
+ }
162
+
163
+ .bg-error-50 {
164
+ background-color: var(--lumo-error-color-50pct);
165
+ }
166
+
167
+ .bg-error-10 {
168
+ background-color: var(--lumo-error-color-10pct);
169
+ }
170
+
171
+ .bg-success {
172
+ background-color: var(--lumo-success-color);
173
+ }
174
+
175
+ .bg-success-50 {
176
+ background-color: var(--lumo-success-color-50pct);
177
+ }
178
+
179
+ .bg-success-10 {
180
+ background-color: var(--lumo-success-color-10pct);
181
+ }
182
+
183
+ .bg-warning {
184
+ background-color: var(--lumo-warning-color);
185
+ }
186
+
187
+ .bg-warning-10 {
188
+ background-color: var(--lumo-warning-color-10pct);
189
+ }
@@ -0,0 +1,173 @@
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
+ /* === Border === */
7
+ .border-0 {
8
+ border: none;
9
+ }
10
+
11
+ .border-dashed {
12
+ --lumo-utility-border-style: dashed;
13
+ }
14
+
15
+ .border-dotted {
16
+ --lumo-utility-border-style: dotted;
17
+ }
18
+
19
+ .border {
20
+ border: 1px var(--lumo-utility-border-style, solid) var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
21
+ }
22
+
23
+ .border-b {
24
+ border-bottom: 1px var(--lumo-utility-border-style, solid)
25
+ var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
26
+ }
27
+
28
+ .border-e {
29
+ border-inline-end: 1px var(--lumo-utility-border-style, solid)
30
+ var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
31
+ }
32
+
33
+ .border-l {
34
+ border-left: 1px var(--lumo-utility-border-style, solid) var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
35
+ }
36
+
37
+ .border-r {
38
+ border-right: 1px var(--lumo-utility-border-style, solid) var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
39
+ }
40
+
41
+ .border-s {
42
+ border-inline-start: 1px var(--lumo-utility-border-style, solid)
43
+ var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
44
+ }
45
+
46
+ .border-t {
47
+ border-top: 1px var(--lumo-utility-border-style, solid) var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
48
+ }
49
+
50
+ /* === Border color === */
51
+ .border-contrast {
52
+ --lumo-utility-border-color: var(--lumo-contrast);
53
+ }
54
+
55
+ .border-contrast-90 {
56
+ --lumo-utility-border-color: var(--lumo-contrast-90pct);
57
+ }
58
+
59
+ .border-contrast-80 {
60
+ --lumo-utility-border-color: var(--lumo-contrast-80pct);
61
+ }
62
+
63
+ .border-contrast-70 {
64
+ --lumo-utility-border-color: var(--lumo-contrast-70pct);
65
+ }
66
+
67
+ .border-contrast-60 {
68
+ --lumo-utility-border-color: var(--lumo-contrast-60pct);
69
+ }
70
+
71
+ .border-contrast-50 {
72
+ --lumo-utility-border-color: var(--lumo-contrast-50pct);
73
+ }
74
+
75
+ .border-contrast-40 {
76
+ --lumo-utility-border-color: var(--lumo-contrast-40pct);
77
+ }
78
+
79
+ .border-contrast-30 {
80
+ --lumo-utility-border-color: var(--lumo-contrast-30pct);
81
+ }
82
+
83
+ .border-contrast-20 {
84
+ --lumo-utility-border-color: var(--lumo-contrast-20pct);
85
+ }
86
+
87
+ .border-contrast-10 {
88
+ --lumo-utility-border-color: var(--lumo-contrast-10pct);
89
+ }
90
+
91
+ .border-contrast-5 {
92
+ --lumo-utility-border-color: var(--lumo-contrast-5pct);
93
+ }
94
+
95
+ .border-primary {
96
+ --lumo-utility-border-color: var(--lumo-primary-color);
97
+ }
98
+
99
+ .border-primary-50 {
100
+ --lumo-utility-border-color: var(--lumo-primary-color-50pct);
101
+ }
102
+
103
+ .border-primary-10 {
104
+ --lumo-utility-border-color: var(--lumo-primary-color-10pct);
105
+ }
106
+
107
+ .border-error {
108
+ --lumo-utility-border-color: var(--lumo-error-color);
109
+ }
110
+
111
+ .border-error-50 {
112
+ --lumo-utility-border-color: var(--lumo-error-color-50pct);
113
+ }
114
+
115
+ .border-error-10 {
116
+ --lumo-utility-border-color: var(--lumo-error-color-10pct);
117
+ }
118
+
119
+ .border-success {
120
+ --lumo-utility-border-color: var(--lumo-success-color);
121
+ }
122
+
123
+ .border-success-50 {
124
+ --lumo-utility-border-color: var(--lumo-success-color-50pct);
125
+ }
126
+
127
+ .border-success-10 {
128
+ --lumo-utility-border-color: var(--lumo-success-color-10pct);
129
+ }
130
+
131
+ .border-warning {
132
+ --lumo-utility-border-color: var(--lumo-warning-color);
133
+ }
134
+
135
+ .border-warning-strong {
136
+ --lumo-utility-border-color: var(--lumo-warning-text-color);
137
+ }
138
+
139
+ .border-warning-10 {
140
+ --lumo-utility-border-color: var(--lumo-warning-color-10pct);
141
+ }
142
+
143
+ /* === Border radius === */
144
+ .rounded-none {
145
+ border-radius: 0;
146
+ }
147
+
148
+ .rounded-s {
149
+ border-radius: var(--lumo-border-radius-s);
150
+ }
151
+
152
+ .rounded-m {
153
+ border-radius: var(--lumo-border-radius-m);
154
+ }
155
+
156
+ .rounded-l {
157
+ border-radius: var(--lumo-border-radius-l);
158
+ }
159
+
160
+ .rounded-full {
161
+ border-radius: 9999px;
162
+ }
163
+
164
+ /* === Divide === */
165
+ .divide-x > * + * {
166
+ border-inline-start: 1px var(--lumo-utility-border-style, solid)
167
+ var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
168
+ }
169
+
170
+ .divide-y > * + * {
171
+ border-block-start: 1px var(--lumo-utility-border-style, solid)
172
+ var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
173
+ }
@@ -0,0 +1,37 @@
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
+ /* === Backdrop filter === */
7
+ .backdrop-blur-none {
8
+ backdrop-filter: blur(0);
9
+ }
10
+
11
+ .backdrop-blur-sm {
12
+ backdrop-filter: blur(4px);
13
+ }
14
+
15
+ .backdrop-blur {
16
+ backdrop-filter: blur(8px);
17
+ }
18
+
19
+ .backdrop-blur-md {
20
+ backdrop-filter: blur(12px);
21
+ }
22
+
23
+ .backdrop-blur-lg {
24
+ backdrop-filter: blur(16px);
25
+ }
26
+
27
+ .backdrop-blur-xl {
28
+ backdrop-filter: blur(24px);
29
+ }
30
+
31
+ .backdrop-blur-2xl {
32
+ backdrop-filter: blur(40px);
33
+ }
34
+
35
+ .backdrop-blur-3xl {
36
+ backdrop-filter: blur(64px);
37
+ }