react-graph-grid 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,922 @@
1
+ body {
2
+ }
3
+
4
+ .modal-window-wnd {
5
+ border-radius: 3px;
6
+ overflow: hidden;
7
+ background: white;
8
+ border: 1px solid lightgray;
9
+ }
10
+
11
+ .modal-window-header {
12
+ padding: 5px 10px 0;
13
+ display: flex;
14
+ flex-wrap: nowrap;
15
+ justify-content: space-between;
16
+ align-items: center;
17
+ }
18
+
19
+ .modal-window-header > h4 {
20
+ white-space: nowrap;
21
+ overflow: hidden;
22
+ margin-left: 1.5em;
23
+ }
24
+
25
+ .modal-window-header > button {
26
+ border: 0;
27
+ background: 0 0;
28
+ font-size: 21px;
29
+ font-weight: 700;
30
+ line-height: 1;
31
+ opacity: 0.2;
32
+ }
33
+
34
+ .modal-window-header > button:hover:not(:disabled) {
35
+ opacity: 1;
36
+ cursor: pointer;
37
+ }
38
+
39
+ .modal-window-body {
40
+ padding: 0 10px;
41
+ height: 100%;
42
+ overflow: auto;
43
+ }
44
+
45
+ .modal-window-footer {
46
+ padding: 10px;
47
+ justify-content: flex-end !important;
48
+ }
49
+
50
+ .modal-window-footer-button {
51
+ padding: 2px 5px;
52
+ margin: 5px;
53
+ white-space: nowrap;
54
+ overflow: hidden;
55
+ }
56
+
57
+ .modal-window-footer-button:hover:not(:disabled) {
58
+ background-color: lightgray;
59
+ cursor: pointer;
60
+ }
61
+
62
+ .overlay-default {
63
+ flex-direction: column;
64
+ justify-content: space-between;
65
+ }
66
+
67
+ .grid-div {
68
+ overflow-x: auto;
69
+ overflow-y: hidden;
70
+ }
71
+
72
+ .grid-default {
73
+ /*border-collapse: collapse;*/
74
+ table-layout: fixed !important;
75
+ border-spacing: 0;
76
+ /*border: solid 1px;*/
77
+ }
78
+
79
+ .grid-default > tr > td,
80
+ .grid-default > tbody > tr > td {
81
+ border: solid;
82
+ border-width: 0 0 1px 1px;
83
+ /*overflow-x: hidden;*/
84
+ white-space: nowrap;
85
+ text-overflow: clip;
86
+ vertical-align: middle;
87
+ /*white-space-collapse: collapse;*/
88
+ }
89
+
90
+ .grid-default > tr > td:last-child,
91
+ .grid-default > tbody > tr > td:last-child {
92
+ border-width: 0 1px 1px 1px;
93
+ }
94
+
95
+ .grid-default > tr > td.grid-waiting,
96
+ .grid-default > tbody > tr > td.grid-waiting {
97
+ border-width: 0;
98
+ /*background-color: rgb(235, 235, 235);*/
99
+ }
100
+
101
+ .grid-default > tr > th,
102
+ .grid-default > thead > tr > th {
103
+ background-color: white;
104
+ border: solid;
105
+ border-width: 1px 0 1px 1px;
106
+ /*border: none;*/
107
+ /*box-shadow: inset 1px 0 0 0 gray, inset -1px -1px 0 0 gray;*/
108
+ /*box-shadow: inset 0 -1px 0 0 gray;*/
109
+ /*border-width: 0 1px 0 1px;*/
110
+ white-space: nowrap;
111
+ text-overflow: clip;
112
+ /*vertical-align: middle;*/
113
+ }
114
+
115
+ .grid-default > tr > th:last-child,
116
+ .grid-default > thead > tr > th:last-child {
117
+ border-width: 1px;
118
+ }
119
+
120
+
121
+ .grid-header-div {
122
+ border: none;
123
+ margin: -1px -1px -1px -1px;
124
+ /*border: solid;*/
125
+ /*border-width: 1px 0 1px 1px;*/
126
+ }
127
+
128
+ .grid-header-th {
129
+ background-color: white;
130
+ vertical-align: top;
131
+ }
132
+
133
+ .grid-header-div-default {
134
+ user-select: none;
135
+ display: grid;
136
+ grid-template-columns: auto 8px;
137
+ grid-template-rows: auto auto;
138
+ grid-auto-flow: row;
139
+ align-items: center;
140
+ justify-items: start;
141
+ }
142
+
143
+ .grid-header-content {
144
+ display: flex;
145
+ flex-wrap: nowrap;
146
+ justify-content: space-between;
147
+ align-items: center;
148
+ padding: 2px 0;
149
+ }
150
+
151
+ .grid-header-drag-over {
152
+ background-color: lightgray !important;
153
+ }
154
+
155
+ .grid-header-sort-sign {
156
+ /*margin-top: -4px;*/
157
+ font-size: 12px;
158
+ display: flex;
159
+ align-items: flex-end;
160
+ justify-content: flex-end;
161
+ cursor: pointer;
162
+ align-items: center;
163
+ background-color: white;
164
+ }
165
+
166
+ .grid-header-filter {
167
+ /*white-space: nowrap;*/
168
+ display: flex;
169
+ grid-column: span 2;
170
+ }
171
+
172
+ .grid-filter-clear {
173
+ border: 0;
174
+ opacity: 0.2;
175
+ display: flex;
176
+ justify-content: center;
177
+ align-items: center;
178
+ margin: 0 2px;
179
+ border-radius: 3px;
180
+ }
181
+
182
+ .grid-filter-clear:hover {
183
+ opacity: 1;
184
+ }
185
+
186
+ .grid-cell {
187
+ overflow: hidden;
188
+ display: block;
189
+ white-space: nowrap;
190
+ text-overflow: clip;
191
+ }
192
+
193
+ .grid-selected-row {
194
+ background-color: lightgray;
195
+ }
196
+
197
+ /*tr.grid-selected-row > td {
198
+ padding: 0.01em;
199
+ }
200
+ */
201
+ .grid-pager-default {
202
+ display: flex;
203
+ align-content: center;
204
+ flex-wrap: nowrap;
205
+ align-items: center;
206
+ }
207
+
208
+ .grid-pager-default > button, .grid-pager-default > span, .grid-pager-default > input, .grid-pager-default > select {
209
+ margin: 5px 2px;
210
+ }
211
+
212
+ .grid-pocket-title {
213
+ display: flex;
214
+ justify-content: space-around;
215
+ font-weight: bold;
216
+ }
217
+
218
+ .grid-pocket-button-div {
219
+ display: flex;
220
+ justify-content: center;
221
+ align-items: center;
222
+ }
223
+
224
+ .grid-pocket-button {
225
+ height: 18px;
226
+ width: 20px;
227
+ border-radius: 3px;
228
+ border-width: 1px;
229
+ display: flex;
230
+ justify-content: center;
231
+ font-size: large;
232
+ align-items: center;
233
+ padding: 0.01px;
234
+ }
235
+
236
+ .grid-pocket-button:hover:not(:disabled) {
237
+ background-color: lightgray;
238
+ cursor: pointer;
239
+ }
240
+
241
+ .grid-pocket-button-all.grid-pocket-button {
242
+ font-weight: bold;
243
+ }
244
+
245
+ .grid-pager-button {
246
+ /*margin: 5px 2px;*/
247
+ /*height: 28px;
248
+ width: 36px;*/
249
+ height: 2em;
250
+ width: 2.5em;
251
+ border-radius: 3px;
252
+ border-width: 1px;
253
+ display: flex;
254
+ align-items: center;
255
+ justify-content: center; /*space-between;*/
256
+ }
257
+
258
+ .grid-pager-button:hover:not(:disabled) {
259
+ background-color: lightgray;
260
+ cursor: pointer;
261
+ }
262
+
263
+ .grid-pager-button:disabled {
264
+ filter: grayscale(1.0);
265
+ opacity: 0.2;
266
+ }
267
+
268
+ .toolbar-default {
269
+ display: flex;
270
+ align-content: center;
271
+ flex-wrap: nowrap;
272
+ align-items: center;
273
+ }
274
+
275
+ .toolbar-default > button {
276
+ /* display: flex;
277
+ align-items: center;
278
+ flex-wrap: wrap;
279
+ */ margin: 5px 2px;
280
+ }
281
+
282
+ .toolbar-default > button:hover:not(:disabled) {
283
+ cursor: pointer;
284
+ background-color: lightgray;
285
+ }
286
+
287
+ .toolbar-default > button > svg {
288
+ margin: 0 2px 0 0;
289
+ }
290
+
291
+ .toolbar-default > button > div > svg {
292
+ margin: 0 2px 0 0;
293
+ }
294
+
295
+
296
+ .grid-toolbar-button {
297
+ /*height: 2em;*/
298
+ /*height: 28px;*/
299
+ height: 2em;
300
+ width: 2.5em;
301
+ display: flex;
302
+ align-items: center;
303
+ justify-content: space-between;
304
+ border-radius: 3px;
305
+ border-width: 1px;
306
+ /*padding: 1px 0px;*/
307
+ margin: 5px 2px;
308
+ }
309
+
310
+ .grid-toolbar-button:hover:not(:disabled) {
311
+ cursor: pointer;
312
+ background-color: lightgray;
313
+ }
314
+
315
+ .grid-toolbar-button:disabled, .grid-toolbar-button-md:disabled, .grid-toolbar-button-lg:disabled {
316
+ filter: grayscale(1.0);
317
+ opacity: 0.2;
318
+ }
319
+
320
+ .grid-toolbar-button-md {
321
+ height: 3em;
322
+ width: auto;
323
+ display: grid;
324
+ grid-template-columns: 2em auto;
325
+ align-items: center;
326
+ border-radius: 3px;
327
+ border-width: 1px;
328
+ min-width: 6em;
329
+ justify-content: start;
330
+ margin: 4px;
331
+ overflow: hidden;
332
+ }
333
+
334
+ .grid-toolbar-button-lg {
335
+ height: 4em;
336
+ width: auto;
337
+ display: grid;
338
+ border-radius: 3px;
339
+ border-width: 1px;
340
+ align-content: space-around;
341
+ align-items: center;
342
+ justify-items: center;
343
+ min-width: 8em;
344
+ box-shadow: 2px 2px 4px 0px;
345
+ margin: 4px;
346
+ overflow: hidden;
347
+ }
348
+
349
+ .image-container-div {
350
+ display: flex;
351
+ align-items: center;
352
+ justify-content: center;
353
+ }
354
+
355
+ .grid-pager-current {
356
+ width: 3em;
357
+ height: 1.6em;
358
+ /*height: 22px;*/
359
+ margin: 0 2px;
360
+ }
361
+
362
+ .grid-pager-of {
363
+ padding: 0 3px;
364
+ white-space: nowrap;
365
+ }
366
+
367
+ .grid-pager-total {
368
+ padding: 0 3px;
369
+ white-space: nowrap;
370
+ }
371
+
372
+ .grid-pager-size {
373
+ }
374
+
375
+ .grid-settings-ul {
376
+ padding: 0;
377
+ margin: 5px 0;
378
+ }
379
+
380
+ .grid-settings-ul > li {
381
+ list-style-type: none;
382
+ cursor: pointer;
383
+ }
384
+
385
+ .grid-loader {
386
+ display: flex;
387
+ align-items: center;
388
+ justify-content: center;
389
+ position: sticky;
390
+ left: 0;
391
+ }
392
+
393
+ .dropdown-wnd {
394
+ background: white;
395
+ border: 1px solid;
396
+ /*padding: 0 5px;*/
397
+ }
398
+
399
+ .dropdown-ul {
400
+ padding: 0;
401
+ /*margin: 5px 0;*/
402
+ margin: 0;
403
+ height: 100%;
404
+ }
405
+
406
+ .dropdown-ul > li {
407
+ list-style-type: none;
408
+ cursor: pointer;
409
+ white-space: nowrap;
410
+ padding: 4px;
411
+ display: flex;
412
+ align-items: center;
413
+ flex-wrap: nowrap;
414
+ justify-content: space-between;
415
+ }
416
+
417
+ .dropdown-ul > li:hover {
418
+ background-color: lightgray;
419
+ }
420
+
421
+
422
+ .dropdown-ul > li.active {
423
+ background-color: lightgray;
424
+ }
425
+
426
+ .grid-header-content-grid {
427
+ display: grid;
428
+ grid-template-columns: auto 16px;
429
+ grid-template-rows: auto auto;
430
+ grid-auto-flow: row;
431
+ }
432
+
433
+ .grid-header-title {
434
+ white-space: nowrap;
435
+ overflow: hidden;
436
+ margin: 2px 4px;
437
+ }
438
+
439
+ .grid-header-title.grid-header-title-sortable:hover {
440
+ color: gray; /*#0026ff; /*#0d6efd;*/
441
+ }
442
+
443
+ .div-on-menu {
444
+ margin: 10px;
445
+ }
446
+
447
+ .div-with-grid {
448
+ padding: 5px;
449
+ }
450
+
451
+ .grid-col-filter {
452
+ height: 2em;
453
+ margin: 2px;
454
+ width: calc(100% - 4px) !important;
455
+ padding: 0 2px;
456
+ box-sizing: border-box;
457
+ }
458
+
459
+ .grid-cell-lookup {
460
+ display: grid;
461
+ grid-template-columns: calc(100% - 3em) 1.5em 1.5em;
462
+ grid-template-rows: auto;
463
+ /*column-gap: 2px;*/
464
+ align-items: center;
465
+ align-content: center;
466
+ white-space: nowrap;
467
+ width: calc(100% - 0.2em);
468
+ }
469
+
470
+ .grid-cell-edit {
471
+ display: grid;
472
+ grid-template-columns: calc(100% - 3em) 1.5em 1.5em;
473
+ grid-template-rows: auto;
474
+ align-items: center;
475
+ align-content: center;
476
+ /*column-gap: 2px;*/
477
+ width: calc(100% - 2px);
478
+ }
479
+
480
+ .grid-cell-button {
481
+ height: 1.6em;
482
+ width: 1.6em;
483
+ display: flex;
484
+ padding: 0 !important;
485
+ border: 0; /*1px;*/
486
+ align-items: center;
487
+ justify-content: center;
488
+ flex-wrap: nowrap;
489
+ border-radius: 3px;
490
+ border-style: solid;
491
+ font-size: small;
492
+ }
493
+
494
+ .grid-cell-button:hover:not(:disabled) {
495
+ cursor: pointer;
496
+ background-color: lightgray;
497
+ }
498
+
499
+ .graph-tabcontrol-buttons {
500
+ margin: 0 1em;
501
+ display: flex
502
+ }
503
+
504
+ .graph-tabcontrol-buttons > button {
505
+ margin: 5px 2px 5px 2px;
506
+ /*height: 2.3em;*/
507
+ }
508
+
509
+ .graph-tabcontrol-button {
510
+ height: 1.8em;
511
+ border-radius: 3px;
512
+ border-width: 1px;
513
+ display: flex;
514
+ align-items: center;
515
+ justify-content: space-between;
516
+ }
517
+
518
+ .graph-tabcontrol-button:hover:not(:disabled):not(.active) {
519
+ background-color: lightgray;
520
+ }
521
+
522
+ .graph-tabcontrol-button:not(.active) {
523
+ cursor: pointer;
524
+ }
525
+
526
+ .graph-tabcontrol-button.active {
527
+ font-weight: bold;
528
+ }
529
+
530
+ .graph-filters-div {
531
+ display: grid;
532
+ grid-template-columns: 18px auto;
533
+ align-items: center;
534
+ margin: 0 -10px;
535
+ }
536
+
537
+ .graph-filter-line {
538
+ display: grid;
539
+ grid-template-columns: repeat(auto-fit, minmax(200px, 400px)); /*repeat(auto-fit, minmax(3em, 15em))*/
540
+ /*grid-template-rows: auto auto auto;*/
541
+ grid-auto-flow: row;
542
+ align-items: center;
543
+ align-content: center;
544
+ overflow-x: auto;
545
+ column-gap: 1em;
546
+ margin-left: -10px;
547
+ }
548
+
549
+ .graph-filter {
550
+ display: grid;
551
+ grid-template-columns: auto; /*calc(100% - 5em) 2.5em 2.5em;*/
552
+ /*grid-template-rows: auto auto;*/
553
+ grid-auto-flow: row;
554
+ row-gap: 2px;
555
+ align-items: center;
556
+ margin: 0.5em 0;
557
+ min-width: 200px;
558
+ }
559
+
560
+ .field-edit {
561
+ display: grid;
562
+ /*grid-template-columns: calc(100% - 5em) 2.5em 2.5em;*/
563
+ grid-template-columns: calc(100% - 4.4em) 2.2em 2.2em;
564
+ grid-template-rows: auto auto;
565
+ grid-auto-flow: row;
566
+ align-items: center;
567
+ /*column-gap: 4px;*/
568
+ min-width: 10em;
569
+ }
570
+
571
+ /* .graph-filter > button {
572
+ margin: 5px 2px;
573
+ }
574
+ */
575
+ .graph-filter-title {
576
+ font-weight: bold;
577
+ white-space: nowrap;
578
+ overflow-x: hidden;
579
+ }
580
+
581
+ .graph-grid {
582
+ margin: 0 1em 0.5em 1em;
583
+ }
584
+
585
+ .graph-filter-button {
586
+ /*margin: 5px 0 5px 3px;
587
+ width: 2.2em;
588
+ height: 2.2em;
589
+ */
590
+ min-height: 2.2em;
591
+ width: 100%;
592
+ border-radius: 3px;
593
+ border-width: 1px;
594
+ display: flex !important;
595
+ align-items: center;
596
+ justify-content: center; /*space-between;*/
597
+ }
598
+
599
+ .graph-filter-button:hover:not(:disabled) {
600
+ cursor: pointer;
601
+ background-color: lightgray;
602
+ }
603
+
604
+ .graph-filter-clear {
605
+ /*margin: 5px 0;*/
606
+ /*width: 2.2em;*/
607
+ height: 2.2em;
608
+ width: 100%;
609
+ border-radius: 3px;
610
+ border-width: 1px;
611
+ display: flex !important;
612
+ align-items: center;
613
+ justify-content: center; /*space-between;*/
614
+ }
615
+
616
+ .graph-filter-clear:hover:not(:disabled) {
617
+ cursor: pointer;
618
+ background-color: lightgray;
619
+ }
620
+
621
+ .graph-card-button {
622
+ margin: 5px 2px;
623
+ width: 2.5em;
624
+ }
625
+
626
+ .graph-card-button:hover:not(:disabled) {
627
+ cursor: pointer;
628
+ background-color: lightgray;
629
+ }
630
+
631
+ .graph-card-toolbar {
632
+ margin: 0 1em;
633
+ position: sticky;
634
+ top: 0;
635
+ background-color: white;
636
+ z-index: 100;
637
+ }
638
+
639
+ .graph-card-div {
640
+ display: grid;
641
+ grid-auto-flow: row;
642
+ align-items: center;
643
+ align-content: center;
644
+ margin: 0.5em;
645
+ /*overflow-y: auto;*/
646
+ }
647
+
648
+ .graph-card-field {
649
+ display: grid;
650
+ /*grid-template-columns: auto 2.5em 2.5em;*/
651
+ grid-template-columns: 100%;
652
+ grid-template-rows: auto auto;
653
+ grid-auto-flow: row;
654
+ align-items: center;
655
+ align-content: center;
656
+ margin: 0 1em 0.5em 1em;
657
+ }
658
+
659
+ .graph-card-field > span {
660
+ font-weight: bold;
661
+ }
662
+
663
+
664
+ .input-default-class {
665
+ height: 1.8em;
666
+ box-sizing: border-box;
667
+ }
668
+
669
+ .input-default-class-lg {
670
+ height: 2.2em;
671
+ box-sizing: border-box;
672
+ }
673
+
674
+ .select-default-class {
675
+ height: 1.8em;
676
+ box-sizing: border-box;
677
+ }
678
+
679
+ .login-form {
680
+ display: grid;
681
+ align-items: center;
682
+ align-content: center;
683
+ margin: 20px;
684
+ }
685
+
686
+ .login-form-item {
687
+ margin: 5px;
688
+ }
689
+
690
+ .login-form > input {
691
+ }
692
+
693
+ .filter-select {
694
+ height: 2.5em;
695
+ display: flex;
696
+ flex-wrap: nowrap;
697
+ align-items: center;
698
+ }
699
+
700
+ .filter-select > div {
701
+ width: 100%;
702
+ }
703
+
704
+ .datepicker-div {
705
+ margin: 1em;
706
+ }
707
+
708
+ .datepicker-input-lg {
709
+ /*padding-top: 2px;*/
710
+ overflow: hidden;
711
+ }
712
+
713
+ .datepicker-input-lg,
714
+ .datepicker-input-lg > div.react-datepicker-wrapper,
715
+ .datepicker-input-lg > div > div.react-datepicker__input-container,
716
+ .datepicker-input-lg > div > div.react-datepicker__input-container input {
717
+ width: 100% /*calc(100% - 1px);*/
718
+ }
719
+
720
+ .datepicker-input-lg > div > div.react-datepicker__input-container input {
721
+ height: 2.2em;
722
+ border-width: 1px;
723
+ border-radius: 3px;
724
+ }
725
+
726
+ .datepicker-input {
727
+ padding-top: 5px;
728
+ overflow: hidden;
729
+ }
730
+
731
+ .datepicker-input,
732
+ .datepicker-input > div.react-datepicker-wrapper,
733
+ .datepicker-input > div > div.react-datepicker__input-container,
734
+ .datepicker-input > div > div.react-datepicker__input-container input {
735
+ width: calc(100% - 0px);
736
+ }
737
+
738
+ .grid-cell-lookup > div.datepicker-input > div > div.react-datepicker__input-container input {
739
+ min-height: 1.7em;
740
+ height: 1.7em;
741
+ padding: 0;
742
+ }
743
+
744
+ .datepicker-filter, .datepicker-filter > div.react-datepicker-wrapper, .datepicker-filter > div > div.react-datepicker__input-container, .datepicker-filter > div > div.react-datepicker__input-container input {
745
+ width: calc(100% - 0px);
746
+ height: 1.7em;
747
+ }
748
+
749
+ .datepicker-filter > div > div.react-datepicker__input-container input {
750
+ border-width: 1px;
751
+ border-radius: 3px;
752
+ padding: 0;
753
+ }
754
+
755
+ .datepicker-filter > div.react-datepicker-wrapper {
756
+ margin-top: 1px;
757
+ }
758
+
759
+ .main-menu-wnd {
760
+ border-color: lightgray !important;
761
+ }
762
+
763
+ .main-menu-div {
764
+ display: flex;
765
+ flex-wrap: nowrap;
766
+ align-content: center;
767
+ align-items: center;
768
+ margin-left: 4px;
769
+ }
770
+
771
+ .main-menu-div > button {
772
+ margin: 10px 2px;
773
+ font-size: medium;
774
+ font-weight: 300;
775
+ border-color: lightgray;
776
+ }
777
+
778
+ .main-menu-div > button.active {
779
+ font-weight: bolder;
780
+ }
781
+
782
+ .main-menu-div > button:hover:not(:disabled) {
783
+ cursor: pointer;
784
+ background-color: lightgray;
785
+ }
786
+
787
+ .menu-item, .menu-item-selected, .menu-item-root, .menu-item-root-selected {
788
+ cursor: pointer;
789
+ padding: 0 6px;
790
+ /*width: auto;*/
791
+ border-radius: 3px;
792
+ border-width: 1px;
793
+ /*min-width: 6em;*/
794
+ margin: 4px;
795
+ overflow: hidden;
796
+ }
797
+
798
+ .menu-item, .menu-item-selected {
799
+ display: grid;
800
+ grid-template-columns: 2em auto;
801
+ justify-content: start;
802
+ align-items: center;
803
+ }
804
+
805
+ .menu-item-root, .menu-item-root-selected {
806
+ display: flex;
807
+ justify-content: start;
808
+ flex-wrap: nowrap;
809
+ align-items: center;
810
+ height: 2em;
811
+ }
812
+
813
+ .menu-item-root > div.image-container-div, .menu-item-root-selected > div.image-container-div {
814
+ margin-right: 4px;
815
+ }
816
+
817
+ .menu-item-root:hover {
818
+ background-color: lightgray;
819
+ }
820
+
821
+ .menu-item-root.active {
822
+ padding: 0 1px;
823
+ }
824
+
825
+ .menu-item-root-selected {
826
+ background-color: lightgray;
827
+ border-width: 1px;
828
+ border-radius: 2px;
829
+ cursor: pointer;
830
+ white-space: nowrap;
831
+ padding: 0 6px;
832
+ }
833
+
834
+ .menu-item-root-selected.active {
835
+ padding: 0 1px;
836
+ }
837
+
838
+ .menu-collapse-button {
839
+ display: flex;
840
+ border: none;
841
+ height: 22px;
842
+ width: 24px;
843
+ padding: 0;
844
+ border-radius: 3px;
845
+ align-items: center;
846
+ margin-top: 5px;
847
+ }
848
+
849
+ .menu-collapse-button:hover:not(:disabled) {
850
+ cursor: pointer;
851
+ background-color: lightgray;
852
+ }
853
+
854
+ .progress {
855
+ }
856
+
857
+ .progress-bar {
858
+ background-color: lightgray;
859
+ }
860
+
861
+ .react-datepicker-popper {
862
+ z-index: 9999 !important;
863
+ }
864
+
865
+ .report-params-header {
866
+ display: flex;
867
+ font-weight: bold;
868
+ justify-content: center;
869
+ margin: 5px;
870
+ }
871
+
872
+
873
+ .tree-div {
874
+ display: grid;
875
+ grid-template-columns: 16em calc(100% - 16em);
876
+ }
877
+
878
+ .tree,
879
+ .tree-node,
880
+ .tree-node-group {
881
+ list-style: none;
882
+ margin: 0;
883
+ padding: 0;
884
+ }
885
+
886
+ .tree-branch-wrapper,
887
+ .tree-node__leaf {
888
+ outline: none;
889
+ }
890
+
891
+ .tree-node {
892
+ cursor: pointer;
893
+ }
894
+
895
+ .tree-node {
896
+ background: rgba(0, 0, 0, 0.1);
897
+ }
898
+
899
+ .tree-node > span {
900
+ white-space: nowrap;
901
+ }
902
+
903
+
904
+ .tree-node--focused {
905
+ background: rgba(0, 0, 0, 0.2);
906
+ }
907
+
908
+ .tree-node {
909
+ display: flex;
910
+ flex-wrap: nowrap;
911
+ align-items: center;
912
+ font-size: 16px;
913
+ user-select: none;
914
+ box-sizing: content-box;
915
+ max-width: 30em;
916
+ overflow-x: hidden;
917
+ }
918
+
919
+ .tree-right-panel {
920
+ display: flex;
921
+ justify-content: space-around;
922
+ }