nntc-ui 0.0.17 → 0.0.19

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