nntc-ui 0.0.1

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/index.css ADDED
@@ -0,0 +1,1727 @@
1
+ /* src/components/common/Button/button.module.css */
2
+ .button_root {
3
+ padding: 0;
4
+ font-size: var(--text-button-size);
5
+ font-weight: var(--text-button-weight);
6
+ line-height: var(--text-button-height);
7
+ letter-spacing: var(--text-button-letter);
8
+ cursor: pointer;
9
+ border: none;
10
+ border-radius: 4px;
11
+ outline: none;
12
+ }
13
+ .button_stateLayer {
14
+ display: inline-flex;
15
+ flex-direction: row;
16
+ gap: 8px;
17
+ align-items: center;
18
+ justify-content: center;
19
+ background-color: transparent;
20
+ }
21
+ .button_root:hover > .button_stateLayer {
22
+ background-color: var(--theme-overlay-8);
23
+ }
24
+ .button_root:focus > .button_stateLayer {
25
+ background-color: var(--theme-overlay-12);
26
+ }
27
+ .button_root:active > .button_stateLayer,
28
+ .button_root.button_active > .button_stateLayer {
29
+ background-color: var(--theme-overlay-12);
30
+ }
31
+ .button_filled {
32
+ color: var(--theme-text-button-invert);
33
+ background-color: var(--theme-focus);
34
+ }
35
+ .button_outlined {
36
+ color: var(--theme-focus);
37
+ background-color: transparent;
38
+ outline: 1px solid var(--theme-grey-500);
39
+ }
40
+ .button_outlined:focus {
41
+ outline-color: var(--theme-focus);
42
+ }
43
+ .button_text {
44
+ color: var(--theme-focus);
45
+ background-color: transparent;
46
+ }
47
+ .button_elevated {
48
+ color: var(--theme-focus);
49
+ background-color: var(--theme-button-elevated);
50
+ box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
51
+ }
52
+ .button_elevated:hover {
53
+ box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
54
+ }
55
+ .button_tonal {
56
+ color: var(--theme-text-button-primary);
57
+ background-color: var(--theme-button-tonal);
58
+ }
59
+ .button_tonal:hover {
60
+ box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
61
+ }
62
+ .button_link {
63
+ color: var(--theme-focus);
64
+ background-color: transparent;
65
+ }
66
+ .button_link:hover > .button_stateLayer,
67
+ .button_link:focus > .button_stateLayer,
68
+ .button_link:active > .button_stateLayer,
69
+ .button_link.button_active > .button_stateLayer {
70
+ background-color: transparent;
71
+ }
72
+ .button_filled > .button_stateLayer > svg {
73
+ fill: var(--theme-text-button-invert);
74
+ }
75
+ .button_outlined > .button_stateLayer > svg {
76
+ fill: var(--theme-focus);
77
+ }
78
+ .button_text > .button_stateLayer > svg {
79
+ fill: var(--theme-focus);
80
+ }
81
+ .button_elevated > .button_stateLayer > svg {
82
+ fill: var(--theme-focus);
83
+ }
84
+ .button_tonal > .button_stateLayer > svg {
85
+ fill: var(--theme-text-button-primary);
86
+ }
87
+ .button_link > .button_stateLayer > svg {
88
+ fill: var(--theme-focus);
89
+ }
90
+ .button_medium,
91
+ .button_medium > .button_stateLayer {
92
+ height: 40px;
93
+ }
94
+ .button_small,
95
+ .button_small > .button_stateLayer {
96
+ height: 32px;
97
+ }
98
+ .button_withIcon.button_medium > .button_stateLayer {
99
+ padding: 8px 16px;
100
+ }
101
+ .button_withIcon.button_small > .button_stateLayer {
102
+ padding: 4px 16px;
103
+ }
104
+ .button_withoutIcon.button_medium > .button_stateLayer {
105
+ padding: 8px 24px;
106
+ }
107
+ .button_withoutIcon.button_small > .button_stateLayer {
108
+ padding: 4px 24px;
109
+ }
110
+ .button_text.button_medium > .button_stateLayer {
111
+ padding: 8px 12px;
112
+ }
113
+ .button_text.button_small > .button_stateLayer {
114
+ padding: 6px 12px;
115
+ }
116
+ .button_onlyIcon.button_medium > .button_stateLayer {
117
+ padding: 8px;
118
+ }
119
+ .button_onlyIcon.button_small > .button_stateLayer {
120
+ padding: 4px;
121
+ }
122
+ .button_link.button_medium > .button_stateLayer {
123
+ padding: 0;
124
+ }
125
+ .button_link.button_small > .button_stateLayer {
126
+ padding: 0;
127
+ }
128
+ .button_textSecondary {
129
+ color: var(--theme-text-secondary) !important;
130
+ }
131
+ .button_textSecondary:hover,
132
+ .button_textSecondary:focus,
133
+ .button_textSecondary:active,
134
+ .button_textSecondary.button_active {
135
+ color: var(--theme-focus) !important;
136
+ }
137
+ .button_textSecondary > span > svg {
138
+ fill: var(--theme-text-secondary) !important;
139
+ }
140
+ .button_textSecondary:hover > span > svg,
141
+ .button_textSecondary:focus > span > svg,
142
+ .button_textSecondary:active > span > svg,
143
+ .button_textSecondary.button_active > span > svg {
144
+ fill: var(--theme-focus) !important;
145
+ }
146
+ button:disabled,
147
+ button[disabled] {
148
+ color: var(--theme-text-inactive);
149
+ pointer-events: none;
150
+ user-select: none;
151
+ background-color: var(--theme-grey-700);
152
+ }
153
+
154
+ /* src/components/view/Typography/typography.module.css */
155
+ .typography_h1 {
156
+ font-size: var(--text-headline1-size);
157
+ font-weight: var(--text-headline1-weight);
158
+ line-height: var(--text-headline1-height);
159
+ letter-spacing: var(--text-headline1-letter);
160
+ }
161
+ .typography_h2 {
162
+ font-size: var(--text-headline2-size);
163
+ font-weight: var(--text-headline2-weight);
164
+ line-height: var(--text-headline2-height);
165
+ letter-spacing: var(--text-headline2-letter);
166
+ }
167
+ .typography_h3 {
168
+ font-size: var(--text-headline3-size);
169
+ font-weight: var(--text-headline3-weight);
170
+ line-height: var(--text-headline3-height);
171
+ letter-spacing: var(--text-headline3-letter);
172
+ }
173
+ .typography_h4 {
174
+ font-size: var(--text-headline4-size);
175
+ font-weight: var(--text-headline4-weight);
176
+ line-height: var(--text-headline4-height);
177
+ letter-spacing: var(--text-headline4-letter);
178
+ }
179
+ .typography_h5 {
180
+ font-size: var(--text-headline5-size);
181
+ font-weight: var(--text-headline5-weight);
182
+ line-height: var(--text-headline5-height);
183
+ letter-spacing: var(--text-headline5-letter);
184
+ }
185
+ .typography_h6 {
186
+ font-size: var(--text-headline6-size);
187
+ font-weight: var(--text-headline6-weight);
188
+ line-height: var(--text-headline6-height);
189
+ letter-spacing: var(--text-headline6-letter);
190
+ }
191
+ .typography_h7 {
192
+ font-size: var(--text-headline7-size);
193
+ font-weight: var(--text-headline7-weight);
194
+ line-height: var(--text-headline7-height);
195
+ letter-spacing: var(--text-headline7-letter);
196
+ }
197
+ .typography_subtitle1 {
198
+ font-size: var(--text-subtitle1-size);
199
+ font-weight: var(--text-subtitle1-weight);
200
+ line-height: var(--text-subtitle1-height);
201
+ letter-spacing: var(--text-subtitle1-letter);
202
+ }
203
+ .typography_subtitle2 {
204
+ font-size: var(--text-subtitle2-size);
205
+ font-weight: var(--text-subtitle2-weight);
206
+ line-height: var(--text-subtitle2-height);
207
+ letter-spacing: var(--text-subtitle2-letter);
208
+ }
209
+ .typography_body1 {
210
+ font-size: var(--text-body1-size);
211
+ font-weight: var(--text-body1-weight);
212
+ line-height: var(--text-body1-height);
213
+ letter-spacing: var(--text-body1-letter);
214
+ }
215
+ .typography_body2 {
216
+ font-size: var(--text-body2-size);
217
+ font-weight: var(--text-body2-weight);
218
+ line-height: var(--text-body2-height);
219
+ letter-spacing: var(--text-body2-letter);
220
+ }
221
+ .typography_button {
222
+ font-size: var(--text-button-size);
223
+ font-weight: var(--text-button-weight);
224
+ line-height: var(--text-button-height);
225
+ letter-spacing: var(--text-button-letter);
226
+ }
227
+ .typography_caption {
228
+ font-size: var(--text-caption-size);
229
+ font-weight: var(--text-caption-weight);
230
+ line-height: var(--text-caption-height);
231
+ letter-spacing: var(--text-caption-letter);
232
+ }
233
+ .typography_overline {
234
+ font-size: var(--text-overline-size);
235
+ font-weight: var(--text-overline-weight);
236
+ line-height: var(--text-overline-height);
237
+ letter-spacing: var(--text-overline-letter);
238
+ }
239
+
240
+ /* src/components/common/Checkbox/checkbox.module.css */
241
+ .checkbox_root {
242
+ position: relative;
243
+ width: 100%;
244
+ max-width: 320px;
245
+ height: 24px;
246
+ }
247
+ .checkbox_input {
248
+ position: absolute;
249
+ top: 0;
250
+ left: 0;
251
+ z-index: 10;
252
+ width: 100%;
253
+ height: 24px;
254
+ margin: 0;
255
+ cursor: pointer;
256
+ opacity: 0;
257
+ }
258
+ .checkbox_label {
259
+ position: relative;
260
+ z-index: 1;
261
+ display: flex;
262
+ flex-direction: row;
263
+ gap: 0;
264
+ align-items: center;
265
+ width: 100%;
266
+ height: 24px;
267
+ padding-left: 24px;
268
+ }
269
+ .checkbox_checkbox {
270
+ position: absolute;
271
+ top: 0;
272
+ left: 0;
273
+ z-index: 2;
274
+ display: block;
275
+ width: 24px;
276
+ height: 24px;
277
+ opacity: 0;
278
+ transition: opacity 0.1s linear;
279
+ }
280
+ .checkbox_checkbox > svg {
281
+ fill: var(--theme-selection-border);
282
+ }
283
+ .checkbox_several {
284
+ opacity: 1;
285
+ }
286
+ .checkbox_deselected {
287
+ opacity: 1;
288
+ }
289
+ .checkbox_input:checked + .checkbox_label > .checkbox_deselected {
290
+ opacity: 0;
291
+ }
292
+ .checkbox_input:checked + .checkbox_label > .checkbox_selected {
293
+ opacity: 1;
294
+ }
295
+ .checkbox_checkbox.checkbox_selected > svg {
296
+ fill: var(--theme-focus);
297
+ }
298
+ .checkbox_labelText {
299
+ display: block;
300
+ margin-left: 12px;
301
+ overflow: hidden;
302
+ text-overflow: ellipsis;
303
+ white-space: nowrap;
304
+ }
305
+ .checkbox_input + .checkbox_label > .checkbox_checkbox::before {
306
+ position: absolute;
307
+ top: -8px;
308
+ left: -8px;
309
+ z-index: 0;
310
+ display: block;
311
+ width: 40px;
312
+ height: 40px;
313
+ content: "";
314
+ background-color: transparent;
315
+ border-radius: 50%;
316
+ transition: background-color 0.1s linear;
317
+ }
318
+ .checkbox_input:hover + .checkbox_label > .checkbox_checkbox::before {
319
+ background-color: var(--theme-selection-hover);
320
+ }
321
+ .checkbox_input:focus + .checkbox_label > .checkbox_checkbox::before {
322
+ background-color: var(--theme-selection-focused);
323
+ }
324
+ .checkbox_input.checkbox_pressed + .checkbox_label > .checkbox_checkbox::before {
325
+ background-color: var(--theme-selection-pressed);
326
+ }
327
+ .checkbox_input:hover + .checkbox_label > .checkbox_checkbox.checkbox_selected::before {
328
+ background-color: var(--theme-selection-selected-hover);
329
+ }
330
+ .checkbox_input:focus + .checkbox_label > .checkbox_checkbox.checkbox_selected::before {
331
+ background-color: var(--theme-selection-selected-focused);
332
+ }
333
+ .checkbox_input.checkbox_pressed + .checkbox_label > .checkbox_checkbox.checkbox_selected::before {
334
+ background-color: var(--theme-selection-selected-pressed);
335
+ }
336
+
337
+ /* src/components/view/Popover/popover.module.css */
338
+ .popover_trigger {
339
+ display: inline-flex;
340
+ align-items: center;
341
+ height: 100%;
342
+ }
343
+ .popover_content {
344
+ z-index: 999;
345
+ min-width: 200px;
346
+ max-width: 380px;
347
+ padding: 0;
348
+ font-size: var(--text-caption-size);
349
+ font-weight: var(--text-caption-weight);
350
+ line-height: var(--text-caption-height);
351
+ color: var(--theme-alert-default-color);
352
+ letter-spacing: var(--text-caption-letter);
353
+ background-color: var(--theme-surface-dropdown);
354
+ border-radius: 4px;
355
+ box-shadow:
356
+ 0px 2px 4px 0px #00000033,
357
+ 0px 1px 10px 0px #0000001f,
358
+ 0px 4px 5px 0px #00000024;
359
+ }
360
+
361
+ /* src/components/common/Select/select.module.css */
362
+ .select_root {
363
+ display: flex;
364
+ flex-direction: column;
365
+ width: 100%;
366
+ max-width: 320px;
367
+ }
368
+ .select_medium {
369
+ gap: 8px;
370
+ }
371
+ .select_small {
372
+ gap: 4px;
373
+ }
374
+ .select_label {
375
+ color: var(--theme-text-secondary);
376
+ }
377
+ .select_wrapper {
378
+ position: relative;
379
+ width: 100%;
380
+ }
381
+ .select_medium > .select_wrapper {
382
+ height: 40px;
383
+ }
384
+ .select_small > .select_wrapper {
385
+ height: 32px;
386
+ }
387
+ .select_input {
388
+ position: relative;
389
+ z-index: 1;
390
+ width: 100%;
391
+ font-size: var(--text-subtitle2-size);
392
+ font-weight: var(--text-subtitle2-weight);
393
+ line-height: var(--text-subtitle2-height);
394
+ color: var(--theme-text-primary);
395
+ letter-spacing: var(--text-subtitle2-letter);
396
+ cursor: pointer;
397
+ border: none;
398
+ border-radius: 4px;
399
+ outline: none;
400
+ }
401
+ .select_input:disabled {
402
+ color: var(--theme-text-inactive);
403
+ }
404
+ .select_medium > .select_wrapper > .select_input {
405
+ height: 40px;
406
+ padding: 8px 48px 8px 16px;
407
+ }
408
+ .select_small > .select_wrapper > .select_input {
409
+ height: 32px;
410
+ padding: 4px 48px 4px 16px;
411
+ }
412
+ .select_withIcon > .select_wrapper > .select_input {
413
+ padding-left: 48px;
414
+ }
415
+ .select_withItemIcon > .select_wrapper > .select_input {
416
+ padding-left: 48px;
417
+ }
418
+ .select_withIcon.select_withItemIcon > .select_wrapper > .select_input {
419
+ padding-left: 80px;
420
+ }
421
+ .select_icon {
422
+ position: absolute;
423
+ left: 16px;
424
+ z-index: 2;
425
+ display: flex;
426
+ align-items: center;
427
+ justify-content: center;
428
+ width: 24px;
429
+ height: 24px;
430
+ cursor: pointer;
431
+ }
432
+ .select_medium > .select_wrapper > .select_icon {
433
+ top: 8px;
434
+ }
435
+ .select_small > .select_wrapper > .select_icon {
436
+ top: 4px;
437
+ }
438
+ .select_icon > svg {
439
+ fill: var(--theme-icon-primary);
440
+ }
441
+ .select_itemIcon {
442
+ position: absolute;
443
+ left: 16px;
444
+ z-index: 2;
445
+ display: flex;
446
+ align-items: center;
447
+ justify-content: center;
448
+ width: 24px;
449
+ height: 24px;
450
+ cursor: pointer;
451
+ }
452
+ .select_icon + .select_itemIcon {
453
+ left: 48px;
454
+ }
455
+ .select_medium > .select_wrapper > .select_itemIcon {
456
+ top: 8px;
457
+ }
458
+ .select_small > .select_wrapper > .select_itemIcon {
459
+ top: 4px;
460
+ }
461
+ .select_itemIcon > svg {
462
+ fill: var(--theme-icon-primary);
463
+ }
464
+ .select_filled > .select_input {
465
+ background-color: var(--theme-input-filled);
466
+ }
467
+ .select_filled:hover > .select_input {
468
+ background-color: var(--theme-input-filled-hover);
469
+ }
470
+ .select_filled > .select_input:focus {
471
+ background-color: var(--theme-input-filled-hover);
472
+ }
473
+ .select_outlined > .select_input {
474
+ background-color: transparent;
475
+ outline: 1px solid var(--theme-input-border);
476
+ }
477
+ .select_outlined:hover > .select_input:not(:disabled):not(:focus) {
478
+ outline-color: var(--theme-input-border-hover);
479
+ }
480
+ .select_outlined > .select_input:focus {
481
+ outline-color: var(--theme-focus);
482
+ }
483
+ .select_arrow {
484
+ position: absolute;
485
+ right: 16px;
486
+ z-index: 2;
487
+ display: flex;
488
+ align-items: center;
489
+ justify-content: center;
490
+ width: 24px;
491
+ height: 24px;
492
+ cursor: pointer;
493
+ }
494
+ .select_medium > .select_wrapper > .select_arrow {
495
+ top: 8px;
496
+ }
497
+ .select_small > .select_wrapper > .select_arrow {
498
+ top: 4px;
499
+ }
500
+ .select_arrow > svg {
501
+ fill: var(--theme-icon-primary);
502
+ }
503
+ .select_popoverTarget {
504
+ position: absolute;
505
+ bottom: 0;
506
+ left: 0;
507
+ z-index: 1;
508
+ width: 100%;
509
+ height: 0;
510
+ }
511
+ .select_popoverContent {
512
+ max-height: 250px;
513
+ overflow: auto scroll;
514
+ }
515
+
516
+ /* src/components/navigation/Menu/menu.module.css */
517
+ .menu_root {
518
+ display: flex;
519
+ flex-direction: column;
520
+ gap: 0;
521
+ width: 100%;
522
+ }
523
+ .menu_medium {
524
+ padding: 8px 0;
525
+ }
526
+ .menu_small {
527
+ padding: 4px 0;
528
+ }
529
+ .menu_item {
530
+ width: 100%;
531
+ padding: 0;
532
+ font-size: var(--text-subtitle2-size);
533
+ font-weight: var(--text-subtitle2-weight);
534
+ line-height: var(--text-subtitle2-height);
535
+ text-align: left;
536
+ letter-spacing: var(--text-subtitle2-letter);
537
+ cursor: pointer;
538
+ background-color: transparent;
539
+ border: none;
540
+ border-radius: 0;
541
+ outline: none;
542
+ }
543
+ .menu_stateLayer {
544
+ display: inline-flex;
545
+ flex-direction: row;
546
+ gap: 12px;
547
+ align-items: center;
548
+ width: 100%;
549
+ color: var(--theme-text-secondary);
550
+ background-color: transparent;
551
+ }
552
+ .menu_medium .menu_stateLayer {
553
+ padding: 12px 16px;
554
+ }
555
+ .menu_small .menu_stateLayer {
556
+ padding: 8px 16px;
557
+ }
558
+ .menu_item:not(.menu_itemDisabled):hover > .menu_stateLayer {
559
+ color: var(--theme-text-primary);
560
+ background-color: var(--theme-overlay-8);
561
+ }
562
+ .menu_item:not(.menu_itemDisabled):focus > .menu_stateLayer {
563
+ color: var(--theme-text-primary);
564
+ background-color: var(--theme-overlay-12);
565
+ }
566
+ .menu_item:not(.menu_itemDisabled):active > .menu_stateLayer,
567
+ .menu_itemSelected > .menu_stateLayer {
568
+ color: var(--theme-text-primary);
569
+ background-color: var(--theme-overlay-12);
570
+ }
571
+ .menu_itemDisabled {
572
+ cursor: default;
573
+ }
574
+ .menu_itemDisabled > .menu_stateLayer {
575
+ color: var(--theme-text-secondary);
576
+ background-color: transparent;
577
+ }
578
+ .menu_itemIcon {
579
+ display: block;
580
+ display: flex;
581
+ align-items: center;
582
+ justify-content: center;
583
+ width: 24px;
584
+ height: 24px;
585
+ }
586
+ .menu_itemIcon > svg {
587
+ fill: var(--theme-text-secondary);
588
+ }
589
+ .menu_itemTitle {
590
+ display: block;
591
+ flex: 1 1 0;
592
+ width: 0;
593
+ overflow: hidden;
594
+ text-overflow: ellipsis;
595
+ white-space: nowrap;
596
+ }
597
+ .menu_itemDescription {
598
+ display: block;
599
+ color: var(--theme-text-secondary);
600
+ }
601
+ .menu_divider {
602
+ margin: 8px 12px;
603
+ font-size: var(--text-overline-size);
604
+ font-weight: var(--text-overline-weight);
605
+ line-height: var(--text-overline-height);
606
+ color: var(--theme-text-inactive);
607
+ text-transform: uppercase;
608
+ letter-spacing: var(--text-overline-letter);
609
+ border-bottom: 1px solid var(--theme-divider);
610
+ }
611
+
612
+ /* src/components/common/DateTime/dateTime.module.css */
613
+ .dateTime_root {
614
+ position: relative;
615
+ width: 100%;
616
+ max-width: 320px;
617
+ }
618
+ .dateTime_medium {
619
+ height: 40px;
620
+ }
621
+ .dateTime_small {
622
+ height: 32px;
623
+ }
624
+ .dateTime_input {
625
+ position: relative;
626
+ z-index: 1;
627
+ width: 100%;
628
+ font-size: var(--text-subtitle2-size);
629
+ font-weight: var(--text-subtitle2-weight);
630
+ line-height: var(--text-subtitle2-height);
631
+ color: var(--theme-text-primary);
632
+ letter-spacing: var(--text-subtitle2-letter);
633
+ cursor: pointer;
634
+ border: none;
635
+ border-radius: 4px;
636
+ outline: none;
637
+ }
638
+ .dateTime_medium > .dateTime_input {
639
+ height: 40px;
640
+ padding: 8px 48px 8px 16px;
641
+ }
642
+ .dateTime_small > .dateTime_input {
643
+ height: 32px;
644
+ padding: 4px 48px 4px 16px;
645
+ }
646
+ .dateTime_filled > .dateTime_input {
647
+ background-color: var(--theme-input-filled);
648
+ }
649
+ .dateTime_filled:hover > .dateTime_input {
650
+ background-color: var(--theme-input-filled-hover);
651
+ }
652
+ .dateTime_filled > .dateTime_input:focus {
653
+ background-color: var(--theme-input-filled-hover);
654
+ }
655
+ .dateTime_outlined > .dateTime_input {
656
+ background-color: transparent;
657
+ outline: 1px solid var(--theme-input-border);
658
+ }
659
+ .dateTime_outlined:hover > .dateTime_input {
660
+ outline-color: var(--theme-input-border-hover);
661
+ }
662
+ .dateTime_outlined > .dateTime_input:focus {
663
+ outline-color: var(--theme-focus);
664
+ }
665
+ .dateTime_icon {
666
+ position: absolute;
667
+ right: 16px;
668
+ z-index: 2;
669
+ display: flex;
670
+ align-items: center;
671
+ justify-content: center;
672
+ width: 24px;
673
+ height: 24px;
674
+ cursor: pointer;
675
+ }
676
+ .dateTime_medium > .dateTime_icon {
677
+ top: 8px;
678
+ }
679
+ .dateTime_small > .dateTime_icon {
680
+ top: 4px;
681
+ }
682
+ .dateTime_icon > svg {
683
+ fill: var(--theme-icon-primary);
684
+ }
685
+ .dateTime_popoverTarget {
686
+ position: absolute;
687
+ bottom: 0;
688
+ left: 0;
689
+ z-index: 1;
690
+ width: 100%;
691
+ height: 0;
692
+ }
693
+
694
+ /* src/components/common/DateTime/ui/CalendarPopover/calendarPopover.module.css */
695
+ .calendarPopover_root {
696
+ display: flex;
697
+ flex-direction: column;
698
+ gap: 24px;
699
+ width: 368px;
700
+ padding: 24px 16px;
701
+ }
702
+ .calendarPopover_button {
703
+ color: var(--theme-text-primary);
704
+ background: none;
705
+ border: none;
706
+ box-shadow: none;
707
+ }
708
+ .calendarPopover_navigationContainer {
709
+ display: flex;
710
+ flex-direction: row;
711
+ align-items: center;
712
+ justify-content: space-between;
713
+ width: 100%;
714
+ }
715
+ .calendarPopover_navigationArrow {
716
+ display: flex;
717
+ align-items: center;
718
+ justify-content: center;
719
+ cursor: pointer;
720
+ }
721
+ .calendarPopover_navigationArrow > svg {
722
+ fill: var(--theme-text-secondary);
723
+ }
724
+ .calendarPopover_navigationValue {
725
+ display: flex;
726
+ align-items: center;
727
+ justify-content: center;
728
+ cursor: pointer;
729
+ }
730
+ .calendarPopover_navigationTitle {
731
+ text-transform: capitalize;
732
+ }
733
+ .calendarPopover_cellsContainer {
734
+ display: flex;
735
+ flex-direction: row;
736
+ flex-wrap: wrap;
737
+ width: 100%;
738
+ }
739
+ .calendarPopover_cell {
740
+ position: relative;
741
+ display: flex;
742
+ align-items: center;
743
+ justify-content: center;
744
+ width: 48px;
745
+ height: 48px;
746
+ cursor: pointer;
747
+ }
748
+ .calendarPopover_cell.calendarPopover_month {
749
+ width: 84px;
750
+ height: 64px;
751
+ }
752
+ .calendarPopover_cellData {
753
+ position: relative;
754
+ z-index: 3;
755
+ }
756
+ .calendarPopover_cellCircle {
757
+ position: absolute;
758
+ top: 2px;
759
+ left: 2px;
760
+ z-index: 2;
761
+ display: block;
762
+ width: 44px;
763
+ height: 44px;
764
+ background-color: var(--theme-focus);
765
+ border-radius: 50%;
766
+ }
767
+ .calendarPopover_cellCircle ~ .calendarPopover_cellData {
768
+ color: var(--theme-text-button-invert);
769
+ }
770
+ .calendarPopover_cellSelection {
771
+ position: absolute;
772
+ top: 2px;
773
+ left: 0;
774
+ z-index: 1;
775
+ display: block;
776
+ width: 100%;
777
+ height: 44px;
778
+ background-color: var(--theme-date-range);
779
+ }
780
+ .calendarPopover_cellSelectionFirst {
781
+ left: 50%;
782
+ width: 50%;
783
+ }
784
+ .calendarPopover_cellSelectionLast {
785
+ width: 50%;
786
+ }
787
+ .calendarPopover_monthCellSelection {
788
+ position: absolute;
789
+ top: 10px;
790
+ left: 0;
791
+ z-index: 1;
792
+ display: block;
793
+ width: 100%;
794
+ height: 44px;
795
+ background-color: var(--theme-date-range);
796
+ }
797
+
798
+ /* src/components/common/ColorPicker/colorPicker.module.css */
799
+ .colorPicker_root {
800
+ display: flex;
801
+ flex-direction: column;
802
+ width: 100%;
803
+ min-width: 162px;
804
+ max-width: 320px;
805
+ }
806
+ .colorPicker_medium {
807
+ gap: 8px;
808
+ }
809
+ .colorPicker_small {
810
+ gap: 4px;
811
+ }
812
+ .colorPicker_label {
813
+ color: var(--theme-text-secondary);
814
+ }
815
+ .colorPicker_wrapper {
816
+ position: relative;
817
+ width: 100%;
818
+ }
819
+ .colorPicker_medium > .colorPicker_wrapper {
820
+ height: 40px;
821
+ }
822
+ .colorPicker_small > .colorPicker_wrapper {
823
+ height: 32px;
824
+ }
825
+ .colorPicker_input {
826
+ position: relative;
827
+ z-index: 1;
828
+ width: 100%;
829
+ font-size: var(--text-subtitle2-size);
830
+ font-weight: var(--text-subtitle2-weight);
831
+ line-height: var(--text-subtitle2-height);
832
+ color: var(--theme-text-primary);
833
+ letter-spacing: var(--text-subtitle2-letter);
834
+ cursor: pointer;
835
+ border: none;
836
+ border-radius: 4px;
837
+ outline: none;
838
+ }
839
+ .colorPicker_medium > .colorPicker_wrapper > .colorPicker_input {
840
+ height: 40px;
841
+ padding: 8px 48px 8px 48px;
842
+ }
843
+ .colorPicker_small > .colorPicker_wrapper > .colorPicker_input {
844
+ height: 32px;
845
+ padding: 4px 48px 4px 48px;
846
+ }
847
+ .colorPicker_icon {
848
+ position: absolute;
849
+ left: 16px;
850
+ z-index: 2;
851
+ display: flex;
852
+ align-items: center;
853
+ justify-content: center;
854
+ width: 24px;
855
+ height: 24px;
856
+ cursor: pointer;
857
+ }
858
+ .colorPicker_medium > .colorPicker_wrapper > .colorPicker_icon {
859
+ top: 8px;
860
+ }
861
+ .colorPicker_small > .colorPicker_wrapper > .colorPicker_icon {
862
+ top: 4px;
863
+ }
864
+ .colorPicker_icon > svg {
865
+ fill: var(--theme-icon-primary);
866
+ }
867
+ .colorPicker_outlined > .colorPicker_input {
868
+ background-color: transparent;
869
+ outline: 1px solid var(--theme-input-border);
870
+ }
871
+ .colorPicker_outlined:hover > .colorPicker_input {
872
+ outline-color: var(--theme-input-border-hover);
873
+ }
874
+ .colorPicker_outlined > .colorPicker_input:focus {
875
+ outline-color: var(--theme-focus);
876
+ }
877
+ .colorPicker_arrow {
878
+ position: absolute;
879
+ right: 16px;
880
+ z-index: 2;
881
+ display: flex;
882
+ align-items: center;
883
+ justify-content: center;
884
+ width: 24px;
885
+ height: 24px;
886
+ cursor: pointer;
887
+ }
888
+ .colorPicker_medium > .colorPicker_wrapper > .colorPicker_arrow {
889
+ top: 8px;
890
+ }
891
+ .colorPicker_small > .colorPicker_wrapper > .colorPicker_arrow {
892
+ top: 4px;
893
+ }
894
+ .colorPicker_arrow > svg {
895
+ fill: var(--theme-icon-primary);
896
+ }
897
+ .colorPicker_popoverTarget {
898
+ position: absolute;
899
+ bottom: 0;
900
+ left: 0;
901
+ z-index: 1;
902
+ width: 100%;
903
+ height: 0;
904
+ }
905
+ .colorPicker_popoverContent {
906
+ max-height: 250px;
907
+ overflow: auto scroll;
908
+ }
909
+
910
+ /* src/components/common/Input/input.module.css */
911
+ .input_root {
912
+ display: flex;
913
+ flex-direction: column;
914
+ width: 100%;
915
+ max-width: 320px;
916
+ }
917
+ .input_medium {
918
+ gap: 8px;
919
+ }
920
+ .input_small {
921
+ gap: 4px;
922
+ }
923
+ .input_label {
924
+ color: var(--theme-text-secondary);
925
+ }
926
+ .input_wrapper {
927
+ position: relative;
928
+ width: 100%;
929
+ }
930
+ .input_medium > .input_wrapper {
931
+ height: 40px;
932
+ }
933
+ .input_small > .input_wrapper {
934
+ height: 32px;
935
+ }
936
+ .input_input {
937
+ position: relative;
938
+ z-index: 1;
939
+ width: 100%;
940
+ font-size: var(--text-subtitle2-size);
941
+ font-weight: var(--text-subtitle2-weight);
942
+ line-height: var(--text-subtitle2-height);
943
+ color: var(--theme-text-primary);
944
+ letter-spacing: var(--text-subtitle2-letter);
945
+ border: none;
946
+ border-radius: 4px;
947
+ outline: none;
948
+ }
949
+ .input_input:disabled {
950
+ color: var(--theme-text-inactive);
951
+ }
952
+ .input_medium > .input_wrapper > .input_input {
953
+ height: 40px;
954
+ padding: 8px 16px 8px 16px;
955
+ }
956
+ .input_small > .input_wrapper > .input_input {
957
+ height: 32px;
958
+ padding: 4px 16px 4px 16px;
959
+ }
960
+ .input_outlined > .input_input {
961
+ background-color: transparent;
962
+ outline: 1px solid var(--theme-input-border);
963
+ }
964
+ .input_outlined:hover > .input_input:not(:disabled):not(:focus) {
965
+ outline-color: var(--theme-input-border-hover);
966
+ }
967
+ .input_outlined > .input_input:focus {
968
+ outline-color: var(--theme-focus);
969
+ }
970
+
971
+ /* src/components/common/SearchInput/searchInput.module.css */
972
+ .searchInput_root {
973
+ position: relative;
974
+ width: 100%;
975
+ max-width: 320px;
976
+ }
977
+ .searchInput_medium {
978
+ height: 40px;
979
+ }
980
+ .searchInput_small {
981
+ height: 32px;
982
+ }
983
+ .searchInput_input {
984
+ position: relative;
985
+ z-index: 1;
986
+ width: 100%;
987
+ font-size: var(--text-subtitle2-size);
988
+ font-weight: var(--text-subtitle2-weight);
989
+ line-height: var(--text-subtitle2-height);
990
+ color: var(--theme-text-primary);
991
+ letter-spacing: var(--text-subtitle2-letter);
992
+ border: none;
993
+ border-radius: 4px;
994
+ outline: none;
995
+ }
996
+ .searchInput_medium > .searchInput_input {
997
+ height: 40px;
998
+ padding: 8px 16px;
999
+ }
1000
+ .searchInput_small > .searchInput_input {
1001
+ height: 32px;
1002
+ padding: 4px 16px;
1003
+ }
1004
+ .searchInput_withIcon > .searchInput_input {
1005
+ padding-left: 48px;
1006
+ }
1007
+ .searchInput_icon {
1008
+ position: absolute;
1009
+ left: 16px;
1010
+ z-index: 2;
1011
+ display: flex;
1012
+ align-items: center;
1013
+ justify-content: center;
1014
+ width: 24px;
1015
+ height: 24px;
1016
+ cursor: text;
1017
+ }
1018
+ .searchInput_medium > .searchInput_icon {
1019
+ top: 8px;
1020
+ }
1021
+ .searchInput_small > .searchInput_icon {
1022
+ top: 4px;
1023
+ }
1024
+ .searchInput_icon > svg {
1025
+ fill: var(--theme-icon-primary);
1026
+ }
1027
+ .searchInput_filled > .searchInput_input {
1028
+ background-color: var(--theme-input-filled);
1029
+ }
1030
+ .searchInput_filled:hover > .searchInput_input {
1031
+ background-color: var(--theme-input-filled-hover);
1032
+ }
1033
+ .searchInput_filled > .searchInput_input:focus {
1034
+ background-color: var(--theme-input-filled-hover);
1035
+ }
1036
+ .searchInput_outlined > .searchInput_input {
1037
+ background-color: transparent;
1038
+ outline: 1px solid var(--theme-input-border);
1039
+ }
1040
+ .searchInput_outlined:hover > .searchInput_input {
1041
+ outline-color: var(--theme-input-border-hover);
1042
+ }
1043
+ .searchInput_outlined > .searchInput_input:focus {
1044
+ outline-color: var(--theme-focus);
1045
+ }
1046
+
1047
+ /* src/components/common/WrapForLabel/wrapForLabel.module.css */
1048
+ .wrapForLabel_root {
1049
+ display: flex;
1050
+ align-items: center;
1051
+ }
1052
+ .wrapForLabel_medium {
1053
+ height: 40px;
1054
+ margin-top: 24px;
1055
+ }
1056
+ .wrapForLabel_small {
1057
+ height: 32px;
1058
+ margin-top: 20px;
1059
+ }
1060
+
1061
+ /* src/components/common/MultiSelect/multiSelect.module.css */
1062
+ .multiSelect_root {
1063
+ display: flex;
1064
+ flex-direction: column;
1065
+ width: 100%;
1066
+ max-width: 320px;
1067
+ }
1068
+ .multiSelect_medium {
1069
+ gap: 8px;
1070
+ }
1071
+ .multiSelect_small {
1072
+ gap: 4px;
1073
+ }
1074
+ .multiSelect_label {
1075
+ color: var(--theme-text-secondary);
1076
+ }
1077
+ .multiSelect_wrapper {
1078
+ position: relative;
1079
+ width: 100%;
1080
+ }
1081
+ .multiSelect_medium > .multiSelect_wrapper {
1082
+ height: 40px;
1083
+ }
1084
+ .multiSelect_small > .multiSelect_wrapper {
1085
+ height: 32px;
1086
+ }
1087
+ .multiSelect_input {
1088
+ position: relative;
1089
+ z-index: 1;
1090
+ width: 100%;
1091
+ overflow: hidden;
1092
+ font-size: var(--text-subtitle2-size);
1093
+ font-weight: var(--text-subtitle2-weight);
1094
+ line-height: var(--text-subtitle2-height);
1095
+ color: var(--theme-text-primary);
1096
+ text-overflow: ellipsis;
1097
+ letter-spacing: var(--text-subtitle2-letter);
1098
+ white-space: nowrap;
1099
+ cursor: pointer;
1100
+ border: none;
1101
+ border-radius: 4px;
1102
+ outline: none;
1103
+ }
1104
+ .multiSelect_medium > .multiSelect_wrapper > .multiSelect_input {
1105
+ height: 40px;
1106
+ padding: 8px 70px 8px 16px;
1107
+ }
1108
+ .multiSelect_small > .multiSelect_wrapper > .multiSelect_input {
1109
+ height: 32px;
1110
+ padding: 4px 70px 4px 16px;
1111
+ }
1112
+ .multiSelect_withIcon > .multiSelect_wrapper > .multiSelect_input {
1113
+ padding-left: 48px;
1114
+ }
1115
+ .multiSelect_withItemIcon > .multiSelect_wrapper > .multiSelect_input {
1116
+ padding-left: 48px;
1117
+ }
1118
+ .multiSelect_withIcon.multiSelect_withItemIcon > .multiSelect_wrapper > .multiSelect_input {
1119
+ padding-left: 80px;
1120
+ }
1121
+ .multiSelect_icon {
1122
+ position: absolute;
1123
+ left: 16px;
1124
+ z-index: 2;
1125
+ display: flex;
1126
+ align-items: center;
1127
+ justify-content: center;
1128
+ width: 24px;
1129
+ height: 24px;
1130
+ cursor: pointer;
1131
+ }
1132
+ .multiSelect_medium > .multiSelect_wrapper > .multiSelect_icon {
1133
+ top: 8px;
1134
+ }
1135
+ .multiSelect_small > .multiSelect_wrapper > .multiSelect_icon {
1136
+ top: 4px;
1137
+ }
1138
+ .multiSelect_icon > svg {
1139
+ fill: var(--theme-icon-primary);
1140
+ }
1141
+ .multiSelect_itemIcon {
1142
+ position: absolute;
1143
+ left: 16px;
1144
+ z-index: 2;
1145
+ display: flex;
1146
+ align-items: center;
1147
+ justify-content: center;
1148
+ width: 24px;
1149
+ height: 24px;
1150
+ cursor: pointer;
1151
+ }
1152
+ .multiSelect_icon + .multiSelect_itemIcon {
1153
+ left: 48px;
1154
+ }
1155
+ .multiSelect_medium > .multiSelect_wrapper > .multiSelect_itemIcon {
1156
+ top: 8px;
1157
+ }
1158
+ .multiSelect_small > .multiSelect_wrapper > .multiSelect_itemIcon {
1159
+ top: 4px;
1160
+ }
1161
+ .multiSelect_itemIcon > svg {
1162
+ fill: var(--theme-icon-primary);
1163
+ }
1164
+ .multiSelect_filled > .multiSelect_input {
1165
+ background-color: var(--theme-input-filled);
1166
+ }
1167
+ .multiSelect_filled:hover > .multiSelect_input {
1168
+ background-color: var(--theme-input-filled-hover);
1169
+ }
1170
+ .multiSelect_filled > .multiSelect_input:focus {
1171
+ background-color: var(--theme-input-filled-hover);
1172
+ }
1173
+ .multiSelect_outlined > .multiSelect_input {
1174
+ background-color: transparent;
1175
+ outline: 1px solid var(--theme-input-border);
1176
+ }
1177
+ .multiSelect_outlined:hover > .multiSelect_input {
1178
+ outline-color: var(--theme-input-border-hover);
1179
+ }
1180
+ .multiSelect_outlined > .multiSelect_input:focus {
1181
+ outline-color: var(--theme-focus);
1182
+ }
1183
+ .multiSelect_clear {
1184
+ position: absolute;
1185
+ right: 40px;
1186
+ z-index: 2;
1187
+ display: flex;
1188
+ align-items: center;
1189
+ justify-content: center;
1190
+ width: 26px;
1191
+ height: 26px;
1192
+ cursor: pointer;
1193
+ border-radius: 12px;
1194
+ }
1195
+ .multiSelect_clear:hover {
1196
+ background-color: var(--theme-icon-hover);
1197
+ }
1198
+ .multiSelect_clear > svg {
1199
+ fill: var(--theme-icon-primary);
1200
+ }
1201
+ .multiSelect_medium > .multiSelect_wrapper > .multiSelect_clear {
1202
+ top: 6px;
1203
+ }
1204
+ .multiSelect_small > .multiSelect_wrapper > .multiSelect_clear {
1205
+ top: 2px;
1206
+ }
1207
+ .multiSelect_arrow {
1208
+ position: absolute;
1209
+ right: 16px;
1210
+ z-index: 2;
1211
+ display: flex;
1212
+ align-items: center;
1213
+ justify-content: center;
1214
+ width: 24px;
1215
+ height: 24px;
1216
+ cursor: pointer;
1217
+ }
1218
+ .multiSelect_medium > .multiSelect_wrapper > .multiSelect_arrow {
1219
+ top: 8px;
1220
+ }
1221
+ .multiSelect_small > .multiSelect_wrapper > .multiSelect_arrow {
1222
+ top: 4px;
1223
+ }
1224
+ .multiSelect_arrow > svg {
1225
+ fill: var(--theme-icon-primary);
1226
+ }
1227
+ .multiSelect_popoverTarget {
1228
+ position: absolute;
1229
+ bottom: 0;
1230
+ left: 0;
1231
+ z-index: 1;
1232
+ width: 100%;
1233
+ height: 0;
1234
+ }
1235
+ .multiSelect_popoverContent {
1236
+ max-height: 250px;
1237
+ overflow: auto scroll;
1238
+ }
1239
+
1240
+ /* src/components/common/Checklist/checklist.module.css */
1241
+ .checklist_root {
1242
+ display: flex;
1243
+ flex: 1 1 0;
1244
+ flex-direction: column;
1245
+ gap: 16px;
1246
+ height: 100%;
1247
+ }
1248
+ .checklist_scrolled {
1249
+ flex: 1 1 0;
1250
+ }
1251
+ .checklist_actionWrap {
1252
+ display: flex;
1253
+ flex-direction: row;
1254
+ align-items: center;
1255
+ justify-content: space-between;
1256
+ width: 100%;
1257
+ }
1258
+
1259
+ /* src/components/common/ButtonsGroup/buttonsGroup.module.css */
1260
+ .buttonsGroup_root {
1261
+ display: flex;
1262
+ align-items: center;
1263
+ }
1264
+ .buttonsGroup_root > *:nth-child(n+1) {
1265
+ border-top-right-radius: 0;
1266
+ border-bottom-right-radius: 0;
1267
+ }
1268
+ .buttonsGroup_root > *:nth-child(n+2) {
1269
+ margin-left: 1px;
1270
+ border-top-left-radius: 0;
1271
+ border-bottom-left-radius: 0;
1272
+ }
1273
+ .buttonsGroup_root > *:last-child {
1274
+ border-top-right-radius: 4px;
1275
+ border-bottom-right-radius: 4px;
1276
+ }
1277
+
1278
+ /* src/components/layout/Surface/surface.module.css */
1279
+ .surface_root {
1280
+ padding: 16px;
1281
+ border-radius: 4px;
1282
+ }
1283
+ .surface_primary {
1284
+ background-color: var(--theme-surface-background);
1285
+ box-shadow:
1286
+ 0px 2px 4px 0px rgba(0, 0, 0, 0.2),
1287
+ 0px 1px 10px 0px rgba(0, 0, 0, 0.12),
1288
+ 0px 4px 5px 0px rgba(0, 0, 0, 0.14);
1289
+ }
1290
+ .surface_panel {
1291
+ background-color: var(--theme-surface-panel);
1292
+ box-shadow:
1293
+ 0px 2px 4px 0px rgba(0, 0, 0, 0.2),
1294
+ 0px 1px 10px 0px rgba(0, 0, 0, 0.12),
1295
+ 0px 4px 5px 0px rgba(0, 0, 0, 0.14);
1296
+ }
1297
+ .surface_modal {
1298
+ background-color: var(--theme-surface-modal);
1299
+ }
1300
+
1301
+ /* src/components/layout/Layout/layout.module.css */
1302
+ .layout_root {
1303
+ position: relative;
1304
+ display: flex;
1305
+ flex-direction: column;
1306
+ gap: 0;
1307
+ width: 100%;
1308
+ height: 100%;
1309
+ padding: 8px;
1310
+ overflow: hidden;
1311
+ color: var(--theme-text-primary);
1312
+ background-color: var(--theme-surface-layout);
1313
+ }
1314
+ .layout_withHeader {
1315
+ padding: 66px 8px 8px 8px;
1316
+ }
1317
+
1318
+ /* src/components/navigation/Tabs/tabs.module.css */
1319
+ .tabs_root {
1320
+ display: flex;
1321
+ flex-direction: row;
1322
+ gap: 12px;
1323
+ align-items: center;
1324
+ justify-content: flex-start;
1325
+ width: 100%;
1326
+ border-bottom: 1px solid var(--theme-divider);
1327
+ }
1328
+ .tabs_tab {
1329
+ display: flex;
1330
+ flex-direction: column;
1331
+ gap: 6px;
1332
+ cursor: pointer;
1333
+ }
1334
+ .tabs_tabTitle {
1335
+ padding: 0 16px;
1336
+ }
1337
+ .tabs_tabTitle > span {
1338
+ font-size: var(--text-subtitle2-size);
1339
+ font-weight: var(--text-subtitle2-weight);
1340
+ line-height: var(--text-subtitle2-height);
1341
+ color: var(--theme-text-secondary);
1342
+ letter-spacing: var(--text-subtitle2-letter);
1343
+ }
1344
+ .tabs_tabBorder {
1345
+ border-bottom: 2px solid transparent;
1346
+ }
1347
+ .tabs_tab.tabs_selected > .tabs_tabBorder {
1348
+ border-bottom-color: var(--theme-focus);
1349
+ }
1350
+ .tabs_tab.tabs_selected > .tabs_tabTitle > span {
1351
+ color: var(--theme-text-primary);
1352
+ }
1353
+
1354
+ /* src/components/view/Tooltip/tooltip.module.css */
1355
+ .tooltip_trigger {
1356
+ display: inline-flex;
1357
+ align-items: center;
1358
+ height: 100%;
1359
+ }
1360
+ .tooltip_content {
1361
+ z-index: 999;
1362
+ max-width: 280px;
1363
+ padding: 6px 8px;
1364
+ font-size: var(--text-caption-size);
1365
+ font-weight: var(--text-caption-weight);
1366
+ line-height: var(--text-caption-height);
1367
+ color: var(--theme-alert-default-color);
1368
+ text-align: center;
1369
+ letter-spacing: var(--text-caption-letter);
1370
+ background-color: var(--theme-alert-default-background);
1371
+ border-radius: 4px;
1372
+ box-shadow:
1373
+ 0px 1px 3px 0px rgba(0, 0, 0, 0.2),
1374
+ 0px 2px 1px 0px rgba(0, 0, 0, 0.12),
1375
+ 0px 1px 1px 0px rgba(0, 0, 0, 0.14);
1376
+ }
1377
+ .tooltip_content.tooltip_success {
1378
+ color: var(--theme-alert-success-color);
1379
+ background-color: var(--theme-alert-success-background);
1380
+ }
1381
+ .tooltip_content.tooltip_warning {
1382
+ color: var(--theme-alert-warning-color);
1383
+ background-color: var(--theme-alert-warning-background);
1384
+ }
1385
+ .tooltip_content.tooltip_error {
1386
+ color: var(--theme-alert-error-color);
1387
+ background-color: var(--theme-alert-error-background);
1388
+ }
1389
+ .tooltip_content.tooltip_info {
1390
+ color: var(--theme-alert-info-color);
1391
+ background-color: var(--theme-alert-info-background);
1392
+ }
1393
+ .tooltip_content > .tooltip_arrow {
1394
+ width: 6px;
1395
+ height: 6px;
1396
+ --arrow-color: var(--theme-alert-default-background);
1397
+ }
1398
+ .tooltip_content.tooltip_success > .tooltip_arrow {
1399
+ --arrow-color: var(--theme-alert-success-background);
1400
+ }
1401
+ .tooltip_content.tooltip_warning > .tooltip_arrow {
1402
+ --arrow-color: var(--theme-alert-warning-background);
1403
+ }
1404
+ .tooltip_content.tooltip_error > .tooltip_arrow {
1405
+ --arrow-color: var(--theme-alert-error-background);
1406
+ }
1407
+ .tooltip_content.tooltip_info > .tooltip_arrow {
1408
+ --arrow-color: var(--theme-alert-info-background);
1409
+ }
1410
+ .tooltip_content > .tooltip_arrow.tooltip_top-arrow {
1411
+ border-top: 6px solid var(--arrow-color);
1412
+ border-right: 6px solid transparent;
1413
+ border-left: 6px solid transparent;
1414
+ transform: translate(0, 6px);
1415
+ }
1416
+ .tooltip_content > .tooltip_arrow.tooltip_bottom-arrow {
1417
+ border-right: 6px solid transparent;
1418
+ border-bottom: 6px solid var(--arrow-color);
1419
+ border-left: 6px solid transparent;
1420
+ transform: translate(0, -6px);
1421
+ }
1422
+ .tooltip_content > .tooltip_arrow.tooltip_left-arrow {
1423
+ border-top: 6px solid transparent;
1424
+ border-bottom: 6px solid transparent;
1425
+ border-left: 6px solid var(--arrow-color);
1426
+ transform: translate(6px, 0);
1427
+ }
1428
+ .tooltip_content > .tooltip_arrow.tooltip_right-arrow {
1429
+ border-top: 6px solid transparent;
1430
+ border-right: 6px solid var(--arrow-color);
1431
+ border-bottom: 6px solid transparent;
1432
+ transform: translate(-6px, 0);
1433
+ }
1434
+
1435
+ /* src/components/view/Modal/modal.module.css */
1436
+ .modal_root {
1437
+ position: absolute;
1438
+ top: 0;
1439
+ left: 0;
1440
+ z-index: 999;
1441
+ display: flex;
1442
+ align-items: center;
1443
+ justify-content: center;
1444
+ width: 100%;
1445
+ height: 100%;
1446
+ padding: 16px;
1447
+ background-color: var(--theme-modal-shadow-background);
1448
+ }
1449
+ .modal_modal {
1450
+ min-width: 200px;
1451
+ max-width: 100%;
1452
+ }
1453
+
1454
+ /* src/components/view/VirtualTable/virtualTable.module.css */
1455
+ .virtualTable_root {
1456
+ position: relative;
1457
+ display: flex;
1458
+ flex-direction: column;
1459
+ gap: 0;
1460
+ height: 100%;
1461
+ --border-color: var(--theme-divider);
1462
+ }
1463
+ .virtualTable_tableContainer {
1464
+ height: calc(100% + 16px);
1465
+ }
1466
+ .virtualTable_table {
1467
+ position: relative;
1468
+ }
1469
+ .virtualTable_th {
1470
+ position: absolute;
1471
+ top: 0;
1472
+ left: 0;
1473
+ z-index: 2;
1474
+ padding: 6px 12px;
1475
+ background-color: var(--theme-table-header);
1476
+ border-bottom: 1px solid var(--border-color);
1477
+ border-left: 1px solid var(--border-color);
1478
+ }
1479
+ .virtualTable_firstThRow {
1480
+ border-top: 1px solid var(--border-color);
1481
+ }
1482
+ .virtualTable_thCell {
1483
+ display: flex;
1484
+ flex-direction: row;
1485
+ gap: 4px;
1486
+ align-items: center;
1487
+ justify-content: center;
1488
+ height: 100%;
1489
+ }
1490
+ .virtualTable_label {
1491
+ display: flex;
1492
+ align-items: center;
1493
+ }
1494
+ .virtualTable_label.virtualTable_alignLeft {
1495
+ flex: 1 1 0;
1496
+ justify-content: flex-start;
1497
+ width: 0;
1498
+ text-align: left;
1499
+ }
1500
+ .virtualTable_label.virtualTable_alignRight {
1501
+ flex: 1 1 0;
1502
+ justify-content: flex-end;
1503
+ order: 2;
1504
+ width: 0;
1505
+ text-align: right;
1506
+ }
1507
+ .virtualTable_label.virtualTable_alignCenter {
1508
+ justify-content: center;
1509
+ text-align: center;
1510
+ }
1511
+ .virtualTable_td {
1512
+ position: absolute;
1513
+ top: 0;
1514
+ left: 0;
1515
+ z-index: 1;
1516
+ display: flex;
1517
+ align-items: center;
1518
+ padding: 0;
1519
+ background-color: var(--theme-table-background);
1520
+ border-bottom: 1px solid var(--border-color);
1521
+ border-left: 1px solid var(--border-color);
1522
+ }
1523
+ .virtualTable_evenRow {
1524
+ background-color: var(--theme-table-even-row);
1525
+ }
1526
+ .virtualTable_td.virtualTable_selected {
1527
+ background-color: var(--theme-table-selected-row);
1528
+ }
1529
+ .virtualTable_marginLeftChanging {
1530
+ background-color: var(--theme-table-header);
1531
+ border-left: 1px solid var(--border-color);
1532
+ }
1533
+ .virtualTable_marginLeftChangingLast {
1534
+ border-right: 1px solid var(--border-color);
1535
+ }
1536
+ .virtualTable_marginTopChanging.virtualTable_marginLeftChanging {
1537
+ z-index: 3;
1538
+ }
1539
+ .virtualTable_rightBorder {
1540
+ position: absolute;
1541
+ top: 0;
1542
+ left: 100%;
1543
+ z-index: 4;
1544
+ width: 1px;
1545
+ max-height: 100%;
1546
+ content: "";
1547
+ border-right: 1px solid var(--border-color);
1548
+ }
1549
+ .virtualTable_bottomBorder {
1550
+ position: absolute;
1551
+ top: 100%;
1552
+ left: 0;
1553
+ z-index: 4;
1554
+ max-width: 100%;
1555
+ height: 1px;
1556
+ content: "";
1557
+ border-bottom: 1px solid var(--border-color);
1558
+ }
1559
+ .virtualTable_viewCell {
1560
+ display: flex;
1561
+ align-items: center;
1562
+ width: 100%;
1563
+ height: 100%;
1564
+ background-color: transparent;
1565
+ border: 2px solid transparent;
1566
+ }
1567
+ .virtualTable_viewCell.virtualTable_alignLeft {
1568
+ justify-content: flex-start;
1569
+ text-align: left;
1570
+ }
1571
+ .virtualTable_viewCell.virtualTable_alignRight {
1572
+ justify-content: flex-end;
1573
+ text-align: right;
1574
+ }
1575
+ .virtualTable_viewCell.virtualTable_alignCenter {
1576
+ justify-content: center;
1577
+ text-align: center;
1578
+ }
1579
+ .virtualTable_viewCell.virtualTable_error {
1580
+ background-color: var(--theme-table-error);
1581
+ border-color: var(--theme-error);
1582
+ }
1583
+ .virtualTable_viewSpan {
1584
+ margin: 4px 10px;
1585
+ }
1586
+ .virtualTable_showInModal {
1587
+ position: relative;
1588
+ align-items: flex-start;
1589
+ overflow: hidden;
1590
+ cursor: pointer;
1591
+ }
1592
+ .virtualTable_showInModal::after {
1593
+ position: absolute;
1594
+ bottom: 0;
1595
+ left: 0;
1596
+ z-index: 1;
1597
+ width: 100%;
1598
+ height: 20px;
1599
+ content: "";
1600
+ background: var(--theme-table-background);
1601
+ background: linear-gradient(rgba(0, 0, 0, 0) 0%, var(--theme-table-background) 65%);
1602
+ }
1603
+ .virtualTable_evenRow .virtualTable_showInModal::after {
1604
+ background: var(--theme-table-even-row);
1605
+ background: linear-gradient(rgba(0, 0, 0, 0) 0%, var(--theme-table-even-row) 65%);
1606
+ }
1607
+ .virtualTable_modalContent {
1608
+ width: 500px;
1609
+ }
1610
+ .virtualTable_verticalAlignFlexStart {
1611
+ align-items: flex-start;
1612
+ white-space: pre-wrap;
1613
+ }
1614
+ .virtualTable_verticalAlignCenter {
1615
+ align-items: flex-start;
1616
+ white-space: pre-wrap;
1617
+ }
1618
+ .virtualTable_verticalAlignFlexEnd {
1619
+ align-items: flex-start;
1620
+ white-space: pre-wrap;
1621
+ }
1622
+
1623
+ /* src/components/view/VirtualTable/ui/HeaderDropdown/headerDropdown.module.css */
1624
+ .headerDropdown_root {
1625
+ position: relative;
1626
+ display: flex;
1627
+ gap: 4px;
1628
+ align-items: center;
1629
+ justify-content: center;
1630
+ width: 100%;
1631
+ height: 100%;
1632
+ }
1633
+ .headerDropdown_checklistWrap {
1634
+ display: flex;
1635
+ flex-direction: column;
1636
+ height: 300px;
1637
+ padding: 16px;
1638
+ }
1639
+ .headerDropdown_iconButton > span {
1640
+ background: none !important;
1641
+ }
1642
+
1643
+ /* src/components/view/TreeView/treeView.module.css */
1644
+ .treeView_search {
1645
+ margin-bottom: 12px;
1646
+ }
1647
+
1648
+ /* src/components/view/TreeView/ui/TreeViewItem/treeViewItem.module.css */
1649
+ .treeViewItem_item {
1650
+ display: flex;
1651
+ align-items: center;
1652
+ padding: 6px 8px;
1653
+ cursor: pointer;
1654
+ transition: 0.225s;
1655
+ }
1656
+ .treeViewItem_selectable:hover {
1657
+ background-color: var(--theme-input-filled);
1658
+ }
1659
+ .treeViewItem_children {
1660
+ margin-left: 20px;
1661
+ }
1662
+ .treeViewItem_title {
1663
+ display: flex;
1664
+ column-gap: 8px;
1665
+ align-items: center;
1666
+ width: 100%;
1667
+ }
1668
+ .treeViewItem_title.treeViewItem_selected {
1669
+ color: var(--theme-icon-hover-on-selected);
1670
+ }
1671
+ .treeViewItem_selectIcon {
1672
+ margin-left: auto;
1673
+ }
1674
+
1675
+ /* src/components/view/Pairs/pairs.module.css */
1676
+ .pairs_rowContainerBorders:last-child {
1677
+ border-bottom: 1px solid var(--theme-divider);
1678
+ }
1679
+ .pairs_labelsContainer {
1680
+ display: flex;
1681
+ align-items: center;
1682
+ padding-right: 34px;
1683
+ }
1684
+ .pairs_labelsWithBorders {
1685
+ padding: 4px 12px 4px 12px;
1686
+ border-top: 1px solid var(--theme-divider);
1687
+ border-right: 1px solid var(--theme-divider);
1688
+ border-left: 1px solid var(--theme-divider);
1689
+ }
1690
+ .pairs_valuesContainer {
1691
+ display: flex;
1692
+ align-items: center;
1693
+ }
1694
+ .pairs_valuesWithBorders {
1695
+ padding: 4px 12px 4px 12px;
1696
+ border-top: 1px solid var(--theme-divider);
1697
+ border-right: 1px solid var(--theme-divider);
1698
+ }
1699
+ .pairs_dimTypography {
1700
+ color: var(--theme-text-secondary);
1701
+ }
1702
+ .pairs_trimmedTypography {
1703
+ overflow: hidden;
1704
+ text-overflow: ellipsis;
1705
+ white-space: nowrap;
1706
+ }
1707
+
1708
+ /* src/components/view/Card/card.module.css */
1709
+ .card_root {
1710
+ display: flex;
1711
+ flex-direction: column;
1712
+ gap: 16px;
1713
+ height: 100%;
1714
+ padding: 16px;
1715
+ border-radius: 4px;
1716
+ }
1717
+ .card_header {
1718
+ display: flex;
1719
+ gap: 16px;
1720
+ align-items: center;
1721
+ justify-content: space-between;
1722
+ }
1723
+ .card_actions {
1724
+ display: flex;
1725
+ gap: 8px;
1726
+ align-items: center;
1727
+ }