react-graph-grid 0.1.8 → 0.1.11

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,951 @@
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
+ .dropdown-item-div {
427
+ display: flex;
428
+ justify-content: space-between;
429
+ flex-wrap: nowrap;
430
+ align-items: center;
431
+ width: 100%;
432
+ }
433
+
434
+ .grid-header-content-grid {
435
+ display: grid;
436
+ grid-template-columns: auto 16px;
437
+ grid-template-rows: auto auto;
438
+ grid-auto-flow: row;
439
+ }
440
+
441
+ .grid-header-title {
442
+ white-space: nowrap;
443
+ overflow: hidden;
444
+ margin: 2px 4px;
445
+ }
446
+
447
+ .grid-header-title.grid-header-title-sortable:hover {
448
+ color: gray; /*#0026ff; /*#0d6efd;*/
449
+ }
450
+
451
+ .div-on-menu {
452
+ margin: 10px;
453
+ }
454
+
455
+ .div-with-grid {
456
+ padding: 5px;
457
+ }
458
+
459
+ .grid-col-filter {
460
+ height: 2em;
461
+ margin: 2px;
462
+ width: calc(100% - 4px) !important;
463
+ padding: 0 2px;
464
+ box-sizing: border-box;
465
+ }
466
+
467
+ .grid-cell-lookup {
468
+ display: grid;
469
+ grid-template-columns: calc(100% - 3em) 1.5em 1.5em;
470
+ grid-template-rows: auto;
471
+ /*column-gap: 2px;*/
472
+ align-items: center;
473
+ align-content: center;
474
+ white-space: nowrap;
475
+ width: calc(100% - 0.2em);
476
+ }
477
+
478
+ .grid-cell-edit {
479
+ display: grid;
480
+ grid-template-columns: calc(100% - 3em) 1.5em 1.5em;
481
+ grid-template-rows: auto;
482
+ align-items: center;
483
+ align-content: center;
484
+ /*column-gap: 2px;*/
485
+ width: calc(100% - 2px);
486
+ }
487
+
488
+ .grid-cell-button {
489
+ height: 1.6em;
490
+ width: 1.6em;
491
+ display: flex;
492
+ padding: 0 !important;
493
+ border: 0; /*1px;*/
494
+ align-items: center;
495
+ justify-content: center;
496
+ flex-wrap: nowrap;
497
+ border-radius: 3px;
498
+ border-style: solid;
499
+ font-size: small;
500
+ }
501
+
502
+ .grid-cell-button:hover:not(:disabled) {
503
+ cursor: pointer;
504
+ background-color: lightgray;
505
+ }
506
+
507
+ .grid-columns-settings-div {
508
+ display: grid;
509
+ grid-template-columns: calc(50% - 4px) 8px calc(50% - 4px);
510
+ margin: 10px;
511
+ }
512
+
513
+ .grid-columns-settings-div-ul {
514
+ margin: 5px;
515
+ }
516
+
517
+ .grid-columns-settings-label {
518
+ font-weight: 600;
519
+ /*margin: 5px;*/
520
+ }
521
+
522
+ .graph-tabcontrol-buttons {
523
+ margin: 0 1em;
524
+ display: flex
525
+ }
526
+
527
+ .graph-tabcontrol-buttons > button {
528
+ margin: 5px 2px 5px 2px;
529
+ /*height: 2.3em;*/
530
+ }
531
+
532
+ .graph-tabcontrol-button {
533
+ height: 1.8em;
534
+ border-radius: 3px;
535
+ border-width: 1px;
536
+ display: flex;
537
+ align-items: center;
538
+ justify-content: space-between;
539
+ white-space: nowrap;
540
+ }
541
+
542
+ .graph-tabcontrol-button:hover:not(:disabled):not(.active) {
543
+ background-color: lightgray;
544
+ }
545
+
546
+ .graph-tabcontrol-button:not(.active) {
547
+ cursor: pointer;
548
+ }
549
+
550
+ .graph-tabcontrol-button.active {
551
+ font-weight: bold;
552
+ }
553
+
554
+ .graph-filters-div {
555
+ display: grid;
556
+ grid-template-columns: 18px auto;
557
+ align-items: center;
558
+ margin: 0 -10px;
559
+ }
560
+
561
+ .graph-filter-line {
562
+ display: grid;
563
+ grid-template-columns: repeat(auto-fit, minmax(200px, 400px)); /*repeat(auto-fit, minmax(3em, 15em))*/
564
+ /*grid-template-rows: auto auto auto;*/
565
+ grid-auto-flow: row;
566
+ align-items: center;
567
+ align-content: center;
568
+ overflow-x: auto;
569
+ column-gap: 1em;
570
+ margin-left: -10px;
571
+ }
572
+
573
+ .graph-filter {
574
+ display: grid;
575
+ grid-template-columns: auto; /*calc(100% - 5em) 2.5em 2.5em;*/
576
+ /*grid-template-rows: auto auto;*/
577
+ grid-auto-flow: row;
578
+ row-gap: 2px;
579
+ align-items: center;
580
+ margin: 0.5em 0;
581
+ min-width: 200px;
582
+ }
583
+
584
+ .field-edit {
585
+ display: grid;
586
+ /*grid-template-columns: calc(100% - 5em) 2.5em 2.5em;*/
587
+ grid-template-columns: calc(100% - 4.4em) 2.2em 2.2em;
588
+ grid-template-rows: auto auto;
589
+ grid-auto-flow: row;
590
+ align-items: center;
591
+ /*column-gap: 4px;*/
592
+ min-width: 10em;
593
+ }
594
+
595
+ /* .graph-filter > button {
596
+ margin: 5px 2px;
597
+ }
598
+ */
599
+ .graph-filter-title {
600
+ font-weight: bold;
601
+ white-space: nowrap;
602
+ overflow-x: hidden;
603
+ }
604
+
605
+ .graph-filter-required {
606
+ color: red;
607
+ }
608
+
609
+ .graph-grid {
610
+ margin: 0 1em 0.5em 1em;
611
+ }
612
+
613
+ .graph-filter-button {
614
+ /*margin: 5px 0 5px 3px;
615
+ width: 2.2em;
616
+ height: 2.2em;
617
+ */
618
+ min-height: 2.2em;
619
+ width: 100%;
620
+ border-radius: 3px;
621
+ border-width: 1px;
622
+ display: flex !important;
623
+ align-items: center;
624
+ justify-content: center; /*space-between;*/
625
+ }
626
+
627
+ .graph-filter-button:hover:not(:disabled) {
628
+ cursor: pointer;
629
+ background-color: lightgray;
630
+ }
631
+
632
+ .graph-filter-clear {
633
+ /*margin: 5px 0;*/
634
+ /*width: 2.2em;*/
635
+ height: 2.2em;
636
+ width: 100%;
637
+ border-radius: 3px;
638
+ border-width: 1px;
639
+ display: flex !important;
640
+ align-items: center;
641
+ justify-content: center; /*space-between;*/
642
+ }
643
+
644
+ .graph-filter-clear:hover:not(:disabled) {
645
+ cursor: pointer;
646
+ background-color: lightgray;
647
+ }
648
+
649
+ .graph-card-button {
650
+ margin: 5px 2px;
651
+ width: 2.5em;
652
+ }
653
+
654
+ .graph-card-button:hover:not(:disabled) {
655
+ cursor: pointer;
656
+ background-color: lightgray;
657
+ }
658
+
659
+ .graph-card-toolbar {
660
+ margin: 0 1em;
661
+ position: sticky;
662
+ top: 0;
663
+ background-color: white;
664
+ z-index: 100;
665
+ }
666
+
667
+ .graph-card-div {
668
+ display: grid;
669
+ grid-auto-flow: row;
670
+ align-items: center;
671
+ align-content: center;
672
+ margin: 0.5em;
673
+ /*overflow-y: auto;*/
674
+ }
675
+
676
+ .graph-card-field {
677
+ display: grid;
678
+ /*grid-template-columns: auto 2.5em 2.5em;*/
679
+ grid-template-columns: 100%;
680
+ grid-template-rows: auto auto;
681
+ grid-auto-flow: row;
682
+ align-items: center;
683
+ align-content: center;
684
+ margin: 0 1em 0.5em 1em;
685
+ }
686
+
687
+ .graph-card-field > span {
688
+ font-weight: bold;
689
+ }
690
+
691
+
692
+ .input-default-class {
693
+ height: 1.8em;
694
+ box-sizing: border-box;
695
+ }
696
+
697
+ .input-default-class-lg {
698
+ height: 2.2em;
699
+ box-sizing: border-box;
700
+ }
701
+
702
+ .select-default-class {
703
+ height: 1.8em;
704
+ box-sizing: border-box;
705
+ }
706
+
707
+ .login-form {
708
+ display: grid;
709
+ align-items: center;
710
+ align-content: center;
711
+ margin: 20px;
712
+ }
713
+
714
+ .login-form-item {
715
+ margin: 5px;
716
+ }
717
+
718
+ .login-form > input {
719
+ }
720
+
721
+ .filter-select {
722
+ height: 2.5em;
723
+ display: flex;
724
+ flex-wrap: nowrap;
725
+ align-items: center;
726
+ }
727
+
728
+ .filter-select > div {
729
+ width: 100%;
730
+ }
731
+
732
+ .datepicker-div {
733
+ margin: 1em;
734
+ }
735
+
736
+ .datepicker-input-lg {
737
+ /*padding-top: 2px;*/
738
+ overflow: hidden;
739
+ }
740
+
741
+ .datepicker-input-lg,
742
+ .datepicker-input-lg > div.react-datepicker-wrapper,
743
+ .datepicker-input-lg > div > div.react-datepicker__input-container,
744
+ .datepicker-input-lg > div > div.react-datepicker__input-container input {
745
+ width: 100% /*calc(100% - 1px);*/
746
+ }
747
+
748
+ .datepicker-input-lg > div > div.react-datepicker__input-container input {
749
+ height: 2.2em;
750
+ border-width: 1px;
751
+ border-radius: 3px;
752
+ }
753
+
754
+ .datepicker-input {
755
+ padding-top: 5px;
756
+ overflow: hidden;
757
+ }
758
+
759
+ .datepicker-input,
760
+ .datepicker-input > div.react-datepicker-wrapper,
761
+ .datepicker-input > div > div.react-datepicker__input-container,
762
+ .datepicker-input > div > div.react-datepicker__input-container input {
763
+ width: calc(100% - 0px);
764
+ }
765
+
766
+ .grid-cell-lookup > div.datepicker-input > div > div.react-datepicker__input-container input {
767
+ min-height: 1.7em;
768
+ height: 1.7em;
769
+ padding: 0;
770
+ }
771
+
772
+ .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 {
773
+ width: calc(100% - 0px);
774
+ height: 1.7em;
775
+ }
776
+
777
+ .datepicker-filter > div > div.react-datepicker__input-container input {
778
+ border-width: 1px;
779
+ border-radius: 3px;
780
+ padding: 0;
781
+ }
782
+
783
+ .datepicker-filter > div.react-datepicker-wrapper {
784
+ margin-top: 1px;
785
+ }
786
+
787
+ .main-menu-wnd {
788
+ border-color: lightgray !important;
789
+ }
790
+
791
+ .main-menu-div {
792
+ display: flex;
793
+ flex-wrap: nowrap;
794
+ align-content: center;
795
+ align-items: center;
796
+ margin-left: 4px;
797
+ }
798
+
799
+ .main-menu-div > button {
800
+ margin: 10px 2px;
801
+ /*font-size: medium;*/
802
+ font-weight: 300;
803
+ border-color: lightgray;
804
+ }
805
+
806
+ .main-menu-div > button.active {
807
+ font-weight: bolder;
808
+ }
809
+
810
+ .main-menu-div > button:hover:not(:disabled) {
811
+ cursor: pointer;
812
+ background-color: lightgray;
813
+ }
814
+
815
+ .menu-item, .menu-item-selected, .menu-item-root, .menu-item-root-selected {
816
+ cursor: pointer;
817
+ padding: 0 6px;
818
+ /*width: auto;*/
819
+ border-radius: 3px;
820
+ border-width: 1px;
821
+ /*min-width: 6em;*/
822
+ margin: 4px;
823
+ overflow: hidden;
824
+ }
825
+
826
+ .menu-item, .menu-item-selected {
827
+ display: grid;
828
+ grid-template-columns: 2em auto;
829
+ justify-content: start;
830
+ align-items: center;
831
+ }
832
+
833
+ .menu-item-root, .menu-item-root-selected {
834
+ display: flex;
835
+ justify-content: space-around;
836
+ flex-wrap: nowrap;
837
+ align-items: center;
838
+ height: 2em;
839
+ font-size: 0.85em;
840
+ }
841
+
842
+ .menu-item-root > div.image-container-div, .menu-item-root-selected > div.image-container-div {
843
+ margin-right: 4px;
844
+ }
845
+
846
+ .menu-item-root:hover {
847
+ background-color: lightgray;
848
+ }
849
+
850
+ .menu-item-root.active {
851
+ padding: 0 1px;
852
+ }
853
+
854
+ .menu-item-root-selected {
855
+ background-color: lightgray;
856
+ border-width: 1px;
857
+ border-radius: 2px;
858
+ cursor: pointer;
859
+ white-space: nowrap;
860
+ padding: 0 6px;
861
+ }
862
+
863
+ .menu-item-root-selected.active {
864
+ padding: 0 1px;
865
+ }
866
+
867
+ .menu-collapse-button {
868
+ display: flex;
869
+ border: none;
870
+ height: 22px;
871
+ width: 24px;
872
+ padding: 0;
873
+ border-radius: 3px;
874
+ align-items: center;
875
+ margin-top: 5px;
876
+ }
877
+
878
+ .menu-collapse-button:hover:not(:disabled) {
879
+ cursor: pointer;
880
+ background-color: lightgray;
881
+ }
882
+
883
+ .progress {
884
+ }
885
+
886
+ .progress-bar {
887
+ background-color: lightgray;
888
+ }
889
+
890
+ .react-datepicker-popper {
891
+ z-index: 9999 !important;
892
+ }
893
+
894
+ .report-params-header {
895
+ display: flex;
896
+ font-weight: bold;
897
+ justify-content: center;
898
+ margin: 5px;
899
+ }
900
+
901
+
902
+ .tree-div {
903
+ display: grid;
904
+ grid-template-columns: 16em calc(100% - 16em);
905
+ }
906
+
907
+ .tree,
908
+ .tree-node,
909
+ .tree-node-group {
910
+ list-style: none;
911
+ margin: 0;
912
+ padding: 0;
913
+ }
914
+
915
+ .tree-branch-wrapper,
916
+ .tree-node__leaf {
917
+ outline: none;
918
+ }
919
+
920
+ .tree-node {
921
+ cursor: pointer;
922
+ }
923
+
924
+ .tree-node .name:hover {
925
+ background: rgba(0, 0, 0, 0.1);
926
+ }
927
+
928
+ .tree-node > span {
929
+ white-space: nowrap;
930
+ }
931
+
932
+
933
+ .tree-node--focused .name {
934
+ background: rgba(0, 0, 0, 0.2);
935
+ }
936
+
937
+ .tree-node {
938
+ display: flex;
939
+ flex-wrap: nowrap;
940
+ align-items: center;
941
+ font-size: 16px;
942
+ user-select: none;
943
+ box-sizing: content-box;
944
+ max-width: 30em;
945
+ overflow-x: hidden;
946
+ }
947
+
948
+ .tree-right-panel {
949
+ display: flex;
950
+ justify-content: space-around;
951
+ }