@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.
- package/all-imports.d.ts +0 -8
- package/all-imports.js +0 -18
- package/components/accordion-heading.css +14 -0
- package/components/accordion-panel.css +15 -0
- package/{user-colors.d.ts → components/accordion.css} +2 -3
- package/components/app-layout.css +11 -0
- package/components/avatar-group.css +31 -0
- package/components/avatar.css +17 -0
- package/components/button.css +11 -0
- package/components/card.css +50 -0
- package/components/charts.css +11 -0
- package/components/checkbox-group.css +23 -0
- package/components/checkbox.css +14 -0
- package/components/combo-box.css +47 -0
- package/components/confirm-dialog.css +17 -0
- package/components/context-menu.css +32 -0
- package/components/crud.css +40 -0
- package/components/custom-field.css +20 -0
- package/components/dashboard.css +34 -0
- package/components/date-picker.css +49 -0
- package/components/date-time-picker.css +28 -0
- package/components/details-summary.css +11 -0
- package/components/details.css +12 -0
- package/components/dialog.css +16 -0
- package/components/drawer-toggle.css +14 -0
- package/components/email-field.css +25 -0
- package/components/field-highlighter.css +22 -0
- package/components/form-item.css +11 -0
- package/components/form-layout.css +11 -0
- package/components/grid-filter-column.css +6 -0
- package/components/grid-filter.css +12 -0
- package/components/grid-pro-edit-column.css +48 -0
- package/components/grid-pro.css +14 -0
- package/components/grid-selection-column.css +6 -0
- package/components/grid-sort-column.css +6 -0
- package/components/grid-sorter.css +19 -0
- package/components/grid-tree-column.css +6 -0
- package/components/grid-tree-toggle.css +11 -0
- package/components/grid.css +11 -0
- package/components/horizontal-layout.css +11 -0
- package/components/icon.css +11 -0
- package/components/index.css +71 -0
- package/components/input-container.css +11 -0
- package/components/integer-field.css +25 -0
- package/components/item.css +11 -0
- package/components/list-box.css +11 -0
- package/components/login-form.css +14 -0
- package/components/login.css +15 -0
- package/components/map.css +11 -0
- package/components/master-detail-layout.css +19 -0
- package/components/menu-bar.css +47 -0
- package/components/message-input-button.css +11 -0
- package/components/message-input.css +13 -0
- package/components/message-list.css +6 -0
- package/components/message.css +12 -0
- package/components/multi-select-combo-box.css +61 -0
- package/components/notification.css +15 -0
- package/components/number-field.css +25 -0
- package/components/overlay.css +11 -0
- package/components/password-field.css +32 -0
- package/components/popover.css +14 -0
- package/components/progress-bar.css +11 -0
- package/components/radio-button.css +14 -0
- package/components/radio-group.css +23 -0
- package/components/rich-text-editor.css +26 -0
- package/components/scroller.css +11 -0
- package/components/select.css +48 -0
- package/components/side-nav-item.css +14 -0
- package/components/side-nav.css +12 -0
- package/components/split-layout.css +11 -0
- package/components/tab.css +11 -0
- package/components/tabs.css +12 -0
- package/components/tabsheet.css +19 -0
- package/components/text-area.css +25 -0
- package/components/text-field.css +23 -0
- package/components/time-picker.css +43 -0
- package/components/tooltip.css +14 -0
- package/components/upload.css +31 -0
- package/components/vertical-layout.css +11 -0
- package/dist/lumo.css +41 -0
- package/dist/presets/compact.css +1 -0
- package/dist/utility.css +1 -0
- package/{color-global.js → global.css} +3 -4
- package/{badge-global.js → lumo.css} +3 -4
- package/mixins/field-button.js +3 -4
- package/mixins/helper.js +3 -4
- package/mixins/input-field-shared.js +5 -9
- package/mixins/loader.js +3 -2
- package/mixins/menu-overlay.js +3 -4
- package/mixins/overlay.js +3 -4
- package/mixins/required-field.js +3 -4
- package/package.json +23 -14
- package/postcss.config.js +11 -0
- package/presets/compact.css +31 -0
- package/props.css +12 -0
- package/src/components/accordion-heading.css +42 -0
- package/src/components/accordion-panel.css +38 -0
- package/src/components/app-layout.css +193 -0
- package/src/components/avatar-group-menu-item.css +22 -0
- package/src/components/avatar-group-overlay.css +11 -0
- package/src/components/avatar-group.css +67 -0
- package/src/components/avatar.css +86 -0
- package/src/components/button.css +334 -0
- package/src/components/card.css +38 -0
- package/src/components/chart.css +86 -0
- package/src/components/checkbox-group.css +18 -0
- package/src/components/checkbox.css +340 -0
- package/src/components/combo-box-item.css +18 -0
- package/src/components/combo-box-overlay.css +15 -0
- package/src/components/combo-box.css +14 -0
- package/src/components/confirm-dialog-overlay.css +55 -0
- package/src/components/context-menu-item.css +39 -0
- package/src/components/context-menu-list-box.css +40 -0
- package/src/components/context-menu-overlay.css +62 -0
- package/src/components/crud-dialog-overlay.css +57 -0
- package/src/components/crud-edit.css +30 -0
- package/src/components/crud.css +157 -0
- package/src/components/custom-field.css +102 -0
- package/src/components/dashboard-layout.css +28 -0
- package/src/components/dashboard-section.css +85 -0
- package/src/components/dashboard-widget.css +140 -0
- package/src/components/dashboard.css +14 -0
- package/src/components/date-picker-month-calendar.css +192 -0
- package/src/components/date-picker-overlay-content.css +127 -0
- package/src/components/date-picker-overlay.css +48 -0
- package/src/components/date-picker-year.css +35 -0
- package/src/components/date-picker.css +41 -0
- package/src/components/date-time-picker.css +36 -0
- package/src/components/details-summary.css +131 -0
- package/src/components/details.css +37 -0
- package/src/components/dialog-overlay.css +164 -0
- package/src/components/drawer-toggle.css +51 -0
- package/src/components/email-field.css +26 -0
- package/src/components/field-outline.css +51 -0
- package/src/components/form-item.css +36 -0
- package/src/components/form-layout.css +12 -0
- package/src/components/grid-filter.css +16 -0
- package/src/components/grid-pro-edit-select.css +19 -0
- package/src/components/grid-pro.css +90 -0
- package/src/components/grid-sorter.css +70 -0
- package/src/components/grid-tree-toggle.css +104 -0
- package/src/components/grid.css +755 -0
- package/src/components/horizontal-layout.css +34 -0
- package/src/components/icon.css +11 -0
- package/src/components/input-container.css +228 -0
- package/src/components/item.css +94 -0
- package/src/components/list-box.css +31 -0
- package/src/components/login-form-wrapper.css +113 -0
- package/src/components/login-overlay-wrapper.css +189 -0
- package/src/components/map.css +182 -0
- package/src/components/menu-bar-button.css +128 -0
- package/src/components/menu-bar-item.css +23 -0
- package/{utility-global.js → src/components/menu-bar-overlay.css} +5 -4
- package/src/components/menu-bar.css +31 -0
- package/src/components/message-input.css +30 -0
- package/src/components/message.css +57 -0
- package/src/components/multi-select-combo-box-chip.css +113 -0
- package/src/components/multi-select-combo-box-container.css +20 -0
- package/src/components/multi-select-combo-box-item.css +13 -0
- package/src/components/multi-select-combo-box-overlay.css +18 -0
- package/src/components/multi-select-combo-box.css +102 -0
- package/src/components/notification-card.css +228 -0
- package/src/components/notification-container.css +60 -0
- package/src/components/number-field.css +53 -0
- package/src/components/password-field-button.css +19 -0
- package/src/components/password-field.css +24 -0
- package/src/components/popover-overlay.css +20 -0
- package/src/components/progress-bar.css +295 -0
- package/src/components/radio-button.css +156 -0
- package/src/components/radio-group.css +18 -0
- package/src/components/rich-text-editor-popup-overlay.css +27 -0
- package/src/components/rich-text-editor.css +383 -0
- package/src/components/scroller.css +21 -0
- package/src/components/select-overlay.css +54 -0
- package/src/components/select-value-button.css +57 -0
- package/src/components/select.css +73 -0
- package/src/components/side-nav-item.css +183 -0
- package/src/components/side-nav.css +102 -0
- package/src/components/split-layout.css +53 -0
- package/src/components/tab.css +246 -0
- package/src/components/tabs.css +285 -0
- package/src/components/tabsheet.css +63 -0
- package/src/components/text-area.css +116 -0
- package/src/components/time-picker-overlay.css +15 -0
- package/src/components/time-picker.css +36 -0
- package/src/components/tooltip-overlay.css +50 -0
- package/src/components/upload-file.css +99 -0
- package/src/components/upload-icon.css +20 -0
- package/src/components/upload.css +56 -0
- package/src/components/user-tag.css +48 -0
- package/src/components/user-tags-overlay.css +64 -0
- package/src/components/vertical-layout.css +34 -0
- package/src/global/badge.css +167 -0
- package/src/global/color-scheme.css +99 -0
- package/src/global/typography.css +113 -0
- package/src/mixins/checkable-field.css +67 -0
- package/src/mixins/combo-box-loader.css +14 -0
- package/src/mixins/combo-box-overlay.css +30 -0
- package/src/mixins/dashboard-item.css +121 -0
- package/src/mixins/field-base.css +187 -0
- package/src/mixins/field-button.css +46 -0
- package/src/mixins/field-error-message.css +36 -0
- package/src/mixins/field-helper.css +62 -0
- package/src/mixins/field-label.css +62 -0
- package/src/mixins/field-required.css +26 -0
- package/src/mixins/grid-pro-editor.css +35 -0
- package/src/mixins/group-field.css +58 -0
- package/src/mixins/loader.css +48 -0
- package/src/mixins/menu-overlay-core.css +36 -0
- package/src/mixins/menu-overlay-ext.css +63 -0
- package/src/mixins/overlay.css +130 -0
- package/src/mixins/resizable-overlay.css +100 -0
- package/src/props/color.css +98 -0
- package/src/props/icons.css +63 -0
- package/src/props/reset.css +11 -0
- package/src/props/sizing.css +19 -0
- package/src/props/spacing.css +27 -0
- package/src/props/style.css +21 -0
- package/src/props/typography.css +24 -0
- package/src/utilities/accessibility.css +17 -0
- package/src/utilities/background.css +189 -0
- package/src/utilities/border.css +173 -0
- package/src/utilities/filter.css +37 -0
- package/src/utilities/flexbox-grid.css +781 -0
- package/src/utilities/layout.css +629 -0
- package/src/utilities/shadows.css +29 -0
- package/src/utilities/sizing.css +142 -0
- package/src/utilities/spacing.css +682 -0
- package/src/utilities/transition.css +46 -0
- package/src/utilities/typography.css +424 -0
- package/utility.css +16 -0
- package/vaadin-iconset.js +4 -0
- package/auto-complete.css +0 -2582
- package/badge.d.ts +0 -3
- package/badge.js +0 -178
- package/color.d.ts +0 -5
- package/color.js +0 -221
- package/font-icons.js +0 -67
- package/global.js +0 -5
- package/presets/compact.js +0 -40
- package/sizing.d.ts +0 -3
- package/sizing.js +0 -29
- package/spacing.d.ts +0 -3
- package/spacing.js +0 -37
- package/style.d.ts +0 -5
- package/style.js +0 -119
- package/typography-global.js +0 -13
- package/typography.d.ts +0 -7
- package/typography.js +0 -129
- package/user-colors.js +0 -33
- package/utilities/accessibility.js +0 -21
- package/utilities/background.js +0 -156
- package/utilities/border.js +0 -147
- package/utilities/filter.js +0 -34
- package/utilities/flexbox-grid.js +0 -619
- package/utilities/layout.js +0 -504
- package/utilities/shadows.js +0 -28
- package/utilities/sizing.js +0 -121
- package/utilities/spacing.js +0 -542
- package/utilities/transition.js +0 -49
- package/utilities/typography.js +0 -344
- package/utility.d.ts +0 -3
- package/utility.js +0 -34
|
@@ -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
|
+
}
|