@overmap-ai/blocks 1.0.31-master.1 → 1.0.31-minimize-size.2
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/dist/RiIcon/RiIcon.d.ts +107 -4
- package/dist/blocks.js +3172 -4049
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +10 -5099
- package/dist/blocks.umd.cjs.map +1 -1
- package/dist/style.css +1 -913
- package/package.json +2 -2
package/dist/style.css
CHANGED
|
@@ -1,913 +1 @@
|
|
|
1
|
-
._zeroMinWidth_curjh_1 {
|
|
2
|
-
min-width: 0;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
._zeroMinHeight_curjh_5 {
|
|
6
|
-
min-height: 0;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
._radius_curjh_9 {
|
|
10
|
-
border-radius: max(var(--radius-full), var(--radius-4));
|
|
11
|
-
}._fluid_r73gr_1 {
|
|
12
|
-
flex-grow: 1;
|
|
13
|
-
width: auto;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* * @param {string} $targetSelector - The selector of the child element(s) to apply the hover effect to
|
|
18
|
-
* * @param {string} $transitionProperty - The property to transition
|
|
19
|
-
* * @param {string} $normalValue - The value of the property when the element is not hovered
|
|
20
|
-
* * @param {string} $hoverValue - The value of the property when the element is hovered
|
|
21
|
-
* * @param {boolean} $overwriteTransition - Some elements already have a transition property set, so we can inherit
|
|
22
|
-
* * that transition and add our own transition on top of it. If the element doesn't have a transition already, this is
|
|
23
|
-
* * not valid syntax, so the implementing class needs to know if it should overwrite the transition or not.
|
|
24
|
-
* */
|
|
25
|
-
._hoverSpin90Clockwise_r73gr_15 > svg {
|
|
26
|
-
transition: unset;
|
|
27
|
-
}
|
|
28
|
-
._hoverSpin90Clockwise_r73gr_15 svg {
|
|
29
|
-
transition: transform 250ms ease-in-out !important;
|
|
30
|
-
}
|
|
31
|
-
._hoverSpin90Clockwise_r73gr_15:hover:not(:disabled) svg {
|
|
32
|
-
transform: rotate(90deg) !important;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
._hoverSpin180Clockwise_r73gr_25 > svg {
|
|
36
|
-
transition: unset;
|
|
37
|
-
}
|
|
38
|
-
._hoverSpin180Clockwise_r73gr_25 svg {
|
|
39
|
-
transition: transform 300ms ease-in-out !important;
|
|
40
|
-
}
|
|
41
|
-
._hoverSpin180Clockwise_r73gr_25:hover:not(:disabled) svg {
|
|
42
|
-
transform: rotate(180deg) !important;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
._hoverSpin360Clockwise_r73gr_35 > svg {
|
|
46
|
-
transition: unset;
|
|
47
|
-
}
|
|
48
|
-
._hoverSpin360Clockwise_r73gr_35 svg {
|
|
49
|
-
transition: transform 500ms ease-in-out !important;
|
|
50
|
-
}
|
|
51
|
-
._hoverSpin360Clockwise_r73gr_35:hover:not(:disabled) svg {
|
|
52
|
-
transform: rotate(360deg) !important;
|
|
53
|
-
}@keyframes _spin_1oknc_9 {
|
|
54
|
-
0% {
|
|
55
|
-
transform: rotate(0deg);
|
|
56
|
-
}
|
|
57
|
-
100% {
|
|
58
|
-
transform: rotate(360deg);
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
._spinner_1oknc_9 {
|
|
62
|
-
width: 16px;
|
|
63
|
-
height: 16px;
|
|
64
|
-
border-radius: 9999px;
|
|
65
|
-
border: 2px solid var(--gray-12);
|
|
66
|
-
border-bottom: 2px solid transparent;
|
|
67
|
-
animation: _spin_1oknc_9 1s linear infinite;
|
|
68
|
-
}._merged_wdgxo_1 > .rt-BaseButton:not(:first-of-type):not(:last-of-type) {
|
|
69
|
-
border-radius: 0;
|
|
70
|
-
}
|
|
71
|
-
._merged_wdgxo_1[data-direction=column] > .rt-BaseButton:first-of-type {
|
|
72
|
-
border-bottom-right-radius: 0;
|
|
73
|
-
border-bottom-left-radius: 0;
|
|
74
|
-
}
|
|
75
|
-
._merged_wdgxo_1[data-direction=column] > .rt-BaseButton:last-of-type {
|
|
76
|
-
border-top-left-radius: 0;
|
|
77
|
-
border-top-right-radius: 0;
|
|
78
|
-
}
|
|
79
|
-
._merged_wdgxo_1[data-direction=row] > .rt-BaseButton:first-of-type {
|
|
80
|
-
border-top-right-radius: 0;
|
|
81
|
-
border-bottom-right-radius: 0;
|
|
82
|
-
}
|
|
83
|
-
._merged_wdgxo_1[data-direction=row] > .rt-BaseButton:last-of-type {
|
|
84
|
-
border-top-left-radius: 0;
|
|
85
|
-
border-bottom-left-radius: 0;
|
|
86
|
-
}._separators_1f7v1_1 > *:not(:last-of-type) {
|
|
87
|
-
border-bottom: 1px solid var(--gray-a6);
|
|
88
|
-
}._OverlayContent_1nr9w_1 {
|
|
89
|
-
position: fixed;
|
|
90
|
-
inset: 0;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
._OverlayOverlay_1nr9w_6 {
|
|
94
|
-
position: fixed;
|
|
95
|
-
inset: 0;
|
|
96
|
-
}._fluid_7n1wr_1 {
|
|
97
|
-
flex-grow: 1;
|
|
98
|
-
width: auto;
|
|
99
|
-
}._default_u936h_1 {
|
|
100
|
-
cursor: var(--cursor-switch);
|
|
101
|
-
}
|
|
102
|
-
._default_u936h_1 span {
|
|
103
|
-
display: flex;
|
|
104
|
-
align-items: center;
|
|
105
|
-
justify-content: center;
|
|
106
|
-
}
|
|
107
|
-
._default_u936h_1 svg {
|
|
108
|
-
pointer-events: none;
|
|
109
|
-
cursor: inherit;
|
|
110
|
-
display: flex;
|
|
111
|
-
justify-content: center;
|
|
112
|
-
align-items: center;
|
|
113
|
-
}._sidebarContent_1onyo_1 {
|
|
114
|
-
position: absolute;
|
|
115
|
-
overflow: hidden;
|
|
116
|
-
top: 0;
|
|
117
|
-
bottom: 0;
|
|
118
|
-
}
|
|
119
|
-
._sidebarContent_1onyo_1._right_1onyo_7 {
|
|
120
|
-
right: 0;
|
|
121
|
-
}
|
|
122
|
-
._sidebarContent_1onyo_1._right_1onyo_7 ._resizeHandle_1onyo_10 {
|
|
123
|
-
left: 3px !important;
|
|
124
|
-
}
|
|
125
|
-
._sidebarContent_1onyo_1._left_1onyo_13 {
|
|
126
|
-
left: 0;
|
|
127
|
-
}
|
|
128
|
-
._sidebarContent_1onyo_1._left_1onyo_13 ._resizeHandle_1onyo_10 {
|
|
129
|
-
right: 3px !important;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
._resizeHandle_1onyo_10 {
|
|
133
|
-
position: absolute;
|
|
134
|
-
display: flex;
|
|
135
|
-
flex-direction: column;
|
|
136
|
-
align-items: center;
|
|
137
|
-
justify-content: center;
|
|
138
|
-
opacity: 0;
|
|
139
|
-
transition: opacity 200ms linear;
|
|
140
|
-
}
|
|
141
|
-
._resizeHandle_1onyo_10:hover, ._resizeHandle_1onyo_10:active, ._resizeHandle_1onyo_10:focus {
|
|
142
|
-
opacity: 1;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
._overlay_1onyo_33 {
|
|
146
|
-
position: absolute;
|
|
147
|
-
inset: 0;
|
|
148
|
-
background-color: var(--color-overlay);
|
|
149
|
-
}/** CSSTransition Classes for Right SlideOut */
|
|
150
|
-
._EnterRight_1jwyv_2 {
|
|
151
|
-
margin-right: calc(-1 * var(--slide-out-width));
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
._EnterActiveRight_1jwyv_6 {
|
|
155
|
-
transition: margin-right 200ms linear;
|
|
156
|
-
margin-right: 0;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
._EnterDoneRight_1jwyv_11 {
|
|
160
|
-
margin-right: 0;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
._ExitRight_1jwyv_15 {
|
|
164
|
-
margin-right: 0;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
._ExitActiveRight_1jwyv_19 {
|
|
168
|
-
transition: margin-right 200ms linear;
|
|
169
|
-
margin-right: calc(-1 * var(--slide-out-width));
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
._ExitDoneRight_1jwyv_24 {
|
|
173
|
-
margin-right: calc(-1 * var(--slide-out-width));
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
/** CSSTransition Classes for Left SlideOut */
|
|
177
|
-
._EnterLeft_1jwyv_29 {
|
|
178
|
-
margin-left: calc(-1 * var(--slide-out-width));
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
._EnterActiveLeft_1jwyv_33 {
|
|
182
|
-
transition: margin-left 200ms linear;
|
|
183
|
-
margin-left: 0;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
._EnterDoneLeft_1jwyv_38 {
|
|
187
|
-
margin-left: 0;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
._ExitLeft_1jwyv_42 {
|
|
191
|
-
margin-left: 0;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
._ExitActiveLeft_1jwyv_46 {
|
|
195
|
-
transition: margin-left 200ms linear;
|
|
196
|
-
margin-left: calc(-1 * var(--slide-out-width));
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
._ExitDoneLeft_1jwyv_51 {
|
|
200
|
-
margin-left: calc(-1 * var(--slide-out-width));
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
/** Other Classes */
|
|
204
|
-
._Overlay_1jwyv_56 {
|
|
205
|
-
position: absolute;
|
|
206
|
-
inset: 0;
|
|
207
|
-
}/** CSSTransition Classes for Right SlideOut */
|
|
208
|
-
._EnterRight_1jwyv_2 {
|
|
209
|
-
margin-right: calc(-1 * var(--slide-out-width));
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
._EnterActiveRight_1jwyv_6 {
|
|
213
|
-
transition: margin-right 200ms linear;
|
|
214
|
-
margin-right: 0;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
._EnterDoneRight_1jwyv_11 {
|
|
218
|
-
margin-right: 0;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
._ExitRight_1jwyv_15 {
|
|
222
|
-
margin-right: 0;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
._ExitActiveRight_1jwyv_19 {
|
|
226
|
-
transition: margin-right 200ms linear;
|
|
227
|
-
margin-right: calc(-1 * var(--slide-out-width));
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
._ExitDoneRight_1jwyv_24 {
|
|
231
|
-
margin-right: calc(-1 * var(--slide-out-width));
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
/** CSSTransition Classes for Left SlideOut */
|
|
235
|
-
._EnterLeft_1jwyv_29 {
|
|
236
|
-
margin-left: calc(-1 * var(--slide-out-width));
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
._EnterActiveLeft_1jwyv_33 {
|
|
240
|
-
transition: margin-left 200ms linear;
|
|
241
|
-
margin-left: 0;
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
._EnterDoneLeft_1jwyv_38 {
|
|
245
|
-
margin-left: 0;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
._ExitLeft_1jwyv_42 {
|
|
249
|
-
margin-left: 0;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
._ExitActiveLeft_1jwyv_46 {
|
|
253
|
-
transition: margin-left 200ms linear;
|
|
254
|
-
margin-left: calc(-1 * var(--slide-out-width));
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
._ExitDoneLeft_1jwyv_51 {
|
|
258
|
-
margin-left: calc(-1 * var(--slide-out-width));
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
/** Other Classes */
|
|
262
|
-
._Overlay_1jwyv_56 {
|
|
263
|
-
position: absolute;
|
|
264
|
-
inset: 0;
|
|
265
|
-
}._accommodateCharCount_1octa_1 {
|
|
266
|
-
margin-bottom: var(--line-height-1);
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
._wrapper_1octa_5 {
|
|
270
|
-
height: min-content;
|
|
271
|
-
flex-grow: 1;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
._default_1octa_10 {
|
|
275
|
-
width: 100%;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
._noLeftIcon_1octa_14 {
|
|
279
|
-
padding-left: 0.25rem;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
._noRightIcon_1octa_18 {
|
|
283
|
-
padding-right: 0.25rem;
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
._ghost_1octa_22 input {
|
|
287
|
-
text-indent: 0;
|
|
288
|
-
padding: 0;
|
|
289
|
-
}
|
|
290
|
-
._ghost_1octa_22 input:not(._noLeftIcon_1octa_14) {
|
|
291
|
-
padding-left: 0.25rem;
|
|
292
|
-
}
|
|
293
|
-
._ghost_1octa_22 input:not(._noRightIcon_1octa_18) {
|
|
294
|
-
padding-right: 0.25rem;
|
|
295
|
-
}
|
|
296
|
-
._ghost_1octa_22 div {
|
|
297
|
-
padding: 0;
|
|
298
|
-
outline: none;
|
|
299
|
-
box-shadow: none;
|
|
300
|
-
border: none;
|
|
301
|
-
background: transparent;
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
._charCount_1octa_40 {
|
|
305
|
-
position: absolute;
|
|
306
|
-
right: 0;
|
|
307
|
-
top: 98%;
|
|
308
|
-
font-size: xx-small !important;
|
|
309
|
-
}._ItemStack_tj494_1 {
|
|
310
|
-
--item-stack-offset: "unset";
|
|
311
|
-
}
|
|
312
|
-
._ItemStack_tj494_1._Row_tj494_4 > [data-item-stack]:not(:first-of-type) {
|
|
313
|
-
margin-left: calc(-1 * var(--item-stack-offset));
|
|
314
|
-
}
|
|
315
|
-
._ItemStack_tj494_1._Column_tj494_7 > [data-item-stack]:not(:first-of-type) {
|
|
316
|
-
margin-top: calc(-1 * var(--item-stack-offset));
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
._ItemStackItem_tj494_11 {
|
|
320
|
-
width: max-content;
|
|
321
|
-
height: max-content;
|
|
322
|
-
position: relative;
|
|
323
|
-
}._wrapper_tmtz0_1 {
|
|
324
|
-
height: max-content;
|
|
325
|
-
}._wrapper_1ssf2_1 {
|
|
326
|
-
position: relative;
|
|
327
|
-
overflow: hidden;
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
._panelContent_1ssf2_6 {
|
|
331
|
-
border: 0;
|
|
332
|
-
flex-shrink: 0;
|
|
333
|
-
min-width: 0;
|
|
334
|
-
overflow: hidden;
|
|
335
|
-
transition-property: transform, margin-right, margin-left;
|
|
336
|
-
box-shadow: var(--shadow-2);
|
|
337
|
-
}
|
|
338
|
-
._panelContent_1ssf2_6._left_1ssf2_14 {
|
|
339
|
-
transform: translateX(-100%);
|
|
340
|
-
margin-right: auto;
|
|
341
|
-
}
|
|
342
|
-
._panelContent_1ssf2_6._right_1ssf2_18 {
|
|
343
|
-
transform: translateX(100%);
|
|
344
|
-
margin-left: auto;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
._resizable_1ssf2_23 {
|
|
348
|
-
position: relative;
|
|
349
|
-
height: 100% !important;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
._resizeHandle_1ssf2_28 {
|
|
353
|
-
/* handleShift is a slight adjustment made to the resize handle created by Re-resizable library so that it */
|
|
354
|
-
/* renders flush with its container */
|
|
355
|
-
display: flex;
|
|
356
|
-
flex-direction: column;
|
|
357
|
-
align-items: center;
|
|
358
|
-
justify-content: center;
|
|
359
|
-
opacity: 0;
|
|
360
|
-
transition: opacity 200ms linear;
|
|
361
|
-
}
|
|
362
|
-
._resizeHandle_1ssf2_28:hover, ._resizeHandle_1ssf2_28:active {
|
|
363
|
-
opacity: 1;
|
|
364
|
-
}
|
|
365
|
-
._resizeHandle_1ssf2_28._right_1ssf2_18 {
|
|
366
|
-
left: 3px !important;
|
|
367
|
-
}
|
|
368
|
-
._resizeHandle_1ssf2_28._left_1ssf2_14 {
|
|
369
|
-
right: 3px !important;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
._panelMainContent_1ssf2_48 {
|
|
373
|
-
overflow: hidden;
|
|
374
|
-
flex-grow: 1;
|
|
375
|
-
flex-shrink: 1;
|
|
376
|
-
min-width: 0;
|
|
377
|
-
width: max-content;
|
|
378
|
-
}._multiPagePopover_16xvh_1 {
|
|
379
|
-
display: flex;
|
|
380
|
-
flex-direction: column;
|
|
381
|
-
gap: var(--space-2);
|
|
382
|
-
min-width: 150px !important;
|
|
383
|
-
justify-content: start;
|
|
384
|
-
align-items: start;
|
|
385
|
-
padding: 10px !important;
|
|
386
|
-
box-shadow: rgba(0, 0, 0, 0.09) 0 3px 12px !important;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
._pageTitle_16xvh_12 {
|
|
390
|
-
font-weight: bold !important;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
._buttonContainer_16xvh_16 {
|
|
394
|
-
display: flex;
|
|
395
|
-
flex-direction: row;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
._optionsButtonContainer_16xvh_21 {
|
|
399
|
-
width: 100%;
|
|
400
|
-
display: flex;
|
|
401
|
-
gap: 10px;
|
|
402
|
-
justify-content: center;
|
|
403
|
-
flex-direction: column !important;
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
._optionsButton_16xvh_21 {
|
|
407
|
-
width: 100% !important;
|
|
408
|
-
flex: 1;
|
|
409
|
-
justify-content: start !important;
|
|
410
|
-
}
|
|
411
|
-
._optionsButton_16xvh_21:hover {
|
|
412
|
-
background-color: rgba(0, 0, 0, 0.1) !important;
|
|
413
|
-
}._charCount_1lz28_1 {
|
|
414
|
-
font-size: x-small;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
._ghost_1lz28_5 textarea {
|
|
418
|
-
padding: 0;
|
|
419
|
-
}
|
|
420
|
-
._ghost_1lz28_5 * {
|
|
421
|
-
outline: none;
|
|
422
|
-
box-shadow: none;
|
|
423
|
-
background-color: transparent;
|
|
424
|
-
}._default_xqvoc_1 {
|
|
425
|
-
min-width: max-content;
|
|
426
|
-
}._ToastViewport_1i6bp_1 {
|
|
427
|
-
--viewport-padding: var(--space-5);
|
|
428
|
-
position: fixed;
|
|
429
|
-
top: 0;
|
|
430
|
-
right: 0;
|
|
431
|
-
display: flex;
|
|
432
|
-
gap: var(--space-3);
|
|
433
|
-
flex-direction: column;
|
|
434
|
-
padding: var(--viewport-padding);
|
|
435
|
-
width: 390px;
|
|
436
|
-
max-width: 100vw;
|
|
437
|
-
margin: 0;
|
|
438
|
-
list-style: none;
|
|
439
|
-
z-index: 2147483647;
|
|
440
|
-
outline: none;
|
|
441
|
-
overflow-y: auto;
|
|
442
|
-
overflow-x: hidden;
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
._actionButton_1i6bp_20 {
|
|
446
|
-
width: max-content;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
._ToastRoot_1i6bp_24._ToastRoot_1i6bp_24 {
|
|
450
|
-
background-color: var(--accent-2);
|
|
451
|
-
display: block;
|
|
452
|
-
box-shadow: var(--shadow-4);
|
|
453
|
-
}
|
|
454
|
-
._ToastRoot_1i6bp_24._ToastRoot_1i6bp_24[data-state=open] {
|
|
455
|
-
animation: _slideIn_1i6bp_1 150ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
456
|
-
}
|
|
457
|
-
._ToastRoot_1i6bp_24._ToastRoot_1i6bp_24[data-swipe=move] {
|
|
458
|
-
transform: translateX(var(--radix-toast-swipe-move-x));
|
|
459
|
-
}
|
|
460
|
-
._ToastRoot_1i6bp_24._ToastRoot_1i6bp_24[data-swipe=cancel] {
|
|
461
|
-
transform: translateX(0);
|
|
462
|
-
transition: transform 200ms ease-out;
|
|
463
|
-
}
|
|
464
|
-
._ToastRoot_1i6bp_24._ToastRoot_1i6bp_24[data-swipe=end] {
|
|
465
|
-
animation: _swipeOut_1i6bp_1 100ms ease-out;
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
@keyframes _slideIn_1i6bp_1 {
|
|
469
|
-
from {
|
|
470
|
-
transform: translateX(calc(100% + var(--viewport-padding)));
|
|
471
|
-
}
|
|
472
|
-
to {
|
|
473
|
-
transform: translateX(0);
|
|
474
|
-
}
|
|
475
|
-
}
|
|
476
|
-
@keyframes _swipeOut_1i6bp_1 {
|
|
477
|
-
from {
|
|
478
|
-
transform: translateX(var(--radix-toast-swipe-end-x));
|
|
479
|
-
}
|
|
480
|
-
to {
|
|
481
|
-
transform: translateX(calc(100% + var(--viewport-padding)));
|
|
482
|
-
}
|
|
483
|
-
}._default_1odpt_1 {
|
|
484
|
-
background-color: var(--color-panel-solid);
|
|
485
|
-
box-shadow: var(--shadow-2);
|
|
486
|
-
height: max-content;
|
|
487
|
-
width: max-content;
|
|
488
|
-
}
|
|
489
|
-
._default_1odpt_1 p {
|
|
490
|
-
color: var(--gray-12) !important;
|
|
491
|
-
}
|
|
492
|
-
._default_1odpt_1 span {
|
|
493
|
-
display: none;
|
|
494
|
-
}._ToggleButton_13aus_1[data-state=on][data-variant=solid] {
|
|
495
|
-
outline: 2px solid var(--color-focus-root);
|
|
496
|
-
outline-offset: 2px;
|
|
497
|
-
}
|
|
498
|
-
._ToggleButton_13aus_1[data-state=on][data-variant=solid][data-accent-color=gray] {
|
|
499
|
-
outline-color: var(--accent-8);
|
|
500
|
-
}
|
|
501
|
-
._ToggleButton_13aus_1[data-state=on][data-variant=soft], ._ToggleButton_13aus_1[data-state=on][data-variant=surface], ._ToggleButton_13aus_1[data-state=on][data-variant=outline] {
|
|
502
|
-
background: var(--accent-9);
|
|
503
|
-
color: var(--accent-9-contrast);
|
|
504
|
-
}
|
|
505
|
-
._ToggleButton_13aus_1[data-state=on][data-variant=ghost] {
|
|
506
|
-
background-color: var(--accent-a5);
|
|
507
|
-
}._noWrap_1wpa5_1 {
|
|
508
|
-
white-space: nowrap;
|
|
509
|
-
overflow: hidden;
|
|
510
|
-
text-overflow: ellipsis;
|
|
511
|
-
display: block;
|
|
512
|
-
}/*
|
|
513
|
-
Doubling up on the radix-themes class to increase specificity over the default.
|
|
514
|
-
Note: the class name must be "radix-themes" for nested themes to work.
|
|
515
|
-
|
|
516
|
-
See documentation at https://www.radix-ui.com/themes/docs/theme/token-reference
|
|
517
|
-
*/
|
|
518
|
-
.radix-themes.radix-themes {
|
|
519
|
-
--cursor-button: pointer;
|
|
520
|
-
--cursor-menu-item: pointer;
|
|
521
|
-
--cursor-checkbox: pointer;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.rt-BaseButton {
|
|
525
|
-
/* fix the cursor token only being applied to HTML buttons */
|
|
526
|
-
cursor: var(--cursor-button);
|
|
527
|
-
}
|
|
528
|
-
._light_1u8fs_1 span {
|
|
529
|
-
color: var(--gray-a3);
|
|
530
|
-
}
|
|
531
|
-
._light_1u8fs_1 [role=separator] {
|
|
532
|
-
background-color: var(--gray-a3);
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
._bold_1u8fs_8 span {
|
|
536
|
-
color: var(--gray-a9);
|
|
537
|
-
}
|
|
538
|
-
._bold_1u8fs_8 [role=separator] {
|
|
539
|
-
background-color: var(--gray-a9);
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
._full_1u8fs_15 span {
|
|
543
|
-
color: var(--gray-a12);
|
|
544
|
-
}
|
|
545
|
-
._full_1u8fs_15 [role=separator] {
|
|
546
|
-
background-color: var(--gray-a12);
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
._Text_1u8fs_22 {
|
|
550
|
-
color: var(--gray-a6);
|
|
551
|
-
}._OvermapInputItem_1jgzv_1 {
|
|
552
|
-
outline: none;
|
|
553
|
-
width: 100%;
|
|
554
|
-
height: 100%;
|
|
555
|
-
border: none;
|
|
556
|
-
background: transparent;
|
|
557
|
-
font-size: inherit;
|
|
558
|
-
}@keyframes _slideUpAndFade_t7a5i_1 {
|
|
559
|
-
from {
|
|
560
|
-
opacity: 0;
|
|
561
|
-
transform: translateY(2px);
|
|
562
|
-
}
|
|
563
|
-
to {
|
|
564
|
-
opacity: 1;
|
|
565
|
-
transform: translateY(0);
|
|
566
|
-
}
|
|
567
|
-
}
|
|
568
|
-
@keyframes _slideRightAndFade_t7a5i_1 {
|
|
569
|
-
from {
|
|
570
|
-
opacity: 0;
|
|
571
|
-
transform: translateX(-2px);
|
|
572
|
-
}
|
|
573
|
-
to {
|
|
574
|
-
opacity: 1;
|
|
575
|
-
transform: translateX(0);
|
|
576
|
-
}
|
|
577
|
-
}
|
|
578
|
-
@keyframes _slideDownAndFade_t7a5i_1 {
|
|
579
|
-
from {
|
|
580
|
-
opacity: 0;
|
|
581
|
-
transform: translateY(-2px);
|
|
582
|
-
}
|
|
583
|
-
to {
|
|
584
|
-
opacity: 1;
|
|
585
|
-
transform: translateY(0);
|
|
586
|
-
}
|
|
587
|
-
}
|
|
588
|
-
@keyframes _slideLeftAndFade_t7a5i_1 {
|
|
589
|
-
from {
|
|
590
|
-
opacity: 0;
|
|
591
|
-
transform: translateX(2px);
|
|
592
|
-
}
|
|
593
|
-
to {
|
|
594
|
-
opacity: 1;
|
|
595
|
-
transform: translateX(0);
|
|
596
|
-
}
|
|
597
|
-
}
|
|
598
|
-
._MenuContent_t7a5i_41 {
|
|
599
|
-
width: max-content;
|
|
600
|
-
height: max-content;
|
|
601
|
-
display: flex;
|
|
602
|
-
flex-direction: column;
|
|
603
|
-
min-height: max-content;
|
|
604
|
-
outline: none;
|
|
605
|
-
z-index: auto;
|
|
606
|
-
pointer-events: all;
|
|
607
|
-
}
|
|
608
|
-
._MenuContent_t7a5i_41._Dialog_t7a5i_51 {
|
|
609
|
-
width: min(100%, 500px);
|
|
610
|
-
min-width: 350px;
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
._MenuContentInner_t7a5i_56 {
|
|
614
|
-
outline: none;
|
|
615
|
-
background: var(--color-panel-solid);
|
|
616
|
-
box-shadow: var(--shadow-3);
|
|
617
|
-
border-radius: var(--radius-2);
|
|
618
|
-
box-sizing: border-box;
|
|
619
|
-
min-width: max-content;
|
|
620
|
-
padding: 8px;
|
|
621
|
-
display: flex;
|
|
622
|
-
overflow: hidden;
|
|
623
|
-
flex-direction: column;
|
|
624
|
-
animation-duration: 400ms;
|
|
625
|
-
animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
|
|
626
|
-
}
|
|
627
|
-
._MenuContentInner_t7a5i_56[data-side=top] {
|
|
628
|
-
animation-name: _slideDownAndFade_t7a5i_1;
|
|
629
|
-
}
|
|
630
|
-
._MenuContentInner_t7a5i_56[data-side=right] {
|
|
631
|
-
animation-name: _slideLeftAndFade_t7a5i_1;
|
|
632
|
-
}
|
|
633
|
-
._MenuContentInner_t7a5i_56[data-side=bottom] {
|
|
634
|
-
animation-name: _slideUpAndFade_t7a5i_1;
|
|
635
|
-
}
|
|
636
|
-
._MenuContentInner_t7a5i_56[data-side=left] {
|
|
637
|
-
animation-name: _slideRightAndFade_t7a5i_1;
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
._MenuOverlay_t7a5i_83 {
|
|
641
|
-
overflow: hidden;
|
|
642
|
-
display: flex;
|
|
643
|
-
padding: 64px 12px 64px 12px;
|
|
644
|
-
justify-content: center;
|
|
645
|
-
pointer-events: none;
|
|
646
|
-
}
|
|
647
|
-
._MenuOverlay_t7a5i_83._Modal_t7a5i_90 {
|
|
648
|
-
pointer-events: all;
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
._MenuItem_t7a5i_94 {
|
|
652
|
-
position: relative;
|
|
653
|
-
outline: none;
|
|
654
|
-
user-select: none;
|
|
655
|
-
color: var(--gray-a12);
|
|
656
|
-
}
|
|
657
|
-
._MenuItem_t7a5i_94:after {
|
|
658
|
-
content: "";
|
|
659
|
-
position: absolute;
|
|
660
|
-
inset: 0;
|
|
661
|
-
background-color: transparent;
|
|
662
|
-
border-radius: var(--radius-2);
|
|
663
|
-
}
|
|
664
|
-
._MenuItem_t7a5i_94[data-disabled] {
|
|
665
|
-
cursor: not-allowed;
|
|
666
|
-
color: var(--gray-a10);
|
|
667
|
-
}
|
|
668
|
-
._MenuItem_t7a5i_94[data-open=true]:not([data-disabled]):after {
|
|
669
|
-
background-color: var(--gray-a2);
|
|
670
|
-
}
|
|
671
|
-
._MenuItem_t7a5i_94[data-highlighted]:not([data-disabled]):after {
|
|
672
|
-
background-color: var(--gray-a4);
|
|
673
|
-
}
|
|
674
|
-
._MenuItem_t7a5i_94:active:not([data-disabled]):after {
|
|
675
|
-
background-color: var(--gray-a5);
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
._MenuSeparator_t7a5i_121._paddingBottom_t7a5i_121 {
|
|
679
|
-
padding-bottom: 8px;
|
|
680
|
-
}
|
|
681
|
-
._MenuSeparator_t7a5i_121._paddingTop_t7a5i_124 {
|
|
682
|
-
padding-top: 8px;
|
|
683
|
-
}
|
|
684
|
-
._MenuSeparator_t7a5i_121._extend_t7a5i_127 {
|
|
685
|
-
margin: 0 -8px;
|
|
686
|
-
}
|
|
687
|
-
|
|
688
|
-
._MenuContentScrollArea_t7a5i_131 {
|
|
689
|
-
overflow: hidden;
|
|
690
|
-
width: 100%;
|
|
691
|
-
flex-grow: 1;
|
|
692
|
-
}
|
|
693
|
-
._MenuContentScrollArea_t7a5i_131 > [data-orientation=vertical] {
|
|
694
|
-
right: calc(-1 * var(--scrollarea-scrollbar-size)) !important;
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
._MenuContentScrollAreaWrapper_t7a5i_140 {
|
|
698
|
-
overflow: hidden;
|
|
699
|
-
flex-grow: 1;
|
|
700
|
-
display: flex;
|
|
701
|
-
flex-direction: column;
|
|
702
|
-
margin: 0 -8px;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
._ScrollAreaContent_t7a5i_148 {
|
|
706
|
-
padding: 0 8px;
|
|
707
|
-
}button {
|
|
708
|
-
all: unset;
|
|
709
|
-
}
|
|
710
|
-
|
|
711
|
-
._checkbox_yl8iy_5 {
|
|
712
|
-
background-color: var(--color-panel-solid);
|
|
713
|
-
width: 15px;
|
|
714
|
-
height: 15px;
|
|
715
|
-
border-radius: 4px;
|
|
716
|
-
display: flex;
|
|
717
|
-
align-items: center;
|
|
718
|
-
justify-content: center;
|
|
719
|
-
background-color: var(--color-surface);
|
|
720
|
-
box-shadow: inset 0 0 0 1px var(--gray-a7);
|
|
721
|
-
cursor: var(--cursor-checkbox);
|
|
722
|
-
}
|
|
723
|
-
._checkbox_yl8iy_5 [data-state=checked], ._checkbox_yl8iy_5 [data-state=indeterminate] {
|
|
724
|
-
background-color: var(--accent-9);
|
|
725
|
-
color: var(--accent-9-contrast);
|
|
726
|
-
}
|
|
727
|
-
|
|
728
|
-
._checkboxIndicator_yl8iy_22 {
|
|
729
|
-
display: flex;
|
|
730
|
-
align-items: center;
|
|
731
|
-
justify-content: center;
|
|
732
|
-
justify-items: center;
|
|
733
|
-
height: 100%;
|
|
734
|
-
width: 100%;
|
|
735
|
-
border-radius: 4px;
|
|
736
|
-
padding-right: 0.5px;
|
|
737
|
-
}
|
|
738
|
-
|
|
739
|
-
._checkboxLabel_yl8iy_33 {
|
|
740
|
-
padding-left: 0.5rem;
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
._noTextHighlight_yl8iy_37 {
|
|
744
|
-
-webkit-touch-callout: none;
|
|
745
|
-
-webkit-user-select: none;
|
|
746
|
-
-khtml-user-select: none;
|
|
747
|
-
-moz-user-select: none;
|
|
748
|
-
-ms-user-select: none;
|
|
749
|
-
user-select: none;
|
|
750
|
-
}
|
|
751
|
-
|
|
752
|
-
._checkboxHidden_yl8iy_46 {
|
|
753
|
-
visibility: hidden;
|
|
754
|
-
}._disabled_5i91d_1 {
|
|
755
|
-
color: var(--gray-a10);
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
._outerTableContainer_5i91d_5 {
|
|
759
|
-
padding: 30px;
|
|
760
|
-
border: 1px solid var(--gray-a4);
|
|
761
|
-
border-radius: 0.5rem;
|
|
762
|
-
box-shadow: var(--shadow-4);
|
|
763
|
-
}
|
|
764
|
-
@media only screen and (max-width: 600px) {
|
|
765
|
-
._outerTableContainer_5i91d_5 {
|
|
766
|
-
padding: 10px;
|
|
767
|
-
}
|
|
768
|
-
}
|
|
769
|
-
|
|
770
|
-
._headerContainer_5i91d_17 {
|
|
771
|
-
padding-bottom: 1rem;
|
|
772
|
-
}
|
|
773
|
-
|
|
774
|
-
._tableTopContainer_5i91d_21 {
|
|
775
|
-
padding: 10px 0;
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
._tableContainer_5i91d_25 {
|
|
779
|
-
flex: 1;
|
|
780
|
-
overflow-y: auto;
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
._searchContainer_5i91d_30 {
|
|
784
|
-
display: block;
|
|
785
|
-
width: 250px;
|
|
786
|
-
}
|
|
787
|
-
@media only screen and (max-width: 600px) {
|
|
788
|
-
._searchContainer_5i91d_30 {
|
|
789
|
-
width: auto;
|
|
790
|
-
}
|
|
791
|
-
}
|
|
792
|
-
|
|
793
|
-
._columnFilterSelect_5i91d_40 {
|
|
794
|
-
display: block;
|
|
795
|
-
box-shadow: none;
|
|
796
|
-
}
|
|
797
|
-
._columnFilterSelect_5i91d_40 svg {
|
|
798
|
-
display: none;
|
|
799
|
-
}
|
|
800
|
-
._columnFilterSelect_5i91d_40:hover {
|
|
801
|
-
background-color: rgba(0, 0, 0, 0.01);
|
|
802
|
-
cursor: pointer;
|
|
803
|
-
}
|
|
804
|
-
|
|
805
|
-
._table_5i91d_21 {
|
|
806
|
-
border: 1px solid var(--gray-a4);
|
|
807
|
-
border-radius: 3px !important;
|
|
808
|
-
background-color: inherit;
|
|
809
|
-
}
|
|
810
|
-
|
|
811
|
-
._tableHeaderCell_5i91d_58 {
|
|
812
|
-
background-color: var(--color-background) !important;
|
|
813
|
-
padding: 10px !important;
|
|
814
|
-
border-bottom: 1px solid var(--gray-4);
|
|
815
|
-
max-height: 110px;
|
|
816
|
-
}
|
|
817
|
-
._tableHeaderCell_5i91d_58 svg {
|
|
818
|
-
visibility: hidden;
|
|
819
|
-
}
|
|
820
|
-
@media only screen and (max-width: 600px) {
|
|
821
|
-
._tableHeaderCell_5i91d_58 div[title] > div:first-child {
|
|
822
|
-
overflow: visible;
|
|
823
|
-
white-space: normal;
|
|
824
|
-
}
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
._showSortIcon_5i91d_74 svg {
|
|
828
|
-
visibility: visible;
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
._tableRow_5i91d_78 {
|
|
832
|
-
background-color: inherit;
|
|
833
|
-
/* This for the CellSelect checkbox component as it does not accept a className prop */
|
|
834
|
-
}
|
|
835
|
-
._tableRow_5i91d_78 span, ._tableRow_5i91d_78 i {
|
|
836
|
-
display: inline-flex;
|
|
837
|
-
place-self: center;
|
|
838
|
-
}
|
|
839
|
-
._tableRow_5i91d_78 td {
|
|
840
|
-
padding-left: 10px !important;
|
|
841
|
-
}
|
|
842
|
-
._tableRow_5i91d_78:hover:not(._disabled_5i91d_1) {
|
|
843
|
-
background-color: var(--gray-a4);
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
._tableCell_5i91d_93 {
|
|
847
|
-
padding: 10px !important;
|
|
848
|
-
}
|
|
849
|
-
._tableCell_5i91d_93 > div > span:first-child {
|
|
850
|
-
width: 100%;
|
|
851
|
-
}
|
|
852
|
-
._tableCell_5i91d_93:not(:last-of-type) {
|
|
853
|
-
padding-right: 20px !important;
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
._noDataTextContainer_5i91d_103 {
|
|
857
|
-
padding: 0.5rem 10px;
|
|
858
|
-
color: #616161;
|
|
859
|
-
width: max-content;
|
|
860
|
-
}
|
|
861
|
-
|
|
862
|
-
._tableBottomContainer_5i91d_109 {
|
|
863
|
-
padding: 15px 0;
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
._rowsPerPageContainer_5i91d_113 {
|
|
867
|
-
flex: 1;
|
|
868
|
-
}
|
|
869
|
-
@media only screen and (max-width: 600px) {
|
|
870
|
-
._rowsPerPageContainer_5i91d_113 {
|
|
871
|
-
justify-content: center;
|
|
872
|
-
padding-top: 5px;
|
|
873
|
-
}
|
|
874
|
-
}
|
|
875
|
-
|
|
876
|
-
._rowsPerPageText_5i91d_123 {
|
|
877
|
-
padding-right: 10px;
|
|
878
|
-
padding-top: 4px;
|
|
879
|
-
}
|
|
880
|
-
|
|
881
|
-
._pageText_5i91d_128 {
|
|
882
|
-
padding-top: 4px;
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
._descriptionSecondLine_5i91d_132 {
|
|
886
|
-
white-space: nowrap;
|
|
887
|
-
overflow: hidden;
|
|
888
|
-
text-overflow: ellipsis;
|
|
889
|
-
}._editableTextContainer_174g6_1 {
|
|
890
|
-
align-items: center;
|
|
891
|
-
}
|
|
892
|
-
|
|
893
|
-
._editableTextText_174g6_5 div {
|
|
894
|
-
outline: none;
|
|
895
|
-
box-shadow: none;
|
|
896
|
-
border: none;
|
|
897
|
-
background: transparent;
|
|
898
|
-
}
|
|
899
|
-
._editableTextText_174g6_5 input {
|
|
900
|
-
font-size: var(--font-size-3);
|
|
901
|
-
}
|
|
902
|
-
._editableTextText_174g6_5 .rt-TextFieldInput:where(:disabled, :read-only) {
|
|
903
|
-
color: unset;
|
|
904
|
-
-webkit-text-fill-color: unset;
|
|
905
|
-
}
|
|
906
|
-
|
|
907
|
-
._editableTextInput_174g6_19 input {
|
|
908
|
-
font-size: var(--font-size-3);
|
|
909
|
-
}
|
|
910
|
-
|
|
911
|
-
._iconHidden_174g6_23 {
|
|
912
|
-
visibility: hidden;
|
|
913
|
-
}
|
|
1
|
+
._zeroMinWidth_curjh_1{min-width:0}._zeroMinHeight_curjh_5{min-height:0}._radius_curjh_9{border-radius:max(var(--radius-full),var(--radius-4))}._fluid_r73gr_1{flex-grow:1;width:auto}._hoverSpin90Clockwise_r73gr_15>svg{transition:unset}._hoverSpin90Clockwise_r73gr_15 svg{transition:transform .25s ease-in-out!important}._hoverSpin90Clockwise_r73gr_15:hover:not(:disabled) svg{transform:rotate(90deg)!important}._hoverSpin180Clockwise_r73gr_25>svg{transition:unset}._hoverSpin180Clockwise_r73gr_25 svg{transition:transform .3s ease-in-out!important}._hoverSpin180Clockwise_r73gr_25:hover:not(:disabled) svg{transform:rotate(180deg)!important}._hoverSpin360Clockwise_r73gr_35>svg{transition:unset}._hoverSpin360Clockwise_r73gr_35 svg{transition:transform .5s ease-in-out!important}._hoverSpin360Clockwise_r73gr_35:hover:not(:disabled) svg{transform:rotate(360deg)!important}@keyframes _spin_1oknc_9{0%{transform:rotate(0)}to{transform:rotate(360deg)}}._spinner_1oknc_9{width:16px;height:16px;border-radius:9999px;border:2px solid var(--gray-12);border-bottom:2px solid transparent;animation:_spin_1oknc_9 1s linear infinite}._merged_wdgxo_1>.rt-BaseButton:not(:first-of-type):not(:last-of-type){border-radius:0}._merged_wdgxo_1[data-direction=column]>.rt-BaseButton:first-of-type{border-bottom-right-radius:0;border-bottom-left-radius:0}._merged_wdgxo_1[data-direction=column]>.rt-BaseButton:last-of-type{border-top-left-radius:0;border-top-right-radius:0}._merged_wdgxo_1[data-direction=row]>.rt-BaseButton:first-of-type{border-top-right-radius:0;border-bottom-right-radius:0}._merged_wdgxo_1[data-direction=row]>.rt-BaseButton:last-of-type{border-top-left-radius:0;border-bottom-left-radius:0}._separators_1f7v1_1>*:not(:last-of-type){border-bottom:1px solid var(--gray-a6)}._OverlayContent_1nr9w_1,._OverlayOverlay_1nr9w_6{position:fixed;top:0;right:0;bottom:0;left:0}._fluid_7n1wr_1{flex-grow:1;width:auto}._default_u936h_1{cursor:var(--cursor-switch)}._default_u936h_1 span{display:flex;align-items:center;justify-content:center}._default_u936h_1 svg{pointer-events:none;cursor:inherit;display:flex;justify-content:center;align-items:center}._sidebarContent_1onyo_1{position:absolute;overflow:hidden;top:0;bottom:0}._sidebarContent_1onyo_1._right_1onyo_7{right:0}._sidebarContent_1onyo_1._right_1onyo_7 ._resizeHandle_1onyo_10{left:3px!important}._sidebarContent_1onyo_1._left_1onyo_13{left:0}._sidebarContent_1onyo_1._left_1onyo_13 ._resizeHandle_1onyo_10{right:3px!important}._resizeHandle_1onyo_10{position:absolute;display:flex;flex-direction:column;align-items:center;justify-content:center;opacity:0;transition:opacity .2s linear}._resizeHandle_1onyo_10:hover,._resizeHandle_1onyo_10:active,._resizeHandle_1onyo_10:focus{opacity:1}._overlay_1onyo_33{position:absolute;top:0;right:0;bottom:0;left:0;background-color:var(--color-overlay)}._EnterRight_1jwyv_2{margin-right:calc(-1 * var(--slide-out-width))}._EnterActiveRight_1jwyv_6{transition:margin-right .2s linear;margin-right:0}._EnterDoneRight_1jwyv_11,._ExitRight_1jwyv_15{margin-right:0}._ExitActiveRight_1jwyv_19{transition:margin-right .2s linear;margin-right:calc(-1 * var(--slide-out-width))}._ExitDoneRight_1jwyv_24{margin-right:calc(-1 * var(--slide-out-width))}._EnterLeft_1jwyv_29{margin-left:calc(-1 * var(--slide-out-width))}._EnterActiveLeft_1jwyv_33{transition:margin-left .2s linear;margin-left:0}._EnterDoneLeft_1jwyv_38,._ExitLeft_1jwyv_42{margin-left:0}._ExitActiveLeft_1jwyv_46{transition:margin-left .2s linear;margin-left:calc(-1 * var(--slide-out-width))}._ExitDoneLeft_1jwyv_51{margin-left:calc(-1 * var(--slide-out-width))}._Overlay_1jwyv_56{position:absolute;top:0;right:0;bottom:0;left:0}._accommodateCharCount_1octa_1{margin-bottom:var(--line-height-1)}._wrapper_1octa_5{height:min-content;flex-grow:1}._default_1octa_10{width:100%}._noLeftIcon_1octa_14{padding-left:.25rem}._noRightIcon_1octa_18{padding-right:.25rem}._ghost_1octa_22 input{text-indent:0;padding:0}._ghost_1octa_22 input:not(._noLeftIcon_1octa_14){padding-left:.25rem}._ghost_1octa_22 input:not(._noRightIcon_1octa_18){padding-right:.25rem}._ghost_1octa_22 div{padding:0;outline:none;box-shadow:none;border:none;background:transparent}._charCount_1octa_40{position:absolute;right:0;top:98%;font-size:xx-small!important}._ItemStack_tj494_1{--item-stack-offset: "unset"}._ItemStack_tj494_1._Row_tj494_4>[data-item-stack]:not(:first-of-type){margin-left:calc(-1 * var(--item-stack-offset))}._ItemStack_tj494_1._Column_tj494_7>[data-item-stack]:not(:first-of-type){margin-top:calc(-1 * var(--item-stack-offset))}._ItemStackItem_tj494_11{width:max-content;height:max-content;position:relative}._wrapper_tmtz0_1{height:max-content}._wrapper_1ssf2_1{position:relative;overflow:hidden}._panelContent_1ssf2_6{border:0;flex-shrink:0;min-width:0;overflow:hidden;transition-property:transform,margin-right,margin-left;box-shadow:var(--shadow-2)}._panelContent_1ssf2_6._left_1ssf2_14{transform:translate(-100%);margin-right:auto}._panelContent_1ssf2_6._right_1ssf2_18{transform:translate(100%);margin-left:auto}._resizable_1ssf2_23{position:relative;height:100%!important}._resizeHandle_1ssf2_28{display:flex;flex-direction:column;align-items:center;justify-content:center;opacity:0;transition:opacity .2s linear}._resizeHandle_1ssf2_28:hover,._resizeHandle_1ssf2_28:active{opacity:1}._resizeHandle_1ssf2_28._right_1ssf2_18{left:3px!important}._resizeHandle_1ssf2_28._left_1ssf2_14{right:3px!important}._panelMainContent_1ssf2_48{overflow:hidden;flex-grow:1;flex-shrink:1;min-width:0;width:max-content}._multiPagePopover_16xvh_1{display:flex;flex-direction:column;gap:var(--space-2);min-width:150px!important;justify-content:start;align-items:start;padding:10px!important;box-shadow:#00000017 0 3px 12px!important}._pageTitle_16xvh_12{font-weight:700!important}._buttonContainer_16xvh_16{display:flex;flex-direction:row}._optionsButtonContainer_16xvh_21{width:100%;display:flex;gap:10px;justify-content:center;flex-direction:column!important}._optionsButton_16xvh_21{width:100%!important;flex:1;justify-content:start!important}._optionsButton_16xvh_21:hover{background-color:#0000001a!important}._charCount_1lz28_1{font-size:x-small}._ghost_1lz28_5 textarea{padding:0}._ghost_1lz28_5 *{outline:none;box-shadow:none;background-color:transparent}._default_xqvoc_1{min-width:max-content}._ToastViewport_1i6bp_1{--viewport-padding: var(--space-5);position:fixed;top:0;right:0;display:flex;gap:var(--space-3);flex-direction:column;padding:var(--viewport-padding);width:390px;max-width:100vw;margin:0;list-style:none;z-index:2147483647;outline:none;overflow-y:auto;overflow-x:hidden}._actionButton_1i6bp_20{width:max-content}._ToastRoot_1i6bp_24._ToastRoot_1i6bp_24{background-color:var(--accent-2);display:block;box-shadow:var(--shadow-4)}._ToastRoot_1i6bp_24._ToastRoot_1i6bp_24[data-state=open]{animation:_slideIn_1i6bp_1 .15s cubic-bezier(.16,1,.3,1)}._ToastRoot_1i6bp_24._ToastRoot_1i6bp_24[data-swipe=move]{transform:translate(var(--radix-toast-swipe-move-x))}._ToastRoot_1i6bp_24._ToastRoot_1i6bp_24[data-swipe=cancel]{transform:translate(0);transition:transform .2s ease-out}._ToastRoot_1i6bp_24._ToastRoot_1i6bp_24[data-swipe=end]{animation:_swipeOut_1i6bp_1 .1s ease-out}@keyframes _slideIn_1i6bp_1{0%{transform:translate(calc(100% + var(--viewport-padding)))}to{transform:translate(0)}}@keyframes _swipeOut_1i6bp_1{0%{transform:translate(var(--radix-toast-swipe-end-x))}to{transform:translate(calc(100% + var(--viewport-padding)))}}._default_1odpt_1{background-color:var(--color-panel-solid);box-shadow:var(--shadow-2);height:max-content;width:max-content}._default_1odpt_1 p{color:var(--gray-12)!important}._default_1odpt_1 span{display:none}._ToggleButton_13aus_1[data-state=on][data-variant=solid]{outline:2px solid var(--color-focus-root);outline-offset:2px}._ToggleButton_13aus_1[data-state=on][data-variant=solid][data-accent-color=gray]{outline-color:var(--accent-8)}._ToggleButton_13aus_1[data-state=on][data-variant=soft],._ToggleButton_13aus_1[data-state=on][data-variant=surface],._ToggleButton_13aus_1[data-state=on][data-variant=outline]{background:var(--accent-9);color:var(--accent-9-contrast)}._ToggleButton_13aus_1[data-state=on][data-variant=ghost]{background-color:var(--accent-a5)}._noWrap_1wpa5_1{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}.radix-themes.radix-themes{--cursor-button: pointer;--cursor-menu-item: pointer;--cursor-checkbox: pointer}.rt-BaseButton{cursor:var(--cursor-button)}._light_1u8fs_1 span{color:var(--gray-a3)}._light_1u8fs_1 [role=separator]{background-color:var(--gray-a3)}._bold_1u8fs_8 span{color:var(--gray-a9)}._bold_1u8fs_8 [role=separator]{background-color:var(--gray-a9)}._full_1u8fs_15 span{color:var(--gray-a12)}._full_1u8fs_15 [role=separator]{background-color:var(--gray-a12)}._Text_1u8fs_22{color:var(--gray-a6)}._OvermapInputItem_1jgzv_1{outline:none;width:100%;height:100%;border:none;background:transparent;font-size:inherit}@keyframes _slideUpAndFade_t7a5i_1{0%{opacity:0;transform:translateY(2px)}to{opacity:1;transform:translateY(0)}}@keyframes _slideRightAndFade_t7a5i_1{0%{opacity:0;transform:translate(-2px)}to{opacity:1;transform:translate(0)}}@keyframes _slideDownAndFade_t7a5i_1{0%{opacity:0;transform:translateY(-2px)}to{opacity:1;transform:translateY(0)}}@keyframes _slideLeftAndFade_t7a5i_1{0%{opacity:0;transform:translate(2px)}to{opacity:1;transform:translate(0)}}._MenuContent_t7a5i_41{width:max-content;height:max-content;display:flex;flex-direction:column;min-height:max-content;outline:none;z-index:auto;pointer-events:all}._MenuContent_t7a5i_41._Dialog_t7a5i_51{width:min(100%,500px);min-width:350px}._MenuContentInner_t7a5i_56{outline:none;background:var(--color-panel-solid);box-shadow:var(--shadow-3);border-radius:var(--radius-2);box-sizing:border-box;min-width:max-content;padding:8px;display:flex;overflow:hidden;flex-direction:column;animation-duration:.4s;animation-timing-function:cubic-bezier(.16,1,.3,1)}._MenuContentInner_t7a5i_56[data-side=top]{animation-name:_slideDownAndFade_t7a5i_1}._MenuContentInner_t7a5i_56[data-side=right]{animation-name:_slideLeftAndFade_t7a5i_1}._MenuContentInner_t7a5i_56[data-side=bottom]{animation-name:_slideUpAndFade_t7a5i_1}._MenuContentInner_t7a5i_56[data-side=left]{animation-name:_slideRightAndFade_t7a5i_1}._MenuOverlay_t7a5i_83{overflow:hidden;display:flex;padding:64px 12px;justify-content:center;pointer-events:none}._MenuOverlay_t7a5i_83._Modal_t7a5i_90{pointer-events:all}._MenuItem_t7a5i_94{position:relative;outline:none;-webkit-user-select:none;user-select:none;color:var(--gray-a12)}._MenuItem_t7a5i_94:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-color:transparent;border-radius:var(--radius-2)}._MenuItem_t7a5i_94[data-disabled]{cursor:not-allowed;color:var(--gray-a10)}._MenuItem_t7a5i_94[data-open=true]:not([data-disabled]):after{background-color:var(--gray-a2)}._MenuItem_t7a5i_94[data-highlighted]:not([data-disabled]):after{background-color:var(--gray-a4)}._MenuItem_t7a5i_94:active:not([data-disabled]):after{background-color:var(--gray-a5)}._MenuSeparator_t7a5i_121._paddingBottom_t7a5i_121{padding-bottom:8px}._MenuSeparator_t7a5i_121._paddingTop_t7a5i_124{padding-top:8px}._MenuSeparator_t7a5i_121._extend_t7a5i_127{margin:0 -8px}._MenuContentScrollArea_t7a5i_131{overflow:hidden;width:100%;flex-grow:1}._MenuContentScrollArea_t7a5i_131>[data-orientation=vertical]{right:calc(-1 * var(--scrollarea-scrollbar-size))!important}._MenuContentScrollAreaWrapper_t7a5i_140{overflow:hidden;flex-grow:1;display:flex;flex-direction:column;margin:0 -8px}._ScrollAreaContent_t7a5i_148{padding:0 8px}button{all:unset}._checkbox_yl8iy_5{background-color:var(--color-panel-solid);width:15px;height:15px;border-radius:4px;display:flex;align-items:center;justify-content:center;background-color:var(--color-surface);box-shadow:inset 0 0 0 1px var(--gray-a7);cursor:var(--cursor-checkbox)}._checkbox_yl8iy_5 [data-state=checked],._checkbox_yl8iy_5 [data-state=indeterminate]{background-color:var(--accent-9);color:var(--accent-9-contrast)}._checkboxIndicator_yl8iy_22{display:flex;align-items:center;justify-content:center;justify-items:center;height:100%;width:100%;border-radius:4px;padding-right:.5px}._checkboxLabel_yl8iy_33{padding-left:.5rem}._noTextHighlight_yl8iy_37{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}._checkboxHidden_yl8iy_46{visibility:hidden}._disabled_5i91d_1{color:var(--gray-a10)}._outerTableContainer_5i91d_5{padding:30px;border:1px solid var(--gray-a4);border-radius:.5rem;box-shadow:var(--shadow-4)}@media only screen and (max-width: 600px){._outerTableContainer_5i91d_5{padding:10px}}._headerContainer_5i91d_17{padding-bottom:1rem}._tableTopContainer_5i91d_21{padding:10px 0}._tableContainer_5i91d_25{flex:1;overflow-y:auto}._searchContainer_5i91d_30{display:block;width:250px}@media only screen and (max-width: 600px){._searchContainer_5i91d_30{width:auto}}._columnFilterSelect_5i91d_40{display:block;box-shadow:none}._columnFilterSelect_5i91d_40 svg{display:none}._columnFilterSelect_5i91d_40:hover{background-color:#00000003;cursor:pointer}._table_5i91d_21{border:1px solid var(--gray-a4);border-radius:3px!important;background-color:inherit}._tableHeaderCell_5i91d_58{background-color:var(--color-background)!important;padding:10px!important;border-bottom:1px solid var(--gray-4);max-height:110px}._tableHeaderCell_5i91d_58 svg{visibility:hidden}@media only screen and (max-width: 600px){._tableHeaderCell_5i91d_58 div[title]>div:first-child{overflow:visible;white-space:normal}}._showSortIcon_5i91d_74 svg{visibility:visible}._tableRow_5i91d_78{background-color:inherit}._tableRow_5i91d_78 span,._tableRow_5i91d_78 i{display:inline-flex;place-self:center}._tableRow_5i91d_78 td{padding-left:10px!important}._tableRow_5i91d_78:hover:not(._disabled_5i91d_1){background-color:var(--gray-a4)}._tableCell_5i91d_93{padding:10px!important}._tableCell_5i91d_93>div>span:first-child{width:100%}._tableCell_5i91d_93:not(:last-of-type){padding-right:20px!important}._noDataTextContainer_5i91d_103{padding:.5rem 10px;color:#616161;width:max-content}._tableBottomContainer_5i91d_109{padding:15px 0}._rowsPerPageContainer_5i91d_113{flex:1}@media only screen and (max-width: 600px){._rowsPerPageContainer_5i91d_113{justify-content:center;padding-top:5px}}._rowsPerPageText_5i91d_123{padding-right:10px;padding-top:4px}._pageText_5i91d_128{padding-top:4px}._descriptionSecondLine_5i91d_132{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._editableTextContainer_174g6_1{align-items:center}._editableTextText_174g6_5 div{outline:none;box-shadow:none;border:none;background:transparent}._editableTextText_174g6_5 input{font-size:var(--font-size-3)}._editableTextText_174g6_5 .rt-TextFieldInput:where(:disabled,:read-only){color:unset;-webkit-text-fill-color:unset}._editableTextInput_174g6_19 input{font-size:var(--font-size-3)}._iconHidden_174g6_23{visibility:hidden}
|