@inera/ids-design 5.2.1 → 5.3.0
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/components/breadcrumbs/breadcrumbs-lit.js +1 -1
- package/components/breadcrumbs/breadcrumbs.css +1 -1
- package/components/data-table/data-table-lit.js +1 -1
- package/components/data-table/data-table.css +1 -0
- package/components/dialog/dialog-lit.js +1 -1
- package/components/dialog/dialog.css +5 -1
- package/components/dropdown/dropdown-lit.js +1 -1
- package/components/dropdown/dropdown.css +2 -2
- package/components/expandable/expandable-lit.js +1 -1
- package/components/expandable/expandable.css +3 -0
- package/components/form/error-message/error-message-lit.js +1 -1
- package/components/form/error-message/error-message.css +2 -2
- package/components/form/select-multiple/select-multiple-lit.js +1 -1
- package/components/form/select-multiple/select-multiple.css +38 -38
- package/components/form/spinner/spinner-lit.js +1 -1
- package/components/form/spinner/spinner.css +2 -2
- package/components/header-1177/composite-header-1177.css +26 -18
- package/components/header-1177/header-1177-avatar-lit.js +1 -1
- package/components/header-1177/header-1177-avatar.css +8 -8
- package/components/header-1177/header-1177-item-lit.js +1 -1
- package/components/header-1177/header-1177-item.css +8 -0
- package/components/header-1177/header-1177-lit.js +1 -1
- package/components/header-1177/header-1177-nav-item-mobile-lit.js +1 -1
- package/components/header-1177/header-1177-nav-item-mobile.css +2 -2
- package/components/header-1177/header-1177.css +8 -8
- package/components/header-1177-admin/header-1177-admin-avatar-mobile-lit.js +1 -1
- package/components/header-1177-admin/header-1177-admin-avatar-mobile.css +3 -3
- package/components/header-1177-admin/header-1177-admin-item-lit.js +1 -1
- package/components/header-1177-admin/header-1177-admin-item.css +8 -0
- package/components/header-1177-admin/header-1177-admin-lit.js +1 -1
- package/components/header-1177-admin/header-1177-admin.css +2 -2
- package/components/header-1177-pro/header-1177-pro-avatar-mobile-lit.js +1 -1
- package/components/header-1177-pro/header-1177-pro-avatar-mobile.css +3 -3
- package/components/header-1177-pro/header-1177-pro-item-lit.js +1 -1
- package/components/header-1177-pro/header-1177-pro-item.css +8 -0
- package/components/header-1177-pro/header-1177-pro-nav-menu-mobile-lit.js +1 -1
- package/components/header-1177-pro/header-1177-pro-nav-menu-mobile.css +2 -2
- package/components/header-inera/header-inera-lit.js +1 -1
- package/components/header-inera/header-inera.css +4 -4
- package/components/header-inera-admin/composite-header-inera-admin.css +4 -4
- package/components/header-inera-admin/header-inera-admin-lit.js +1 -1
- package/components/header-inera-admin/header-inera-admin.css +4 -4
- package/components/list/list-lit.js +1 -1
- package/components/list/list.css +14 -15
- package/components/navigation/content/navigation-content-lit.js +1 -1
- package/components/navigation/content/navigation-content.css +19 -19
- package/components/navigation/local/navigation-local-lit.js +1 -1
- package/components/navigation/local/navigation-local.css +20 -18
- package/components/pagination/data-pagination/data-pagination-lit.js +1 -1
- package/components/pagination/data-pagination/data-pagination.css +5 -5
- package/components/pagination/list-pagination/list-pagination-lit.js +1 -1
- package/components/pagination/list-pagination/list-pagination.css +7 -7
- package/components/progressbar/progressbar-lit.js +1 -1
- package/components/progressbar/progressbar.css +3 -3
- package/components/side-menu/side-menu-lit.d.ts +2 -0
- package/components/side-menu/side-menu-lit.js +7 -0
- package/components/side-menu/side-menu.css +178 -0
- package/components/side-panel/side-panel-lit.js +1 -1
- package/components/side-panel/side-panel.css +286 -35
- package/components/stepper/stepper-lit.js +1 -1
- package/components/stepper/stepper.css +19 -19
- package/components/tabs/tabs-lit.js +1 -1
- package/components/tooltip/tooltip-lit.js +1 -1
- package/components/tooltip/tooltip.css +2 -2
- package/global/global.css +352 -315
- package/package.json +1 -1
- package/themes/1177/1177.css +670 -682
- package/themes/1177-pro/1177-pro.css +697 -699
- package/themes/inera/inera.css +640 -610
- package/themes/inera-admin/inera-admin.css +653 -610
|
@@ -22,11 +22,16 @@
|
|
|
22
22
|
/*******
|
|
23
23
|
* A11Y
|
|
24
24
|
********/
|
|
25
|
-
:host {
|
|
26
|
-
display: contents;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
25
|
.ids-side-panel {
|
|
26
|
+
background-color: var(--IDS-OVERLAY__BACKGROUND-COLOR);
|
|
27
|
+
overflow: hidden;
|
|
28
|
+
z-index: 1;
|
|
29
|
+
}
|
|
30
|
+
.ids-side-panel .ids-side-panel__mobile-menu {
|
|
31
|
+
display: none;
|
|
32
|
+
background-color: var(--IDS-COLOR-NEUTRAL-100);
|
|
33
|
+
}
|
|
34
|
+
.ids-side-panel.ids-side-panel--regular {
|
|
30
35
|
opacity: 0;
|
|
31
36
|
visibility: hidden;
|
|
32
37
|
position: fixed;
|
|
@@ -37,10 +42,9 @@
|
|
|
37
42
|
z-index: 2;
|
|
38
43
|
width: 0;
|
|
39
44
|
height: 0;
|
|
40
|
-
background-color: var(--IDS-OVERLAY__BACKGROUND-COLOR);
|
|
41
45
|
transition: opacity 0s linear 0.2s, visibility 0.3s, width 0s linear 0.4s, height 0s linear 0.4s;
|
|
42
46
|
}
|
|
43
|
-
.ids-side-panel .ids-side-panel__panel {
|
|
47
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__panel {
|
|
44
48
|
background-color: var(--IDS-COLOR-NEUTRAL-100);
|
|
45
49
|
border-left: 0;
|
|
46
50
|
box-sizing: border-box;
|
|
@@ -54,7 +58,7 @@
|
|
|
54
58
|
transform: translateY(100vh);
|
|
55
59
|
transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
56
60
|
}
|
|
57
|
-
.ids-side-panel .ids-side-panel__content {
|
|
61
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__content {
|
|
58
62
|
width: 100%;
|
|
59
63
|
padding-bottom: 20px;
|
|
60
64
|
box-sizing: border-box;
|
|
@@ -62,48 +66,48 @@
|
|
|
62
66
|
overflow-y: auto;
|
|
63
67
|
order: 1;
|
|
64
68
|
}
|
|
65
|
-
.ids-side-panel .ids-side-panel__content::-webkit-scrollbar {
|
|
69
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__content::-webkit-scrollbar {
|
|
66
70
|
width: 14px;
|
|
67
71
|
position: absolute;
|
|
68
72
|
margin-left: -20px;
|
|
69
73
|
margin-top: 4px;
|
|
70
74
|
}
|
|
71
|
-
.ids-side-panel .ids-side-panel__content::-webkit-scrollbar-track {
|
|
75
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__content::-webkit-scrollbar-track {
|
|
72
76
|
background: var(--IDS-SCROLL_TRACK-COLOR);
|
|
73
77
|
border-radius: 10px;
|
|
74
78
|
margin-top: 4px;
|
|
75
79
|
margin-bottom: 0;
|
|
76
80
|
}
|
|
77
|
-
.ids-side-panel .ids-side-panel__content::-webkit-resizer {
|
|
81
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__content::-webkit-resizer {
|
|
78
82
|
appearance: none;
|
|
79
83
|
background-image: var(--IDS-TEXTAREA-RESIZER-IMAGE);
|
|
80
84
|
background-repeat: no-repeat;
|
|
81
85
|
background-position: center center;
|
|
82
86
|
background-size: cover;
|
|
83
87
|
}
|
|
84
|
-
.ids-side-panel .ids-side-panel__content::-webkit-scrollbar-corner {
|
|
88
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__content::-webkit-scrollbar-corner {
|
|
85
89
|
background-color: transparent;
|
|
86
90
|
}
|
|
87
|
-
.ids-side-panel .ids-side-panel__content::-webkit-scrollbar-thumb {
|
|
91
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__content::-webkit-scrollbar-thumb {
|
|
88
92
|
cursor: auto;
|
|
89
93
|
background: var(--IDS-SCROLL_COLOR);
|
|
90
94
|
border-radius: 10px;
|
|
91
95
|
box-sizing: border-box;
|
|
92
96
|
border: 3px solid var(--IDS-SCROLL_TRACK-COLOR);
|
|
93
97
|
}
|
|
94
|
-
.ids-side-panel .ids-side-panel__content::-webkit-scrollbar-thumb:hover {
|
|
98
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__content::-webkit-scrollbar-thumb:hover {
|
|
95
99
|
background: var(--IDS-SCROLL_HOVER-COLOR);
|
|
96
100
|
}
|
|
97
|
-
.ids-side-panel .ids-side-panel__inner {
|
|
101
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__inner {
|
|
98
102
|
padding: 8px;
|
|
99
103
|
}
|
|
100
|
-
.ids-side-panel .ids-side-panel__actions {
|
|
104
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__actions {
|
|
101
105
|
text-align: right;
|
|
102
106
|
width: 100%;
|
|
103
107
|
margin-right: 5px;
|
|
104
108
|
order: 0;
|
|
105
109
|
}
|
|
106
|
-
.ids-side-panel
|
|
110
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__close-button {
|
|
107
111
|
background: none;
|
|
108
112
|
color: inherit;
|
|
109
113
|
border: none;
|
|
@@ -112,70 +116,73 @@
|
|
|
112
116
|
cursor: pointer;
|
|
113
117
|
outline: inherit;
|
|
114
118
|
}
|
|
115
|
-
.ids-side-panel
|
|
119
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__close-button:focus {
|
|
116
120
|
outline: var(--IDS-FOCUS_OUTLINE);
|
|
117
121
|
outline-offset: var(--IDS-FOCUS_OUTLINE-OFFSET) !important;
|
|
118
122
|
}
|
|
119
|
-
.ids-side-panel.ids-side-panel--show {
|
|
123
|
+
.ids-side-panel.ids-side-panel--regular.ids-side-panel--show {
|
|
120
124
|
opacity: 1;
|
|
121
125
|
visibility: visible;
|
|
122
126
|
width: 100%;
|
|
123
127
|
height: 100vh;
|
|
124
128
|
transition: width 0s, height 0s;
|
|
125
129
|
}
|
|
126
|
-
.ids-side-panel.ids-side-panel--show .ids-side-panel__panel {
|
|
130
|
+
.ids-side-panel.ids-side-panel--regular.ids-side-panel--show .ids-side-panel__panel {
|
|
127
131
|
transform: translateY(30vh);
|
|
128
|
-
transition: transform
|
|
132
|
+
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
129
133
|
}
|
|
130
134
|
@media (min-width: 640px) {
|
|
131
|
-
.ids-side-panel .ids-side-panel__panel {
|
|
135
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__panel {
|
|
132
136
|
height: 50vh;
|
|
133
137
|
}
|
|
134
|
-
.ids-side-panel.ids-side-panel--show .ids-side-panel__panel {
|
|
138
|
+
.ids-side-panel.ids-side-panel--regular.ids-side-panel--show .ids-side-panel__panel {
|
|
135
139
|
transform: translateY(50vh);
|
|
136
140
|
}
|
|
137
141
|
}
|
|
138
142
|
@media (min-width: 1024px) {
|
|
139
|
-
.ids-side-panel {
|
|
143
|
+
.ids-side-panel.ids-side-panel--regular {
|
|
140
144
|
display: flex;
|
|
141
145
|
position: relative;
|
|
142
146
|
overflow-x: hidden;
|
|
143
147
|
width: 0;
|
|
144
148
|
transform: none;
|
|
149
|
+
background-color: var(--IDS-COLOR-NEUTRAL-100);
|
|
145
150
|
transition: width 0.3s ease-in-out, opacity 0s linear 0.3s, height 0.4s, visibility 0.4s, transform linear 0s;
|
|
146
|
-
}
|
|
147
|
-
.ids-side-panel .ids-side-panel__panel {
|
|
148
151
|
border-left: 1px solid var(--IDS-SIDE-PANEL__BORDER-COLOR);
|
|
152
|
+
}
|
|
153
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__panel {
|
|
149
154
|
top: 0;
|
|
150
155
|
padding: 20px 0 0 16px;
|
|
151
156
|
transform: none;
|
|
152
157
|
transition: none;
|
|
153
158
|
height: 100%;
|
|
154
159
|
}
|
|
155
|
-
.ids-side-panel .ids-side-panel__content,
|
|
156
|
-
.ids-side-panel .ids-side-panel__actions {
|
|
160
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__content,
|
|
161
|
+
.ids-side-panel.ids-side-panel--regular .ids-side-panel__actions {
|
|
157
162
|
width: 350px;
|
|
158
163
|
}
|
|
159
|
-
.ids-side-panel.ids-side-panel--show {
|
|
164
|
+
.ids-side-panel.ids-side-panel--regular.ids-side-panel--show {
|
|
160
165
|
width: 380px;
|
|
161
166
|
height: 100%;
|
|
162
167
|
transform: none;
|
|
163
168
|
transition: width 0.3s ease-in-out, visibility 0s, opacity 0s, transform linear 0s;
|
|
164
169
|
}
|
|
165
|
-
.ids-side-panel.ids-side-panel--show .ids-side-panel__panel {
|
|
170
|
+
.ids-side-panel.ids-side-panel--regular.ids-side-panel--show .ids-side-panel__panel {
|
|
166
171
|
transform: none;
|
|
167
172
|
transition: none;
|
|
168
173
|
}
|
|
169
|
-
.ids-side-panel.ids-side-panel--
|
|
174
|
+
.ids-side-panel.ids-side-panel--regular.ids-side-panel--left {
|
|
170
175
|
border-left: 0;
|
|
171
176
|
border-right: 1px solid var(--IDS-SIDE-PANEL__BORDER-COLOR);
|
|
177
|
+
}
|
|
178
|
+
.ids-side-panel.ids-side-panel--regular.ids-side-panel--left .ids-side-panel__panel {
|
|
172
179
|
direction: rtl;
|
|
173
180
|
padding: 20px 16px 20px 0;
|
|
174
181
|
}
|
|
175
|
-
.ids-side-panel.ids-side-panel--left .ids-side-panel__panel .ids-side-panel__content {
|
|
182
|
+
.ids-side-panel.ids-side-panel--regular.ids-side-panel--left .ids-side-panel__panel .ids-side-panel__content {
|
|
176
183
|
direction: ltr;
|
|
177
184
|
}
|
|
178
|
-
.ids-side-panel.ids-side-panel--elevated {
|
|
185
|
+
.ids-side-panel.ids-side-panel--regular.ids-side-panel--elevated {
|
|
179
186
|
position: fixed;
|
|
180
187
|
top: 0;
|
|
181
188
|
right: 0;
|
|
@@ -184,15 +191,259 @@
|
|
|
184
191
|
height: 100%;
|
|
185
192
|
left: auto;
|
|
186
193
|
z-index: 2;
|
|
194
|
+
border-left: 0;
|
|
195
|
+
box-shadow: -3px 0 4px -2px rgba(0, 0, 0, 0.2);
|
|
187
196
|
}
|
|
188
|
-
.ids-side-panel.ids-side-panel--elevated.ids-side-panel--left {
|
|
197
|
+
.ids-side-panel.ids-side-panel--regular.ids-side-panel--elevated.ids-side-panel--left {
|
|
189
198
|
left: 0;
|
|
190
199
|
right: auto;
|
|
200
|
+
border-right: 0;
|
|
201
|
+
box-shadow: 3px 0 4px -2px rgba(0, 0, 0, 0.2);
|
|
191
202
|
}
|
|
192
|
-
.ids-side-panel.ids-side-panel--elevated.ids-side-panel--left .ids-side-panel__panel {
|
|
203
|
+
.ids-side-panel.ids-side-panel--regular.ids-side-panel--elevated.ids-side-panel--left .ids-side-panel__panel {
|
|
193
204
|
padding: 20px 16px 20px 0;
|
|
194
205
|
}
|
|
195
|
-
.ids-side-panel.ids-side-panel--elevated.ids-side-panel--show {
|
|
206
|
+
.ids-side-panel.ids-side-panel--regular.ids-side-panel--elevated.ids-side-panel--show {
|
|
207
|
+
width: 380px;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
.ids-side-panel.ids-side-panel--menu {
|
|
211
|
+
position: relative;
|
|
212
|
+
display: flex;
|
|
213
|
+
width: 50px;
|
|
214
|
+
height: 100%;
|
|
215
|
+
background-color: var(--IDS-COLOR-NEUTRAL-100);
|
|
216
|
+
border-right: 1px solid var(--IDS-SIDE-PANEL__BORDER-COLOR);
|
|
217
|
+
padding: 0;
|
|
218
|
+
}
|
|
219
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__panel {
|
|
220
|
+
position: relative;
|
|
221
|
+
box-sizing: border-box;
|
|
222
|
+
display: flex;
|
|
223
|
+
flex-direction: column;
|
|
224
|
+
width: 100%;
|
|
225
|
+
padding: 20px 0 0 0;
|
|
226
|
+
}
|
|
227
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__content {
|
|
228
|
+
width: 100%;
|
|
229
|
+
height: 100%;
|
|
230
|
+
padding-right: 8px;
|
|
231
|
+
box-sizing: border-box;
|
|
232
|
+
overflow-x: hidden;
|
|
233
|
+
overflow-y: auto;
|
|
234
|
+
opacity: 0;
|
|
235
|
+
visibility: hidden;
|
|
236
|
+
transition: visibility 0s, opacity 0s;
|
|
237
|
+
}
|
|
238
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__content::-webkit-scrollbar {
|
|
239
|
+
width: 14px;
|
|
240
|
+
position: absolute;
|
|
241
|
+
margin-left: -20px;
|
|
242
|
+
margin-top: 4px;
|
|
243
|
+
}
|
|
244
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__content::-webkit-scrollbar-track {
|
|
245
|
+
background: var(--IDS-SCROLL_TRACK-COLOR);
|
|
246
|
+
border-radius: 10px;
|
|
247
|
+
margin-top: 4px;
|
|
248
|
+
margin-bottom: 0;
|
|
249
|
+
}
|
|
250
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__content::-webkit-resizer {
|
|
251
|
+
appearance: none;
|
|
252
|
+
background-image: var(--IDS-TEXTAREA-RESIZER-IMAGE);
|
|
253
|
+
background-repeat: no-repeat;
|
|
254
|
+
background-position: center center;
|
|
255
|
+
background-size: cover;
|
|
256
|
+
}
|
|
257
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__content::-webkit-scrollbar-corner {
|
|
258
|
+
background-color: transparent;
|
|
259
|
+
}
|
|
260
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__content::-webkit-scrollbar-thumb {
|
|
261
|
+
cursor: auto;
|
|
262
|
+
background: var(--IDS-SCROLL_COLOR);
|
|
263
|
+
border-radius: 10px;
|
|
264
|
+
box-sizing: border-box;
|
|
265
|
+
border: 3px solid var(--IDS-SCROLL_TRACK-COLOR);
|
|
266
|
+
}
|
|
267
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__content::-webkit-scrollbar-thumb:hover {
|
|
268
|
+
background: var(--IDS-SCROLL_HOVER-COLOR);
|
|
269
|
+
}
|
|
270
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__actions {
|
|
271
|
+
position: absolute;
|
|
272
|
+
top: 20px;
|
|
273
|
+
left: 12px;
|
|
274
|
+
}
|
|
275
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__footer {
|
|
276
|
+
text-align: left;
|
|
277
|
+
box-sizing: border-box;
|
|
278
|
+
display: flex;
|
|
279
|
+
flex-direction: column;
|
|
280
|
+
gap: 20px;
|
|
281
|
+
padding: 20px;
|
|
282
|
+
border-bottom: 8px solid var(--IDS-SIDE-PANEL__FOOTER-BORDER-BOTTOM-COLOR);
|
|
283
|
+
border-top: 1px solid var(--IDS-SIDE-PANEL__FOOTER-BORDER-TOP-COLOR);
|
|
284
|
+
opacity: 0;
|
|
285
|
+
visibility: hidden;
|
|
286
|
+
transition: visibility 0s, opacity 0s;
|
|
287
|
+
}
|
|
288
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__footer-link {
|
|
289
|
+
display: flex;
|
|
290
|
+
flex-direction: column;
|
|
291
|
+
gap: 12px;
|
|
292
|
+
}
|
|
293
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger {
|
|
294
|
+
border: 0;
|
|
295
|
+
background-color: transparent;
|
|
296
|
+
height: 30px;
|
|
297
|
+
padding: 0 4px;
|
|
298
|
+
margin-right: -4px;
|
|
299
|
+
}
|
|
300
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger:focus {
|
|
301
|
+
outline: var(--IDS-FOCUS_OUTLINE);
|
|
302
|
+
outline-offset: var(--IDS-FOCUS_OUTLINE-OFFSET) !important;
|
|
303
|
+
}
|
|
304
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger .ids-hamburger {
|
|
305
|
+
transition: 0.2s;
|
|
306
|
+
cursor: pointer;
|
|
307
|
+
user-select: none;
|
|
308
|
+
position: relative;
|
|
309
|
+
}
|
|
310
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger .ids-hamburger__lines {
|
|
311
|
+
display: block;
|
|
312
|
+
width: 1.3125rem;
|
|
313
|
+
border-radius: 2px;
|
|
314
|
+
transition: 0.2s;
|
|
315
|
+
background-color: var(--IDS-COLOR-ACCENT-40);
|
|
316
|
+
position: relative;
|
|
317
|
+
height: 3px;
|
|
318
|
+
width: 1.25rem;
|
|
319
|
+
}
|
|
320
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger .ids-hamburger__lines:before,
|
|
321
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger .ids-hamburger__lines:after {
|
|
322
|
+
display: inline-block;
|
|
323
|
+
width: 1.3125rem;
|
|
324
|
+
border-radius: 2px;
|
|
325
|
+
transition: 0.2s;
|
|
326
|
+
background-color: var(--IDS-COLOR-ACCENT-40);
|
|
327
|
+
position: absolute;
|
|
328
|
+
left: 0;
|
|
329
|
+
content: "";
|
|
330
|
+
-webkit-transform-origin: 0.09375rem center;
|
|
331
|
+
transform-origin: 0.09375rem center;
|
|
332
|
+
}
|
|
333
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger .ids-hamburger__lines:before,
|
|
334
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger .ids-hamburger__lines:after {
|
|
335
|
+
height: 3px;
|
|
336
|
+
width: 1.25rem;
|
|
337
|
+
}
|
|
338
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger .ids-hamburger__lines:before,
|
|
339
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger .ids-hamburger__lines:after {
|
|
340
|
+
-webkit-transform-origin: 0.13393rem center;
|
|
341
|
+
transform-origin: 0.13393rem center;
|
|
342
|
+
}
|
|
343
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger .ids-hamburger__lines:before {
|
|
344
|
+
top: 8px;
|
|
345
|
+
}
|
|
346
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger .ids-hamburger__lines:after {
|
|
347
|
+
top: -8px;
|
|
348
|
+
}
|
|
349
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger[aria-expanded=true] .ids-hamburger {
|
|
350
|
+
-webkit-transform: scale3d(0.8, 0.8, 0.8);
|
|
351
|
+
transform: scale3d(0.8, 0.8, 0.8);
|
|
352
|
+
}
|
|
353
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger[aria-expanded=true] .ids-hamburger .ids-hamburger__lines {
|
|
354
|
+
background: transparent;
|
|
355
|
+
}
|
|
356
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger[aria-expanded=true] .ids-hamburger .ids-hamburger__lines:before, .ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger[aria-expanded=true] .ids-hamburger .ids-hamburger__lines:after {
|
|
357
|
+
-ms-transform-origin: 50% 50%;
|
|
358
|
+
-webkit-transform-origin: 50% 50%;
|
|
359
|
+
transform-origin: 50% 50%;
|
|
360
|
+
top: 0;
|
|
361
|
+
width: 2rem;
|
|
362
|
+
left: -5px;
|
|
363
|
+
}
|
|
364
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger[aria-expanded=true] .ids-hamburger .ids-hamburger__lines:before {
|
|
365
|
+
-ms-transform: rotate(45deg);
|
|
366
|
+
-webkit-transform: rotate3d(0, 0, 1, 45deg);
|
|
367
|
+
transform: rotate3d(0, 0, 1, 45deg);
|
|
368
|
+
}
|
|
369
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__hamburger[aria-expanded=true] .ids-hamburger .ids-hamburger__lines:after {
|
|
370
|
+
-ms-transform: rotate(-45deg);
|
|
371
|
+
-webkit-transform: rotate3d(0, 0, 1, -45deg);
|
|
372
|
+
transform: rotate3d(0, 0, 1, -45deg);
|
|
373
|
+
}
|
|
374
|
+
.ids-side-panel.ids-side-panel--menu.ids-side-panel--show {
|
|
375
|
+
width: 100%;
|
|
376
|
+
position: fixed;
|
|
377
|
+
top: 0;
|
|
378
|
+
bottom: 0;
|
|
379
|
+
left: 0;
|
|
380
|
+
right: 0;
|
|
381
|
+
border-right: 0;
|
|
382
|
+
}
|
|
383
|
+
.ids-side-panel.ids-side-panel--menu.ids-side-panel--show .ids-side-panel__mobile-menu {
|
|
384
|
+
display: block;
|
|
385
|
+
margin-top: 40px;
|
|
386
|
+
}
|
|
387
|
+
.ids-side-panel.ids-side-panel--menu.ids-side-panel--show .ids-side-panel__content,
|
|
388
|
+
.ids-side-panel.ids-side-panel--menu.ids-side-panel--show .ids-side-panel__footer {
|
|
389
|
+
opacity: 1;
|
|
390
|
+
visibility: visible;
|
|
391
|
+
transition: visibility 0s, opacity 0s;
|
|
392
|
+
}
|
|
393
|
+
.ids-side-panel.ids-side-panel--menu.ids-side-panel--show .ids-side-panel__actions {
|
|
394
|
+
right: 20px;
|
|
395
|
+
left: auto;
|
|
396
|
+
}
|
|
397
|
+
.ids-side-panel.ids-side-panel--menu.ids-side-panel--elevated {
|
|
398
|
+
position: fixed;
|
|
399
|
+
top: 0;
|
|
400
|
+
bottom: 0;
|
|
401
|
+
left: auto;
|
|
402
|
+
right: calc(100% - 50px);
|
|
403
|
+
width: 50px;
|
|
404
|
+
z-index: 2;
|
|
405
|
+
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
406
|
+
}
|
|
407
|
+
.ids-side-panel.ids-side-panel--menu.ids-side-panel--elevated.ids-side-panel--show {
|
|
408
|
+
width: 100%;
|
|
409
|
+
transform: translateX(calc(100% - 50px));
|
|
410
|
+
}
|
|
411
|
+
@media (min-width: 1024px) {
|
|
412
|
+
.ids-side-panel.ids-side-panel--menu {
|
|
413
|
+
transition: width 0.3s ease-in-out;
|
|
414
|
+
}
|
|
415
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__mobile-menu {
|
|
416
|
+
display: none !important;
|
|
417
|
+
}
|
|
418
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__panel {
|
|
419
|
+
width: 380px;
|
|
420
|
+
position: relative;
|
|
421
|
+
transform: none;
|
|
422
|
+
transition: none;
|
|
423
|
+
}
|
|
424
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__content {
|
|
425
|
+
width: 380px;
|
|
426
|
+
margin-top: 36px;
|
|
427
|
+
}
|
|
428
|
+
.ids-side-panel.ids-side-panel--menu .ids-side-panel__footer {
|
|
429
|
+
width: 380px;
|
|
430
|
+
}
|
|
431
|
+
.ids-side-panel.ids-side-panel--menu.ids-side-panel--show {
|
|
432
|
+
position: relative;
|
|
433
|
+
width: 380px;
|
|
434
|
+
height: 100%;
|
|
435
|
+
transform: none;
|
|
436
|
+
transition: width 0.3s ease-in-out;
|
|
437
|
+
border-right: 1px solid var(--IDS-SIDE-PANEL__BORDER-COLOR);
|
|
438
|
+
}
|
|
439
|
+
.ids-side-panel.ids-side-panel--menu.ids-side-panel--elevated {
|
|
440
|
+
border-right: 0;
|
|
441
|
+
box-shadow: 3px 0 4px -2px rgba(0, 0, 0, 0.2);
|
|
442
|
+
}
|
|
443
|
+
.ids-side-panel.ids-side-panel--menu.ids-side-panel--elevated.ids-side-panel--show {
|
|
444
|
+
position: fixed;
|
|
196
445
|
width: 380px;
|
|
446
|
+
transform: translateX(330px);
|
|
447
|
+
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
197
448
|
}
|
|
198
449
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { css, unsafeCSS } from 'lit';
|
|
2
2
|
|
|
3
|
-
var css_248z = "@media (max-width:1023px){.ids-desktop{display:none!important}}@media (min-width:1024px){.ids-mobile{display:none!important}}:host([last]) .ids-step:after{content:none}.ids-stepper .ids-step:last-child:after{display:none}.ids-step{background-color
|
|
3
|
+
var css_248z = "@media (max-width:1023px){.ids-desktop{display:none!important}}@media (min-width:1024px){.ids-mobile{display:none!important}}:host([last]) .ids-step:after{content:none}.ids-stepper .ids-step:last-child:after{display:none}.ids-step{background-color:var(--IDS-COLOR-NEUTRAL-100);border:var(--IDS-STEP__BORDER);border-radius:5px;display:flex;flex-direction:column;margin-bottom:16px;padding:16px;position:relative}.ids-step:after{background-color:var(--IDS-STEP__AFTER-BACKGROUND-COLOR);bottom:-17px;content:\"\";height:16px;left:36px;position:absolute;width:4px}.ids-step .ids-step__label{color:var(--IDS-STEP__LABEL-COLOR);font-size:1rem}.ids-step .ids-step__button{background:none;border:none;border-radius:5px;cursor:pointer;display:block;width:100%}.ids-step .ids-step__button:focus{outline:var(--IDS-FOCUS_OUTLINE);outline-offset:var(--IDS-FOCUS_OUTLINE-OFFSET)!important}.ids-step .ids-step__button.ids-step__button--disabled{cursor:default;pointer-events:none}.ids-step .ids-step__button.ids-step__button--disabled .ids-step__label{color:var(--IDS-STEP--DISABLED__LABEL-COLOR);font-style:italic}.ids-step .ids-step__button.ids-step__button--disabled .ids-step__headline{color:var(--IDS-STEP--DISABLED__HEADLINE-COLOR);font-style:italic}.ids-step .ids-step__button.ids-step__button--disabled .ids-step__chevron{display:none}.ids-step .ids-step__button-inner{align-items:center;display:flex;justify-content:space-between}.ids-step .ids-step__button-text{display:flex;flex:1 auto}.ids-step .ids-step__indicator-wrapper{align-items:flex-start;display:flex}.ids-step .ids-step__indicator{align-items:center;background-color:var(--IDS-STEP__INDICATOR-BACKGROUND-COLOR);border:var(--IDS-STEP__INDICATOR-BORDER);border-radius:100px;color:var(--IDS-STEP__INDICATOR-COLOR);display:flex;flex-direction:column;font-family:var(--IDS-STEP__INDICATOR-FONT-FAMILY);font-size:1.25rem;font-weight:400!important;height:42px;justify-content:center;width:42px}.ids-step .ids-step__indicator.ids-step__indicator--selected{background-color:var(--IDS-STEP--SELECTED__INDICATOR-BACKGROUND-COLOR);color:var(--IDS-COLOR-NEUTRAL-100)}.ids-step .ids-step__indicator.ids-step__indicator--valid{background-color:var(--IDS-STEP--VALID__INDICATOR-BACKGROUND-COLOR);border:var(--IDS-STEP--VALID__INDICATOR-BORDER)}.ids-step .ids-step__indicator.ids-step__indicator--invalid{background-color:var(--IDS-STEP--INVALID__INDICATOR-BACKGROUND-COLOR);border:var(--IDS-STEP--INVALID__INDICATOR-BORDER)}.ids-step .ids-step__headline-label{align-self:center;display:flex;flex-direction:column;padding-left:16px}.ids-step .ids-step__label{align-self:flex-start;display:flex}.ids-step .ids-step__headline,.ids-step ::slotted([slot=headline]){color:var(--IDS-STEP__HEADLINE-COLOR);font-family:var(--IDS-STEP__HEADLINE-FONT-FAMILY);font-size:1.25rem;font-style:normal;font-weight:700;line-height:1.5rem;margin:0}.ids-step .ids-step__chevron{padding-left:10px;padding-right:10px}.ids-step .ids-step__content{padding:16px 0 0}@media only screen and (min-width:1024px){.ids-step{margin-bottom:20px}.ids-step:after{bottom:-21px;height:20px}.ids-step .ids-step__headline-label{padding-left:20px}.ids-step .ids-step__content{padding:20px 0 0 64px}}";
|
|
4
4
|
|
|
5
5
|
var stepperLit = css`${unsafeCSS(css_248z)}`;
|
|
6
6
|
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
margin-bottom: 16px;
|
|
35
35
|
padding: 16px;
|
|
36
36
|
position: relative;
|
|
37
|
-
border: var(--
|
|
37
|
+
border: var(--IDS-STEP__BORDER);
|
|
38
38
|
border-radius: 5px;
|
|
39
|
-
background-color:
|
|
39
|
+
background-color: var(--IDS-COLOR-NEUTRAL-100);
|
|
40
40
|
display: flex;
|
|
41
41
|
flex-direction: column;
|
|
42
42
|
}
|
|
43
43
|
.ids-step::after {
|
|
44
|
-
content: "
|
|
44
|
+
content: "";
|
|
45
45
|
position: absolute;
|
|
46
|
-
background-color: var(--
|
|
46
|
+
background-color: var(--IDS-STEP__AFTER-BACKGROUND-COLOR);
|
|
47
47
|
width: 4px;
|
|
48
48
|
height: 16px;
|
|
49
49
|
left: 36px;
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
}
|
|
52
52
|
.ids-step .ids-step__label {
|
|
53
53
|
font-size: 1rem;
|
|
54
|
-
color: var(--
|
|
54
|
+
color: var(--IDS-STEP__LABEL-COLOR);
|
|
55
55
|
}
|
|
56
56
|
.ids-step .ids-step__button {
|
|
57
57
|
width: 100%;
|
|
@@ -71,11 +71,11 @@
|
|
|
71
71
|
}
|
|
72
72
|
.ids-step .ids-step__button.ids-step__button--disabled .ids-step__label {
|
|
73
73
|
font-style: italic;
|
|
74
|
-
color: var(--
|
|
74
|
+
color: var(--IDS-STEP--DISABLED__LABEL-COLOR);
|
|
75
75
|
}
|
|
76
76
|
.ids-step .ids-step__button.ids-step__button--disabled .ids-step__headline {
|
|
77
77
|
font-style: italic;
|
|
78
|
-
color: var(--
|
|
78
|
+
color: var(--IDS-STEP--DISABLED__HEADLINE-COLOR);
|
|
79
79
|
}
|
|
80
80
|
.ids-step .ids-step__button.ids-step__button--disabled .ids-step__chevron {
|
|
81
81
|
display: none;
|
|
@@ -101,24 +101,24 @@
|
|
|
101
101
|
width: 42px;
|
|
102
102
|
height: 42px;
|
|
103
103
|
border-radius: 100px;
|
|
104
|
-
background-color: var(--
|
|
105
|
-
border: var(--
|
|
106
|
-
color: var(--
|
|
107
|
-
font-family: var(--
|
|
104
|
+
background-color: var(--IDS-STEP__INDICATOR-BACKGROUND-COLOR);
|
|
105
|
+
border: var(--IDS-STEP__INDICATOR-BORDER);
|
|
106
|
+
color: var(--IDS-STEP__INDICATOR-COLOR);
|
|
107
|
+
font-family: var(--IDS-STEP__INDICATOR-FONT-FAMILY);
|
|
108
108
|
font-weight: 400 !important;
|
|
109
109
|
font-size: 1.25rem;
|
|
110
110
|
}
|
|
111
111
|
.ids-step .ids-step__indicator.ids-step__indicator--selected {
|
|
112
|
-
background-color: var(--
|
|
113
|
-
color:
|
|
112
|
+
background-color: var(--IDS-STEP--SELECTED__INDICATOR-BACKGROUND-COLOR);
|
|
113
|
+
color: var(--IDS-COLOR-NEUTRAL-100);
|
|
114
114
|
}
|
|
115
115
|
.ids-step .ids-step__indicator.ids-step__indicator--valid {
|
|
116
|
-
background-color: var(--
|
|
117
|
-
border: var(--
|
|
116
|
+
background-color: var(--IDS-STEP--VALID__INDICATOR-BACKGROUND-COLOR);
|
|
117
|
+
border: var(--IDS-STEP--VALID__INDICATOR-BORDER);
|
|
118
118
|
}
|
|
119
119
|
.ids-step .ids-step__indicator.ids-step__indicator--invalid {
|
|
120
|
-
background-color: var(--
|
|
121
|
-
border: var(--
|
|
120
|
+
background-color: var(--IDS-STEP--INVALID__INDICATOR-BACKGROUND-COLOR);
|
|
121
|
+
border: var(--IDS-STEP--INVALID__INDICATOR-BORDER);
|
|
122
122
|
}
|
|
123
123
|
.ids-step .ids-step__headline-label {
|
|
124
124
|
padding-left: 16px;
|
|
@@ -132,12 +132,12 @@
|
|
|
132
132
|
}
|
|
133
133
|
.ids-step .ids-step__headline,
|
|
134
134
|
.ids-step ::slotted([slot=headline]) {
|
|
135
|
-
font-family: var(--
|
|
135
|
+
font-family: var(--IDS-STEP__HEADLINE-FONT-FAMILY);
|
|
136
136
|
font-style: normal;
|
|
137
137
|
font-weight: 700;
|
|
138
138
|
font-size: 1.25rem;
|
|
139
139
|
line-height: 1.5rem;
|
|
140
|
-
color: var(--
|
|
140
|
+
color: var(--IDS-STEP__HEADLINE-COLOR);
|
|
141
141
|
margin: 0;
|
|
142
142
|
}
|
|
143
143
|
.ids-step .ids-step__chevron {
|
|
@@ -2,7 +2,7 @@ import { css, unsafeCSS } from 'lit';
|
|
|
2
2
|
|
|
3
3
|
var css_248z$1 = ".ids-tabs{align-items:flex-end;border-bottom:var(--IDS-TABS_BORDER-BOTTOM);display:flex;gap:3px;height:3rem;padding:0 20px;position:relative}.ids-tabs.ids-tabs--unresponsive{display:flex!important}.ids-tabs.ids-tabs--has-icons{height:4.7em}.ids-tabs:before{bottom:0;box-shadow:inset 0 -4px 4px -4px rgba(0,0,0,.2);content:var(--IDS-TAB--SELECTED--BEFORE_CONTENT);height:.625rem;left:0;pointer-events:none;position:absolute;right:0}.ids-tab-panels{position:relative;z-index:1}";
|
|
4
4
|
|
|
5
|
-
var css_248z = ".ids-select{appearance:none!important;-webkit-appearance:none!important;-moz-appearance:none!important;background-color:var(--IDS-
|
|
5
|
+
var css_248z = ".ids-select{appearance:none!important;-webkit-appearance:none!important;-moz-appearance:none!important;background-color:var(--IDS-INPUT__BACKGROUND-COLOR);border-bottom:var(--IDS-INPUT__BORDER);border:var(--IDS-INPUT__BORDER);border-radius:var(--IDS-INPUT__BORDER-RADIUS);color:var(--IDS-INPUT__COLOR);cursor:pointer;display:block;display:inline-block!important;font-family:var(--font-family_1)!important;font-size:1rem;height:var(--IDS-INPUT__HEIGHT);overflow:hidden;padding:var(--IDS-INPUT__PADDING);padding-right:var(--IDS-INPUT__ICON-PADDING-RIGHT)!important;text-align:left;text-overflow:ellipsis;width:100%!important}.ids-select:disabled{background:var(--IDS-FORM--DISABLED__BACKGROUND-COLOR);border:var(--IDS-FORM--DISABLED__BORDER);color:var(--IDS-FORM--DISABLED__COLOR);font-style:italic!important}.ids-select.ids-input--invalid{background:var(--IDS-FORM--INVALID__BACKGROUND-COLOR);border:var(--IDS-FORM--INVALID__BORDER)}.ids-select.ids-input--light{background-color:var(--IDS-COLOR-NEUTRAL-100)}.ids-select.ids-input--light.ids-input--invalid{background:var(--IDS-FORM--INVALID__BACKGROUND-COLOR);border:var(--IDS-FORM--INVALID__BORDER)}.ids-select:disabled{cursor:default}.ids-select:disabled.ids-input--light{background-color:var(--IDS-COLOR-NEUTRAL-100);background:var(--IDS-FORM--DISABLED__BACKGROUND-COLOR);border:var(--IDS-FORM--DISABLED__BORDER);color:var(--IDS-FORM--DISABLED__COLOR);font-style:italic!important}.ids-select:focus{outline:var(--IDS-FOCUS_OUTLINE);outline-offset:var(--IDS-FOCUS_OUTLINE-OFFSET)!important}.ids-select-wrapper{display:flex;position:relative}.ids-select-wrapper:after{background-image:var(--IDS-SELECT__CHEVRON-ICON);background-position:50%;background-repeat:no-repeat;bottom:0;content:\"\";display:block;height:100%;pointer-events:none;position:absolute;right:var(--IDS-INPUT__ICON-RIGHT);top:0;transform:rotate(90deg);width:12px}.ids-select-wrapper:has(.ids-input--invalid):after{background-image:var(--IDS-SELECT--INVALID__CHEVRON-ICON)}.ids-select-wrapper:has(.ids-select:disabled):after{background-image:var(--IDS-SELECT--DISABLED__CHEVRON-ICON)}";
|
|
6
6
|
|
|
7
7
|
var tabsLit = css`${unsafeCSS(css_248z)} ${unsafeCSS(css_248z$1)}`;
|
|
8
8
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { css, unsafeCSS } from 'lit';
|
|
2
2
|
|
|
3
|
-
var css_248z = ":host{display:inline-flex}.ids-tooltip{display:inline-block;position:relative!important}.ids-tooltip .ids-tooltip__trigger{display:inline}.ids-tooltip .ids-tooltip__content{background-color:#fff;border:1px solid var(--
|
|
3
|
+
var css_248z = ":host{display:inline-flex}.ids-tooltip{display:inline-block;position:relative!important}.ids-tooltip .ids-tooltip__trigger{display:inline}.ids-tooltip .ids-tooltip__content{background-color:#fff;border:1px solid var(--IDS-TOOLTIP__BORDER-COLOR);border-radius:var(--IDS-BORDER-RADIUS);box-shadow:0 0 10px rgba(0,0,0,.3);box-sizing:border-box;color:var(--IDS-TOOLTIP__COLOR);display:none;max-width:90vw;padding:10px 20px;position:absolute;text-align:left;width:max-content;z-index:2}.ids-tooltip .ids-tooltip__content.ids-tooltip__content--top-left{left:0;top:-10px;transform:translateY(-100%)}.ids-tooltip .ids-tooltip__content.ids-tooltip__content--top{left:50%;top:-10px;transform:translate(-50%,-100%)}.ids-tooltip .ids-tooltip__content.ids-tooltip__content--top-right{right:0;top:-10px;transform:translateY(-100%)}.ids-tooltip .ids-tooltip__content.ids-tooltip__content--bottom-left{bottom:-10px;left:0;transform:translateY(100%)}.ids-tooltip .ids-tooltip__content.ids-tooltip__content--bottom{bottom:-10px;left:50%;transform:translate(-50%,100%)}.ids-tooltip .ids-tooltip__content.ids-tooltip__content--bottom-right{bottom:-10px;right:0;transform:translateY(100%)}.ids-tooltip:focus-within .ids-tooltip__content,.ids-tooltip:hover .ids-tooltip__content{display:inline-block}";
|
|
4
4
|
|
|
5
5
|
var tooltipLit = css`${unsafeCSS(css_248z)}`;
|
|
6
6
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
}
|
|
12
12
|
.ids-tooltip .ids-tooltip__content {
|
|
13
13
|
display: none;
|
|
14
|
-
color: var(--
|
|
14
|
+
color: var(--IDS-TOOLTIP__COLOR);
|
|
15
15
|
box-sizing: border-box;
|
|
16
16
|
position: absolute;
|
|
17
17
|
text-align: left;
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
max-width: 90vw;
|
|
20
20
|
z-index: 2;
|
|
21
21
|
background-color: white;
|
|
22
|
-
border: 1px solid var(--
|
|
22
|
+
border: 1px solid var(--IDS-TOOLTIP__BORDER-COLOR);
|
|
23
23
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
|
24
24
|
border-radius: var(--IDS-BORDER-RADIUS);
|
|
25
25
|
padding: 10px 20px;
|