@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,36 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2017 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ @media lumo_mixins_menu-overlay-core {
7
+ :host([opening]),
8
+ :host([closing]) {
9
+ animation: 0.14s lumo-overlay-dummy-animation;
10
+ }
11
+
12
+ [part='overlay'] {
13
+ will-change: opacity, transform;
14
+ }
15
+
16
+ :host([opening]) [part='overlay'] {
17
+ animation: 0.1s lumo-menu-overlay-enter ease-out both;
18
+ }
19
+
20
+ @keyframes lumo-menu-overlay-enter {
21
+ 0% {
22
+ opacity: 0;
23
+ transform: translateY(-4px);
24
+ }
25
+ }
26
+
27
+ :host([closing]) [part='overlay'] {
28
+ animation: 0.1s lumo-menu-overlay-exit both;
29
+ }
30
+
31
+ @keyframes lumo-menu-overlay-exit {
32
+ 100% {
33
+ opacity: 0;
34
+ }
35
+ }
36
+ }
@@ -0,0 +1,63 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2017 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ @media lumo_mixins_menu-overlay-ext {
7
+ /* Small viewport (bottom sheet) styles */
8
+ /* Use direct media queries instead of the state attributes ([phone] and [fullscreen]) provided by the elements */
9
+ @media (max-width: 450px), (max-height: 450px) {
10
+ :host {
11
+ inset: 0 0 var(--vaadin-overlay-viewport-bottom, 0) 0 !important;
12
+ align-items: stretch !important;
13
+ justify-content: flex-end !important;
14
+ }
15
+
16
+ [part='overlay'] {
17
+ max-height: 50vh;
18
+ width: 100vw;
19
+ border-radius: 0;
20
+ box-shadow: var(--lumo-box-shadow-xl);
21
+ }
22
+
23
+ /* The content part scrolls instead of the overlay part, because of the gradient fade-out */
24
+ [part='content'] {
25
+ padding: 30px var(--lumo-space-m);
26
+ max-height: inherit;
27
+ box-sizing: border-box;
28
+ overflow: auto;
29
+ mask-image: linear-gradient(transparent, #000 40px, #000 calc(100% - 40px), transparent);
30
+ }
31
+
32
+ [part='backdrop'] {
33
+ display: block;
34
+ }
35
+
36
+ /* Animations */
37
+
38
+ :host([opening]) [part='overlay'] {
39
+ animation: 0.2s lumo-mobile-menu-overlay-enter cubic-bezier(0.215, 0.61, 0.355, 1) both;
40
+ }
41
+
42
+ :host([closing]),
43
+ :host([closing]) [part='backdrop'] {
44
+ animation-delay: 0.14s;
45
+ }
46
+
47
+ :host([closing]) [part='overlay'] {
48
+ animation: 0.14s 0.14s lumo-mobile-menu-overlay-exit cubic-bezier(0.55, 0.055, 0.675, 0.19) both;
49
+ }
50
+ }
51
+
52
+ @keyframes lumo-mobile-menu-overlay-enter {
53
+ 0% {
54
+ transform: translateY(150%);
55
+ }
56
+ }
57
+
58
+ @keyframes lumo-mobile-menu-overlay-exit {
59
+ 100% {
60
+ transform: translateY(150%);
61
+ }
62
+ }
63
+ }
@@ -0,0 +1,130 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2017 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ @media lumo_mixins_overlay {
7
+ :host {
8
+ z-index: 200;
9
+ position: fixed;
10
+
11
+ /* Despite of what the names say, <vaadin-overlay> is just a container
12
+ for position/sizing/alignment. The actual overlay is the overlay part. */
13
+
14
+ /* Use flexbox alignment for the overlay part. */
15
+ display: flex;
16
+ flex-direction: column; /* makes dropdowns sizing easier */
17
+ /* Align to center by default. */
18
+ align-items: center;
19
+ justify-content: center;
20
+
21
+ /* Override native [popover] user agent styles */
22
+ width: auto;
23
+ height: auto;
24
+ border: none;
25
+ padding: 0;
26
+ background-color: transparent;
27
+ overflow: visible;
28
+
29
+ /* Allow centering when max-width/max-height applies. */
30
+ margin: auto;
31
+
32
+ /* The host is not clickable, only the overlay part is. */
33
+ pointer-events: none;
34
+
35
+ /* Remove tap highlight on touch devices. */
36
+ -webkit-tap-highlight-color: transparent;
37
+
38
+ /* CSS API for host */
39
+ --vaadin-overlay-viewport-bottom: 0;
40
+
41
+ inset: var(--vaadin-overlay-viewport-inset, var(--lumo-space-m));
42
+ /* Workaround for Edge issue (only on Surface), where an overflowing vaadin-list-box inside vaadin-select-overlay makes the overlay transparent */
43
+ /* stylelint-disable-next-line */
44
+ outline: 0px solid transparent;
45
+ }
46
+
47
+ :host([hidden]),
48
+ :host(:not([opened]):not([closing])),
49
+ :host(:not([opened]):not([closing])) [part='overlay'] {
50
+ display: none !important;
51
+ }
52
+
53
+ [part='overlay'] {
54
+ overflow: auto;
55
+ pointer-events: auto;
56
+
57
+ /* Prevent overflowing the host */
58
+ max-width: 100%;
59
+ box-sizing: border-box;
60
+
61
+ -webkit-tap-highlight-color: initial; /* reenable tap highlight inside */
62
+ background-color: var(--lumo-base-color);
63
+ background-image: linear-gradient(var(--lumo-tint-5pct), var(--lumo-tint-5pct));
64
+ border-radius: var(--lumo-border-radius-m);
65
+ box-shadow:
66
+ 0 0 0 1px var(--lumo-shade-5pct),
67
+ var(--lumo-box-shadow-m);
68
+
69
+ /* CSS reset for font styles */
70
+ color: var(--lumo-body-text-color);
71
+ font-family: var(--lumo-font-family);
72
+ font-size: var(--lumo-font-size-m);
73
+ font-style: normal;
74
+ font-weight: 400;
75
+ font-variant: normal;
76
+ line-height: var(--lumo-line-height-m);
77
+ letter-spacing: 0;
78
+ text-align: initial;
79
+ text-decoration: none;
80
+ text-indent: initial;
81
+ text-transform: none;
82
+ white-space: initial;
83
+ word-spacing: initial;
84
+ -webkit-text-size-adjust: 100%;
85
+ -webkit-font-smoothing: antialiased;
86
+ -moz-osx-font-smoothing: grayscale;
87
+ }
88
+
89
+ [part='backdrop'] {
90
+ z-index: -1;
91
+ content: '';
92
+ background: rgba(0, 0, 0, 0.5);
93
+ position: fixed;
94
+ inset: 0;
95
+ pointer-events: auto;
96
+ background-color: var(--lumo-shade-20pct);
97
+ animation: 0.2s lumo-overlay-backdrop-enter both;
98
+ will-change: opacity;
99
+ }
100
+
101
+ [part='content'] {
102
+ padding: var(--lumo-space-xs);
103
+ }
104
+
105
+ @keyframes lumo-overlay-backdrop-enter {
106
+ 0% {
107
+ opacity: 0;
108
+ }
109
+ }
110
+
111
+ :host([closing]) [part='backdrop'] {
112
+ animation: 0.2s lumo-overlay-backdrop-exit both;
113
+ }
114
+
115
+ @keyframes lumo-overlay-backdrop-exit {
116
+ 100% {
117
+ opacity: 0;
118
+ }
119
+ }
120
+
121
+ @keyframes lumo-overlay-dummy-animation {
122
+ 0% {
123
+ opacity: 1;
124
+ }
125
+
126
+ 100% {
127
+ opacity: 1;
128
+ }
129
+ }
130
+ }
@@ -0,0 +1,100 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2017 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ @media lumo_mixins_resizable-overlay {
7
+ [part='overlay'] {
8
+ position: relative;
9
+ overflow: visible;
10
+ max-height: 100%;
11
+ display: flex;
12
+ }
13
+
14
+ [part='content'] {
15
+ box-sizing: border-box;
16
+ height: 100%;
17
+ }
18
+
19
+ .resizer-container {
20
+ display: flex;
21
+ flex-direction: column;
22
+ flex-grow: 1;
23
+ border-radius: inherit; /* prevent child elements being drawn outside part=overlay */
24
+ }
25
+
26
+ [part='overlay'][style] .resizer-container {
27
+ min-height: 100%;
28
+ width: 100%;
29
+ }
30
+
31
+ :host(:not([resizable])) .resizer {
32
+ display: none;
33
+ }
34
+
35
+ :host([resizable]) [part='title'] {
36
+ cursor: move;
37
+ -webkit-user-select: none;
38
+ user-select: none;
39
+ }
40
+
41
+ .resizer {
42
+ position: absolute;
43
+ height: 16px;
44
+ width: 16px;
45
+ }
46
+
47
+ .resizer.edge {
48
+ height: 8px;
49
+ width: 8px;
50
+ inset: -4px;
51
+ }
52
+
53
+ .resizer.edge.n {
54
+ width: auto;
55
+ bottom: auto;
56
+ cursor: ns-resize;
57
+ }
58
+
59
+ .resizer.ne {
60
+ top: -4px;
61
+ right: -4px;
62
+ cursor: nesw-resize;
63
+ }
64
+
65
+ .resizer.edge.e {
66
+ height: auto;
67
+ left: auto;
68
+ cursor: ew-resize;
69
+ }
70
+
71
+ .resizer.se {
72
+ bottom: -4px;
73
+ right: -4px;
74
+ cursor: nwse-resize;
75
+ }
76
+
77
+ .resizer.edge.s {
78
+ width: auto;
79
+ top: auto;
80
+ cursor: ns-resize;
81
+ }
82
+
83
+ .resizer.sw {
84
+ bottom: -4px;
85
+ left: -4px;
86
+ cursor: nesw-resize;
87
+ }
88
+
89
+ .resizer.edge.w {
90
+ height: auto;
91
+ right: auto;
92
+ cursor: ew-resize;
93
+ }
94
+
95
+ .resizer.nw {
96
+ top: -4px;
97
+ left: -4px;
98
+ cursor: nwse-resize;
99
+ }
100
+ }
@@ -0,0 +1,98 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2017 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ :where(:root, :host) {
7
+ /* Base (background) */
8
+ --lumo-base-color: #fff;
9
+
10
+ /* Tint */
11
+ --lumo-tint-5pct: hsla(0, 0%, 100%, 0.3);
12
+ --lumo-tint-10pct: hsla(0, 0%, 100%, 0.37);
13
+ --lumo-tint-20pct: hsla(0, 0%, 100%, 0.44);
14
+ --lumo-tint-30pct: hsla(0, 0%, 100%, 0.5);
15
+ --lumo-tint-40pct: hsla(0, 0%, 100%, 0.57);
16
+ --lumo-tint-50pct: hsla(0, 0%, 100%, 0.64);
17
+ --lumo-tint-60pct: hsla(0, 0%, 100%, 0.7);
18
+ --lumo-tint-70pct: hsla(0, 0%, 100%, 0.77);
19
+ --lumo-tint-80pct: hsla(0, 0%, 100%, 0.84);
20
+ --lumo-tint-90pct: hsla(0, 0%, 100%, 0.9);
21
+ --lumo-tint: #fff;
22
+
23
+ /* Shade */
24
+ --lumo-shade-5pct: hsla(214, 61%, 25%, 0.05);
25
+ --lumo-shade-10pct: hsla(214, 57%, 24%, 0.1);
26
+ --lumo-shade-20pct: hsla(214, 53%, 23%, 0.16);
27
+ --lumo-shade-30pct: hsla(214, 50%, 22%, 0.26);
28
+ --lumo-shade-40pct: hsla(214, 47%, 21%, 0.38);
29
+ --lumo-shade-50pct: hsla(214, 45%, 20%, 0.52);
30
+ --lumo-shade-60pct: hsla(214, 43%, 19%, 0.6);
31
+ --lumo-shade-70pct: hsla(214, 42%, 18%, 0.69);
32
+ --lumo-shade-80pct: hsla(214, 41%, 17%, 0.83);
33
+ --lumo-shade-90pct: hsla(214, 40%, 16%, 0.94);
34
+ --lumo-shade: hsl(214, 35%, 15%);
35
+
36
+ /* Contrast */
37
+ --lumo-contrast-5pct: var(--lumo-shade-5pct);
38
+ --lumo-contrast-10pct: var(--lumo-shade-10pct);
39
+ --lumo-contrast-20pct: var(--lumo-shade-20pct);
40
+ --lumo-contrast-30pct: var(--lumo-shade-30pct);
41
+ --lumo-contrast-40pct: var(--lumo-shade-40pct);
42
+ --lumo-contrast-50pct: var(--lumo-shade-50pct);
43
+ --lumo-contrast-60pct: var(--lumo-shade-60pct);
44
+ --lumo-contrast-70pct: var(--lumo-shade-70pct);
45
+ --lumo-contrast-80pct: var(--lumo-shade-80pct);
46
+ --lumo-contrast-90pct: var(--lumo-shade-90pct);
47
+ --lumo-contrast: var(--lumo-shade);
48
+
49
+ /* Text */
50
+ --lumo-header-text-color: var(--lumo-contrast);
51
+ --lumo-body-text-color: var(--lumo-contrast-90pct);
52
+ --lumo-secondary-text-color: var(--lumo-contrast-70pct);
53
+ --lumo-tertiary-text-color: var(--lumo-contrast-50pct);
54
+ --lumo-disabled-text-color: var(--lumo-contrast-30pct);
55
+
56
+ /* Primary */
57
+ --lumo-primary-color: hsl(214, 100%, 48%);
58
+ --lumo-primary-color-50pct: hsla(214, 100%, 49%, 0.76);
59
+ --lumo-primary-color-10pct: hsla(214, 100%, 60%, 0.13);
60
+ --lumo-primary-text-color: hsl(214, 100%, 43%);
61
+ --lumo-primary-contrast-color: #fff;
62
+
63
+ /* Error */
64
+ --lumo-error-color: hsl(3, 85%, 48%);
65
+ --lumo-error-color-50pct: hsla(3, 85%, 49%, 0.5);
66
+ --lumo-error-color-10pct: hsla(3, 85%, 49%, 0.1);
67
+ --lumo-error-text-color: hsl(3, 89%, 42%);
68
+ --lumo-error-contrast-color: #fff;
69
+
70
+ /* Success */
71
+ --lumo-success-color: hsl(145, 72%, 30%);
72
+ --lumo-success-color-50pct: hsla(145, 72%, 31%, 0.5);
73
+ --lumo-success-color-10pct: hsla(145, 72%, 31%, 0.1);
74
+ --lumo-success-text-color: hsl(145, 85%, 25%);
75
+ --lumo-success-contrast-color: #fff;
76
+
77
+ /* Warning */
78
+ --lumo-warning-color: hsl(48, 100%, 50%);
79
+ --lumo-warning-color-10pct: hsla(48, 100%, 50%, 0.25);
80
+ --lumo-warning-text-color: hsl(32, 100%, 30%);
81
+ --lumo-warning-contrast-color: var(--lumo-shade-90pct);
82
+
83
+ /* User colors */
84
+ --vaadin-user-color-0: #df0b92;
85
+ --vaadin-user-color-1: #650acc;
86
+ --vaadin-user-color-2: #097faa;
87
+ --vaadin-user-color-3: #ad6200;
88
+ --vaadin-user-color-4: #bf16f3;
89
+ --vaadin-user-color-5: #084391;
90
+ --vaadin-user-color-6: #078836;
91
+ }
92
+
93
+ /* forced-colors mode adjustments */
94
+ @media (forced-colors: active) {
95
+ :where(:root, :host) {
96
+ --lumo-disabled-text-color: GrayText;
97
+ }
98
+ }
@@ -0,0 +1,63 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2017 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ @font-face {
7
+ font-family: 'lumo-icons';
8
+ src: url(data:application/font-woff;charset=utf-8;base64,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)
9
+ format('woff');
10
+ font-weight: normal;
11
+ font-style: normal;
12
+ }
13
+
14
+ :where(:root, :host) {
15
+ --lumo-icons-align-center: '\ea01';
16
+ --lumo-icons-align-left: '\ea02';
17
+ --lumo-icons-align-right: '\ea03';
18
+ --lumo-icons-angle-down: '\ea04';
19
+ --lumo-icons-angle-left: '\ea05';
20
+ --lumo-icons-angle-right: '\ea06';
21
+ --lumo-icons-angle-up: '\ea07';
22
+ --lumo-icons-arrow-down: '\ea08';
23
+ --lumo-icons-arrow-left: '\ea09';
24
+ --lumo-icons-arrow-right: '\ea0a';
25
+ --lumo-icons-arrow-up: '\ea0b';
26
+ --lumo-icons-bar-chart: '\ea0c';
27
+ --lumo-icons-bell: '\ea0d';
28
+ --lumo-icons-calendar: '\ea0e';
29
+ --lumo-icons-checkmark: '\ea0f';
30
+ --lumo-icons-chevron-down: '\ea10';
31
+ --lumo-icons-chevron-left: '\ea11';
32
+ --lumo-icons-chevron-right: '\ea12';
33
+ --lumo-icons-chevron-up: '\ea13';
34
+ --lumo-icons-clean: '\ea14';
35
+ --lumo-icons-clock: '\ea15';
36
+ --lumo-icons-cog: '\ea16';
37
+ --lumo-icons-cross: '\ea17';
38
+ --lumo-icons-download: '\ea18';
39
+ --lumo-icons-drag-handle: '\ea19';
40
+ --lumo-icons-dropdown: '\ea1a';
41
+ --lumo-icons-edit: '\ea1b';
42
+ --lumo-icons-error: '\ea1c';
43
+ --lumo-icons-eye: '\ea1d';
44
+ --lumo-icons-eye-disabled: '\ea1e';
45
+ --lumo-icons-indent: '\ea1f';
46
+ --lumo-icons-link: '\ea20';
47
+ --lumo-icons-menu: '\ea21';
48
+ --lumo-icons-minus: '\ea22';
49
+ --lumo-icons-ordered-list: '\ea23';
50
+ --lumo-icons-outdent: '\ea24';
51
+ --lumo-icons-phone: '\ea25';
52
+ --lumo-icons-photo: '\ea26';
53
+ --lumo-icons-play: '\ea27';
54
+ --lumo-icons-plus: '\ea28';
55
+ --lumo-icons-redo: '\ea29';
56
+ --lumo-icons-reload: '\ea2a';
57
+ --lumo-icons-resize-handle: '\ea2b';
58
+ --lumo-icons-search: '\ea2c';
59
+ --lumo-icons-undo: '\ea2d';
60
+ --lumo-icons-unordered-list: '\ea2e';
61
+ --lumo-icons-upload: '\ea2f';
62
+ --lumo-icons-user: '\ea30';
63
+ }
@@ -0,0 +1,11 @@
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
+
7
+ /* Reset properties that are set by the base theme */
8
+ :where(:root, :host) {
9
+ --vaadin-focus-ring-color: inherit;
10
+ --vaadin-focus-ring-width: inherit;
11
+ }
@@ -0,0 +1,19 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2017 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ :where(:root, :host) {
7
+ --lumo-size-xs: 1.625rem;
8
+ --lumo-size-s: 1.875rem;
9
+ --lumo-size-m: 2.25rem;
10
+ --lumo-size-l: 2.75rem;
11
+ --lumo-size-xl: 3.5rem;
12
+
13
+ /* Icons */
14
+ --lumo-icon-size-s: 1.25em;
15
+ --lumo-icon-size-m: 1.5em;
16
+ --lumo-icon-size-l: 2.25em;
17
+ /* For backwards compatibility */
18
+ --lumo-icon-size: var(--lumo-icon-size-m);
19
+ }
@@ -0,0 +1,27 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2017 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ :where(:root, :host) {
7
+ /* Square */
8
+ --lumo-space-xs: 0.25rem;
9
+ --lumo-space-s: 0.5rem;
10
+ --lumo-space-m: 1rem;
11
+ --lumo-space-l: 1.5rem;
12
+ --lumo-space-xl: 2.5rem;
13
+
14
+ /* Wide */
15
+ --lumo-space-wide-xs: calc(var(--lumo-space-xs) / 2) var(--lumo-space-xs);
16
+ --lumo-space-wide-s: calc(var(--lumo-space-s) / 2) var(--lumo-space-s);
17
+ --lumo-space-wide-m: calc(var(--lumo-space-m) / 2) var(--lumo-space-m);
18
+ --lumo-space-wide-l: calc(var(--lumo-space-l) / 2) var(--lumo-space-l);
19
+ --lumo-space-wide-xl: calc(var(--lumo-space-xl) / 2) var(--lumo-space-xl);
20
+
21
+ /* Tall */
22
+ --lumo-space-tall-xs: var(--lumo-space-xs) calc(var(--lumo-space-xs) / 2);
23
+ --lumo-space-tall-s: var(--lumo-space-s) calc(var(--lumo-space-s) / 2);
24
+ --lumo-space-tall-m: var(--lumo-space-m) calc(var(--lumo-space-m) / 2);
25
+ --lumo-space-tall-l: var(--lumo-space-l) calc(var(--lumo-space-l) / 2);
26
+ --lumo-space-tall-xl: var(--lumo-space-xl) calc(var(--lumo-space-xl) / 2);
27
+ }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2017 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ :where(:root, :host) {
7
+ /* Border radius */
8
+ --lumo-border-radius-s: 0.25em; /* Checkbox, badge, date-picker year indicator, etc */
9
+ --lumo-border-radius-m: var(--lumo-border-radius, 0.25em); /* Button, text field, menu overlay, etc */
10
+ --lumo-border-radius-l: 0.5em; /* Dialog, notification, etc */
11
+
12
+ /* Shadow */
13
+ --lumo-box-shadow-xs: 0 1px 4px -1px var(--lumo-shade-50pct);
14
+ --lumo-box-shadow-s: 0 2px 4px -1px var(--lumo-shade-20pct), 0 3px 12px -1px var(--lumo-shade-30pct);
15
+ --lumo-box-shadow-m: 0 2px 6px -1px var(--lumo-shade-20pct), 0 8px 24px -4px var(--lumo-shade-40pct);
16
+ --lumo-box-shadow-l: 0 3px 18px -2px var(--lumo-shade-20pct), 0 12px 48px -6px var(--lumo-shade-40pct);
17
+ --lumo-box-shadow-xl: 0 4px 24px -3px var(--lumo-shade-20pct), 0 18px 64px -8px var(--lumo-shade-40pct);
18
+
19
+ /* Clickable element cursor */
20
+ --lumo-clickable-cursor: default;
21
+ }
@@ -0,0 +1,24 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2017 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ :where(:root, :host) {
7
+ /* prettier-ignore */
8
+ --lumo-font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
9
+
10
+ /* Font sizes */
11
+ --lumo-font-size-xxs: 0.75rem;
12
+ --lumo-font-size-xs: 0.8125rem;
13
+ --lumo-font-size-s: 0.875rem;
14
+ --lumo-font-size-m: 1rem;
15
+ --lumo-font-size-l: 1.125rem;
16
+ --lumo-font-size-xl: 1.375rem;
17
+ --lumo-font-size-xxl: 1.75rem;
18
+ --lumo-font-size-xxxl: 2.5rem;
19
+
20
+ /* Line heights */
21
+ --lumo-line-height-xs: 1.25;
22
+ --lumo-line-height-s: 1.375;
23
+ --lumo-line-height-m: 1.625;
24
+ }
@@ -0,0 +1,17 @@
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
+ /* === Screen readers === */
7
+ .sr-only {
8
+ border-width: 0;
9
+ clip: rect(0, 0, 0, 0);
10
+ height: 1px;
11
+ margin: -1px;
12
+ overflow: hidden;
13
+ padding: 0;
14
+ position: absolute;
15
+ white-space: nowrap;
16
+ width: 1px;
17
+ }