tax-mega 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1855 @@
1
+ @import './var.less';
2
+ @import 'datecompare-picker/libs/style/index.less';
3
+
4
+ svg {
5
+ outline: none;
6
+ }
7
+
8
+ .primary-color {
9
+ color: var(--mega-primary-color);
10
+ }
11
+ .font-bold {
12
+ font-weight: bold;
13
+ }
14
+ .capitalize {
15
+ text-transform: capitalize;
16
+ }
17
+ .cursor-pointer {
18
+ cursor: pointer;
19
+ }
20
+
21
+ .ellipsis {
22
+ display: inline-block;
23
+ max-width: 100px;
24
+ white-space: nowrap;
25
+ text-overflow: ellipsis;
26
+ overflow: hidden;
27
+ word-break: break-all;
28
+ }
29
+
30
+ .edit-container,
31
+ .we-node-column,
32
+ .filter-pop-container {
33
+ .ant-space-item {
34
+ display: inline-flex;
35
+ }
36
+ }
37
+
38
+ .mega-container {
39
+ width: 100%;
40
+ height: 100%;
41
+ background: var(--mega-background);
42
+ position: relative;
43
+
44
+ .mega-header {
45
+ height: 56px;
46
+ padding: 0 24px;
47
+ background: #fff;
48
+ box-shadow: inset 0px -1px 0px #e0e0e0;
49
+ }
50
+ .mega-body {
51
+ height: calc(100% - 56px);
52
+ flex-direction: row;
53
+ flex-wrap: nowrap;
54
+ display: flex;
55
+ position: relative;
56
+ .mega-setup {
57
+ height: 100%;
58
+ display: flex;
59
+ flex-direction: column;
60
+ width: 256px;
61
+ overflow: hidden;
62
+ transition: width 0.3s;
63
+ border-right: 1px solid #e0e0e0;
64
+ background: #fff;
65
+ &.closed {
66
+ width: 72px;
67
+ }
68
+ &-content {
69
+ height: calc(100% - 48px);
70
+ background: var(--mega-background);
71
+ }
72
+ .mega-group-dim {
73
+ height: 49%;
74
+ }
75
+ .mega-measure {
76
+ height: calc(100% - 49% - 8px);
77
+ margin-top: 8px;
78
+ }
79
+ .mega-menu-fold {
80
+ height: 48px;
81
+ display: flex;
82
+ align-items: center;
83
+ padding: 0 12px;
84
+ justify-content: space-between;
85
+ border-top: 1px solid #e0e0e0;
86
+ overflow: hidden;
87
+ &-icon {
88
+ cursor: pointer;
89
+ color: rgba(0, 0, 0, 0.54);
90
+ transition: all 0.2s;
91
+ &.closed {
92
+ transform: rotate(180deg);
93
+ }
94
+ }
95
+ .measure-control {
96
+ display: flex;
97
+ flex-wrap: nowrap;
98
+ white-space: nowrap;
99
+ align-items: center;
100
+ }
101
+ }
102
+ }
103
+ .mega-content {
104
+ flex-grow: 1;
105
+ background: #fff;
106
+ display: flex;
107
+ flex-direction: column;
108
+ width: 0;
109
+ overflow: auto;
110
+ &__vis {
111
+ background: var(--mega-background);
112
+ flex-grow: 1;
113
+ overflow-y: auto;
114
+ padding: 16px;
115
+ }
116
+ }
117
+ }
118
+ .ant-radio-button-wrapper:focus-within {
119
+ box-shadow: none !important;
120
+ }
121
+
122
+ .vis-table-container {
123
+ .vxe-table {
124
+ font-size: 12px;
125
+
126
+ .fixed-left--wrapper,
127
+ .vxe-table--body-wrapper,
128
+ .vxe-table--footer-wrapper.body--wrapper {
129
+ &::-webkit-scrollbar {
130
+ display: none;
131
+ width: 0;
132
+ height: 0;
133
+ }
134
+ }
135
+
136
+ .vxe-table--header-wrapper,
137
+ .vxe-table--footer-wrapper {
138
+ color: rgba(0, 0, 0, 0.87) !important;
139
+ font-weight: 700;
140
+
141
+ background: var(--mega-table-header) !important;
142
+ }
143
+ .vxe-table--fixed-left-wrapper {
144
+ .vxe-table--header-wrapper {
145
+ background: var(--mega-table-header) !important;
146
+ }
147
+ }
148
+ .vxe-body--column {
149
+ height: 36px !important;
150
+ }
151
+ .vxe-header--column,
152
+ .vxe-footer--column {
153
+ height: 48px !important;
154
+ }
155
+ .vxe-table--footer-wrapper {
156
+ border-top: 1px solid #e0e0e0 !important;
157
+ }
158
+ }
159
+ &.isMerge {
160
+ .vxe-body--column {
161
+ height: 60px !important;
162
+ .vxe-cell {
163
+ max-height: 60px !important;
164
+ }
165
+ }
166
+ .vxe-footer--column {
167
+ height: 60px !important;
168
+ }
169
+ }
170
+ }
171
+ &.is-push-layout {
172
+ .mega-body {
173
+ height: 100%;
174
+ }
175
+ }
176
+ }
177
+
178
+ .mega-header {
179
+ display: flex;
180
+ align-items: center;
181
+ justify-content: space-between;
182
+ user-select: none;
183
+ white-space: nowrap;
184
+ &__left,
185
+ &__center,
186
+ &__right {
187
+ height: 100%;
188
+ display: flex;
189
+ align-items: center;
190
+ }
191
+ &__left {
192
+ justify-content: flex-start;
193
+ width: 40%;
194
+ }
195
+ &__center {
196
+ justify-content: center;
197
+ width: 20%;
198
+ }
199
+ &__right {
200
+ justify-content: flex-end;
201
+ width: 40%;
202
+ .ant-space-item {
203
+ display: inline-flex;
204
+ }
205
+ }
206
+ .ant-radio-group-solid {
207
+ .ant-radio-button-wrapper {
208
+ border-color: var(--mega-primary-color) !important;
209
+ color: var(--mega-primary-color);
210
+ &.ant-radio-button-wrapper-checked {
211
+ color: #fff;
212
+ }
213
+ }
214
+ }
215
+ }
216
+
217
+ // dimension measure list
218
+ .mega-group-list {
219
+ width: 100%;
220
+ height: 400px;
221
+ user-select: none;
222
+ &__header {
223
+ height: 56px;
224
+ padding-left: 12px;
225
+ color: var(--mega-primary-color);
226
+ display: flex;
227
+ align-items: center;
228
+ font-size: 16px;
229
+ position: relative;
230
+ background: #fff;
231
+ .mega-list-title {
232
+ margin-left: 12px;
233
+ flex-grow: 1;
234
+ }
235
+ .mega-search {
236
+ cursor: pointer;
237
+ display: flex;
238
+ margin-right: 12px;
239
+ position: relative;
240
+ &__input {
241
+ width: 0;
242
+ position: absolute;
243
+ right: 25px;
244
+ top: -6px;
245
+ border-radius: 30px;
246
+ border: 0;
247
+ padding: 0;
248
+ overflow: hidden;
249
+ &.open {
250
+ width: 172px;
251
+ padding: 4px 11px;
252
+ }
253
+ }
254
+ &.search-measure {
255
+ .mega-search__input {
256
+ right: 50px;
257
+ &.open {
258
+ width: 150px;
259
+ }
260
+ }
261
+ svg path {
262
+ fill: var(--mega-primary-color);
263
+ }
264
+ }
265
+
266
+ .ant-space {
267
+ .ant-space-item {
268
+ display: inline-flex;
269
+ }
270
+ }
271
+ }
272
+ .measure-count {
273
+ display: none;
274
+ align-items: center;
275
+ justify-content: center;
276
+ position: absolute;
277
+ right: 10px;
278
+ bottom: 8px;
279
+ background: var(--mega-primary-color);
280
+ color: #fff;
281
+ border-radius: 50%;
282
+ font-size: 12px;
283
+ transform: scale(0.7);
284
+ width: 26px;
285
+ height: 26px;
286
+ text-align: center;
287
+ }
288
+ }
289
+ &__body {
290
+ height: calc(100% - 56px);
291
+ overflow: auto;
292
+ background: #fff;
293
+ padding: 6px 0;
294
+ &::-webkit-scrollbar {
295
+ // display: none;
296
+ width: 6px;
297
+ }
298
+ &::-webkit-scrollbar-track {
299
+ background-color: var(--mega-background);
300
+ border-radius: 6px;
301
+ }
302
+ &::-webkit-scrollbar-thumb {
303
+ background: #ddd;
304
+ border-radius: 6px;
305
+ }
306
+ }
307
+
308
+ &__item {
309
+ .item__info {
310
+ width: 32px;
311
+ text-align: center;
312
+ display: inline-flex;
313
+ align-items: center;
314
+ justify-content: center;
315
+ cursor: help;
316
+ visibility: hidden;
317
+ }
318
+
319
+ &-content {
320
+ // padding: 12px 24px 12px 0;
321
+ display: flex;
322
+ align-items: center;
323
+
324
+ height: 38px;
325
+ line-height: 38px;
326
+ &.node {
327
+ font-weight: 700;
328
+ font-size: 14px;
329
+ }
330
+ &.handle {
331
+ cursor: move;
332
+ }
333
+ &:hover {
334
+ background: var(--mega-background);
335
+ .item__info {
336
+ visibility: visible;
337
+ }
338
+ }
339
+ &.expanded {
340
+ .item__action {
341
+ color: var(--mega-primary-color);
342
+ }
343
+ }
344
+ }
345
+ .item__title {
346
+ flex-grow: 1;
347
+ padding: 0 10px 0 0;
348
+ display: flex;
349
+ align-items: center;
350
+ .ant-checkbox-wrapper {
351
+ margin-right: 10px;
352
+ }
353
+ &__label {
354
+ display: inline-block;
355
+ text-overflow: ellipsis;
356
+ overflow: hidden;
357
+ white-space: nowrap;
358
+ max-width: 146px;
359
+ }
360
+ }
361
+ .item__action {
362
+ display: inline-flex;
363
+ padding: 4px;
364
+ cursor: pointer;
365
+ width: 40px;
366
+ justify-content: center;
367
+ color: rgba(0, 0, 0, 0.54);
368
+ }
369
+ }
370
+
371
+ &__sub {
372
+ transition: max-height 0.3s;
373
+ max-height: 0;
374
+ overflow: hidden;
375
+ &.expanded {
376
+ max-height: 700px;
377
+ }
378
+ .mega-group-list__item-content {
379
+ padding-left: 14px;
380
+ }
381
+ }
382
+ }
383
+
384
+ .mega-setup {
385
+ &.closed {
386
+ .mega-setup-content {
387
+ background: #fff;
388
+ }
389
+ width: 72px;
390
+ .mega-group-list {
391
+ height: auto !important;
392
+ &__header {
393
+ padding-left: 0;
394
+ display: flex;
395
+ align-items: center;
396
+ justify-content: center;
397
+ background: transparent;
398
+ .mega-list-title,
399
+ .mega-search {
400
+ display: none;
401
+ }
402
+ .measure-count {
403
+ display: flex;
404
+ }
405
+ }
406
+ &__body {
407
+ display: none;
408
+ }
409
+ }
410
+ .mega-measure {
411
+ margin-top: 0 !important;
412
+ }
413
+ .mega-menu-fold {
414
+ justify-content: center !important;
415
+ .measure-control {
416
+ width: 0;
417
+ overflow: hidden;
418
+ }
419
+ }
420
+ }
421
+ }
422
+ // drag area
423
+ .mega-dragarea {
424
+ display: flex;
425
+ flex-direction: column;
426
+ gap: 16px;
427
+ padding: 16px 0;
428
+ box-shadow: inset 0px -1px 0px #e0e0e0;
429
+ background: #fff;
430
+ &__body {
431
+ padding: 0 24px;
432
+ display: flex;
433
+ align-items: flex-start;
434
+ .mega-add-dimension {
435
+ width: 96px;
436
+ height: 22px;
437
+ }
438
+ .drag-content {
439
+ flex-grow: 1;
440
+ min-height: 22px;
441
+ display: flex;
442
+ align-items: flex-start;
443
+ flex-wrap: wrap;
444
+ padding-left: 16px;
445
+ width: 0;
446
+ gap: 16px;
447
+ user-select: none;
448
+ }
449
+
450
+ .sortable {
451
+ &-ghost {
452
+ display: flex;
453
+ align-items: center;
454
+ justify-content: flex-start;
455
+ white-space: nowrap;
456
+ background: #f5f5f5;
457
+ color: rgba(0, 0, 0, 0.87);
458
+ font-size: 12px;
459
+ border: 1px solid rgba(0, 0, 0, 0.12);
460
+ height: 22px;
461
+ padding: 0 16px;
462
+ border-radius: 4px;
463
+ min-width: 80px;
464
+ max-width: 200px;
465
+ overflow: hidden;
466
+ .item__info {
467
+ display: none;
468
+ }
469
+ }
470
+ }
471
+ }
472
+ }
473
+ // drag dimension fallback
474
+ .mega-sortable-fallback {
475
+ height: 36px;
476
+ padding: 0 16px;
477
+ border-radius: 36px;
478
+ width: 200px;
479
+ overflow: hidden;
480
+ background: var(--mega-active-background);
481
+ .item__info {
482
+ display: none;
483
+ }
484
+ }
485
+
486
+ // add add dimension
487
+ .mega-add-dimension {
488
+ display: flex;
489
+ align-items: center;
490
+ user-select: none;
491
+ .add-title {
492
+ font-weight: bold;
493
+ width: 60px;
494
+ text-align: right;
495
+ }
496
+ .add-icon {
497
+ margin-left: 16px;
498
+ cursor: pointer;
499
+ color: var(--mega-primary-color);
500
+ outline: none;
501
+ }
502
+ .ant-popover-title {
503
+ padding: 12px;
504
+ }
505
+ .ant-popover-inner-content {
506
+ max-height: 360px;
507
+ overflow: auto;
508
+ &::-webkit-scrollbar {
509
+ display: none;
510
+ }
511
+ }
512
+ .mega-search-list {
513
+ list-style: none;
514
+ padding: 0;
515
+ margin: 0;
516
+ li {
517
+ padding: 10px;
518
+ transition: all 0.3s;
519
+ cursor: pointer;
520
+ &:hover {
521
+ background: var(--mega-background);
522
+ }
523
+ }
524
+ }
525
+ }
526
+
527
+ // click dimension
528
+ .quick-add-dimension {
529
+ user-select: none;
530
+ .ant-popover-inner-content {
531
+ padding: 8px 0;
532
+ }
533
+ .quick-add-item {
534
+ display: flex;
535
+ flex-direction: row;
536
+ align-items: center;
537
+ padding: 5px 16px;
538
+ cursor: pointer;
539
+ transition: all 0.3s;
540
+ svg {
541
+ margin-right: 8px;
542
+ }
543
+ &:hover {
544
+ color: var(--mega-primary-color);
545
+ background: var(--mega-background);
546
+ }
547
+ &.disabled {
548
+ cursor: not-allowed;
549
+ color: #9e9e9e;
550
+ pointer-events: none;
551
+ }
552
+ }
553
+ }
554
+
555
+ // tag
556
+ .mega-tag {
557
+ display: flex;
558
+ align-items: center;
559
+ justify-content: space-around;
560
+ white-space: nowrap;
561
+ height: 22px;
562
+ padding: 0 8px;
563
+ border-radius: 4px;
564
+ min-width: 80px;
565
+ max-width: 200px;
566
+ overflow: hidden;
567
+ background: #f5f5f5;
568
+ color: rgba(0, 0, 0, 0.87);
569
+ font-size: 12px;
570
+ border: 1px solid rgba(0, 0, 0, 0.12);
571
+ cursor: move;
572
+ user-select: none;
573
+ &-action {
574
+ display: inline-flex;
575
+ margin-left: 8px;
576
+ cursor: pointer;
577
+ }
578
+ &.disabled {
579
+ color: rgba(0, 0, 0, 0.54);
580
+ cursor: pointer;
581
+ }
582
+ &.disabled &-action {
583
+ display: none !important;
584
+ }
585
+ &-count {
586
+ margin-left: 6px;
587
+ &.exclude {
588
+ text-decoration: line-through;
589
+ }
590
+ }
591
+ &-label {
592
+ text-overflow: ellipsis;
593
+ overflow: hidden;
594
+ white-space: nowrap;
595
+ }
596
+ &.dashed {
597
+ border-style: dashed;
598
+ }
599
+ }
600
+
601
+ // header widget
602
+ .mega-header-widget {
603
+ display: flex;
604
+ cursor: pointer;
605
+ user-select: none;
606
+ .ant-space-item {
607
+ display: inline-flex;
608
+ }
609
+
610
+ .cust-flex {
611
+ display: flex;
612
+ gap: 8px;
613
+ align-items: center;
614
+ }
615
+ .current-label {
616
+ text-overflow: ellipsis;
617
+ max-width: 56px;
618
+ overflow: hidden;
619
+ }
620
+ }
621
+
622
+ // switch visual
623
+ .switch-visual-container {
624
+ .ant-popover-inner-content {
625
+ padding: 0;
626
+ }
627
+ .switch-visual {
628
+ width: 260px;
629
+ user-select: none;
630
+ .visual-type {
631
+ padding: 20px;
632
+ display: grid;
633
+ grid-gap: 12px;
634
+ grid-template-columns: 1fr 1fr 1fr 1fr;
635
+ justify-items: center;
636
+ align-items: center;
637
+ .visual-item {
638
+ width: 42px;
639
+ height: 42px;
640
+ display: flex;
641
+ align-items: center;
642
+ justify-content: center;
643
+ border: 1px solid rgba(0, 0, 0, 0.12);
644
+ border-radius: 8px;
645
+ color: rgba(0, 0, 0, 0.87);
646
+ transition: all 0.3s;
647
+ cursor: pointer;
648
+ &.active,
649
+ &:hover {
650
+ background: var(--mega-background);
651
+ color: var(--mega-primary-color);
652
+ border-color: var(--mega-primary-color);
653
+ }
654
+ }
655
+ }
656
+ .visual-settings {
657
+ .ant-collapse {
658
+ border-radius: 0;
659
+ border-color: transparent;
660
+ .ant-collapse-content-box {
661
+ .ant-row {
662
+ &:last-child {
663
+ margin-bottom: 0;
664
+ }
665
+ }
666
+ }
667
+ }
668
+ }
669
+ .visual-info {
670
+ padding: 10px 20px;
671
+ &__header {
672
+ span {
673
+ font-weight: bold;
674
+ }
675
+ }
676
+ &__body {
677
+ > div {
678
+ display: flex;
679
+ justify-content: space-between;
680
+ align-items: center;
681
+ padding: 6px 0;
682
+ }
683
+ }
684
+ }
685
+ }
686
+ }
687
+
688
+ .item-list {
689
+ list-style: none;
690
+ padding: 0;
691
+ margin: 0;
692
+ li {
693
+ padding: 10px;
694
+ transition: all 0.3s;
695
+ cursor: pointer;
696
+ display: flex;
697
+ align-items: center;
698
+ justify-content: space-between;
699
+ .item-action-container {
700
+ display: flex;
701
+ align-items: center;
702
+ justify-content: center;
703
+ width: 28px;
704
+ margin-left: 10px;
705
+ }
706
+ .item-action {
707
+ transition: all 0.3s;
708
+ display: none;
709
+ }
710
+ &:hover {
711
+ background: var(--mega-background);
712
+ color: var(--mega-primary-color);
713
+ &:not(.active) {
714
+ .item-action {
715
+ display: inline-flex;
716
+ }
717
+ }
718
+ }
719
+ &.active {
720
+ background: var(--mega-active-background);
721
+ color: var(--mega-primary-color);
722
+ }
723
+ .ant-space-item {
724
+ display: flex;
725
+ align-items: center;
726
+ }
727
+ }
728
+ }
729
+
730
+ .cube-list {
731
+ li {
732
+ .info {
733
+ display: flex;
734
+ width: 20px;
735
+ justify-content: center;
736
+ align-items: center;
737
+ visibility: hidden;
738
+ }
739
+
740
+ &:hover {
741
+ .info {
742
+ visibility: visible;
743
+ }
744
+ }
745
+ }
746
+ }
747
+
748
+ .item-list-container,
749
+ .cube-list-container,
750
+ .timezone-container,
751
+ .refresh-container {
752
+ user-select: none;
753
+ .ant-popover-inner-content {
754
+ max-height: 400px;
755
+ min-width: 120px;
756
+ max-width: 240px;
757
+ overflow: auto;
758
+ &::-webkit-scrollbar {
759
+ display: none;
760
+ }
761
+ }
762
+ &.clear-padding {
763
+ .ant-popover-inner-content {
764
+ padding: 6px 0;
765
+ }
766
+ }
767
+ }
768
+
769
+ .legend-container {
770
+ .ant-popover-inner {
771
+ background: transparent;
772
+ .ant-popover-inner-content {
773
+ background: rgba(0, 0, 0, 0.6);
774
+ border-radius: 6px;
775
+ }
776
+ }
777
+ .ant-popover-arrow-content {
778
+ background-color: rgba(0, 0, 0, 0.6);
779
+ }
780
+ .item-list {
781
+ // max-width: 100px;
782
+ padding: 6px 0;
783
+ color: #fff;
784
+ // background: rgba(0, 0, 0, 0.6);
785
+ // border-radius: 6px;
786
+ li {
787
+ &:hover {
788
+ color: #fff;
789
+ background: transparent;
790
+ }
791
+ .legend-label {
792
+ overflow: hidden;
793
+ text-overflow: ellipsis;
794
+ display: inline-block;
795
+ min-width: 100px;
796
+ max-width: 180px;
797
+ white-space: nowrap;
798
+ }
799
+ }
800
+ }
801
+ }
802
+
803
+ // cube / dash header
804
+ .cube-header {
805
+ user-select: none;
806
+ .ant-space-item {
807
+ display: inline-flex;
808
+ cursor: pointer;
809
+ }
810
+ }
811
+
812
+ // save
813
+ .save-container {
814
+ user-select: none;
815
+ .save-body {
816
+ padding: 12px 0;
817
+ .ant-space-item {
818
+ display: inline-flex;
819
+ }
820
+ }
821
+ .save-footer {
822
+ display: flex;
823
+ align-items: center;
824
+ justify-content: flex-end;
825
+ }
826
+ }
827
+
828
+ .mega-cube-panel {
829
+ min-height: 280px;
830
+ }
831
+
832
+ // mega empty
833
+ .mega-empty {
834
+ width: 100%;
835
+ height: 100%;
836
+ display: flex;
837
+ align-items: center;
838
+ justify-content: center;
839
+ color: var(--mega-primary-color);
840
+ user-select: none;
841
+ &__content {
842
+ width: 100%;
843
+ text-align: center;
844
+ }
845
+ &__img {
846
+ color: var(--mega-primary-color);
847
+ }
848
+ &__msg {
849
+ margin-top: 16px;
850
+ color: rgba(0, 0, 0, 0.54);
851
+ text-align: center;
852
+ }
853
+ &__loading {
854
+ margin-right: 16px;
855
+ }
856
+ }
857
+
858
+ // filter split section
859
+ .filter-pop-container,
860
+ .split-pop-container {
861
+ .ant-popover-inner-content {
862
+ padding: 0;
863
+ }
864
+ }
865
+
866
+ .filter-string,
867
+ .split-form {
868
+ user-select: none;
869
+ width: 325px;
870
+ &__header {
871
+ padding: 12px 16px;
872
+ display: flex;
873
+ align-items: center;
874
+ justify-content: space-between;
875
+ svg {
876
+ color: #dbdbdb;
877
+ }
878
+ .ant-select-selector {
879
+ border: transparent !important;
880
+ box-shadow: none !important;
881
+ }
882
+ }
883
+ &__body {
884
+ padding: 12px 16px;
885
+ border-top: 1px solid #dbdbdb;
886
+ border-bottom: 1px solid #dbdbdb;
887
+ height: 280px;
888
+ overflow-y: auto;
889
+ &::-webkit-scrollbar {
890
+ display: none;
891
+ }
892
+ .ant-checkbox + span {
893
+ overflow: hidden;
894
+ text-overflow: ellipsis;
895
+ }
896
+ }
897
+ &__footer {
898
+ padding: 12px 16px;
899
+ display: flex;
900
+ align-items: center;
901
+ justify-content: space-between;
902
+ }
903
+ }
904
+
905
+ .filter-string {
906
+ &__body {
907
+ overflow: hidden;
908
+ .virtual-list {
909
+ height: 254px;
910
+ }
911
+ .virtual-item {
912
+ height: 26px;
913
+ display: flex;
914
+ align-items: center;
915
+ }
916
+ .ant-checkbox-wrapper {
917
+ width: 100%;
918
+ white-space: nowrap;
919
+ }
920
+
921
+ .ant-checkbox + span .filter-title {
922
+ overflow: hidden;
923
+ text-overflow: ellipsis;
924
+ }
925
+ }
926
+ }
927
+
928
+ .split-form {
929
+ width: 325px;
930
+ &__body {
931
+ padding-top: 24px;
932
+ border-top: 0 !important;
933
+ height: auto;
934
+ }
935
+ &__footer {
936
+ justify-content: flex-end;
937
+ }
938
+ }
939
+
940
+ // .filter-date{
941
+
942
+ // }
943
+
944
+ // media
945
+ @media screen and (max-width: 600px) {
946
+ .mobile-hidden {
947
+ display: none;
948
+ }
949
+ .cube-header {
950
+ > .ant-space {
951
+ > .ant-space-item {
952
+ &:not(:first-child) {
953
+ display: none;
954
+ }
955
+ }
956
+ }
957
+ }
958
+ }
959
+
960
+ @media screen and (max-width: 800px) {
961
+ .header-name {
962
+ max-width: 100px;
963
+ text-overflow: ellipsis;
964
+ overflow: hidden;
965
+ }
966
+ }
967
+
968
+ @media screen and (max-height: 400px) {
969
+ .mega-content__vis {
970
+ overflow-y: unset !important;
971
+ }
972
+ }
973
+
974
+ .vis-inner {
975
+ padding: 16px;
976
+ background: #fff;
977
+ border-radius: 6px;
978
+ }
979
+ // total
980
+ .vis-total-container {
981
+ height: 100%;
982
+ overflow: auto;
983
+ .vis-total-inner {
984
+ // display: grid;
985
+ // grid-template-columns: repeat(4, minmax(0, 1fr));
986
+ // grid-column-gap: 32px;
987
+ // grid-row-gap: 32px;
988
+ // justify-items: center;
989
+ // align-items: flex-start;
990
+
991
+ display: flex;
992
+ flex-wrap: wrap;
993
+ gap: 32px;
994
+ align-items: center;
995
+ justify-content: center;
996
+
997
+ &.is-push {
998
+ flex-wrap: nowrap;
999
+ }
1000
+ }
1001
+ .vis-total-item {
1002
+ padding: 12px;
1003
+ background: var(--mega-background);
1004
+ border-radius: 4px;
1005
+ border: 1px solid transparent;
1006
+ min-width: 200px;
1007
+ // width: 100%;
1008
+ transition: all 0.3s;
1009
+ user-select: none;
1010
+ &__title {
1011
+ display: flex;
1012
+ align-items: center;
1013
+ justify-content: space-between;
1014
+ span {
1015
+ display: inline-flex;
1016
+ }
1017
+ .remove {
1018
+ display: none;
1019
+ cursor: pointer;
1020
+ }
1021
+ }
1022
+ &:hover {
1023
+ border: 1px solid var(--mega-primary-color);
1024
+ background: #fff;
1025
+ .remove {
1026
+ display: inline-flex;
1027
+ }
1028
+ }
1029
+ &__content {
1030
+ font-size: 28px;
1031
+ margin: 12px 0;
1032
+ }
1033
+ &__footer {
1034
+ display: flex;
1035
+ align-items: center;
1036
+ justify-content: space-between;
1037
+ }
1038
+ &__pre {
1039
+ color: rgba(0, 0, 0, 0.54);
1040
+ }
1041
+ &__data {
1042
+ display: flex;
1043
+ align-items: center;
1044
+ .change {
1045
+ margin-right: 10px;
1046
+ }
1047
+ .up {
1048
+ color: var(--mega-success);
1049
+ }
1050
+ .down {
1051
+ color: var(--mega-error);
1052
+ }
1053
+ }
1054
+ }
1055
+ }
1056
+
1057
+ .vis-chart-container {
1058
+ .vis-chart-item {
1059
+ //
1060
+ &:not(:first-child) {
1061
+ margin-top: 16px;
1062
+ }
1063
+ }
1064
+ }
1065
+
1066
+ .chart-card {
1067
+ user-select: none;
1068
+ border: 1px solid #fff;
1069
+ transition: all 0.3s;
1070
+ &.is-custom {
1071
+ border: 1px dashed #e0e0e0;
1072
+ }
1073
+ &__title {
1074
+ display: flex;
1075
+ align-items: center;
1076
+ justify-content: space-between;
1077
+ .m-title {
1078
+ font-size: 16px;
1079
+ }
1080
+ .m-current {
1081
+ font-size: 28px;
1082
+ color: var(--mega-primary-color);
1083
+ }
1084
+ .m-previous {
1085
+ font-size: 14px;
1086
+ color: rgba(0, 0, 0, 0.54);
1087
+ }
1088
+ .m__data {
1089
+ display: flex;
1090
+ align-items: center;
1091
+ .change {
1092
+ margin-right: 10px;
1093
+ &.up {
1094
+ color: var(--mega-success);
1095
+ & + svg {
1096
+ color: var(--mega-success);
1097
+ }
1098
+ }
1099
+ &.down {
1100
+ color: var(--mega-error);
1101
+ & + svg {
1102
+ color: var(--mega-error);
1103
+ }
1104
+ }
1105
+ }
1106
+ }
1107
+ // .action {
1108
+ // display: none;
1109
+ // }
1110
+ }
1111
+ &__content {
1112
+ height: 240px;
1113
+ }
1114
+ }
1115
+
1116
+ .we-legend {
1117
+ position: fixed;
1118
+ right: 24px;
1119
+ bottom: 24px;
1120
+ display: flex;
1121
+ align-items: center;
1122
+ justify-content: center;
1123
+ gap: 10px;
1124
+ // width: 48px;
1125
+ // height: 48px;
1126
+ // border-radius: 50%;
1127
+ background: rgba(0, 0, 0, 0.6);
1128
+ color: #fff;
1129
+ cursor: pointer;
1130
+ transition: all 0.3s;
1131
+ padding: 6px 10px;
1132
+ border-radius: 0 0 8px 8px;
1133
+ &:hover {
1134
+ background: rgba(0, 0, 0, 0.85);
1135
+ }
1136
+ .up {
1137
+ transform: rotate(180deg);
1138
+ }
1139
+ }
1140
+
1141
+ // mega-vis-status
1142
+
1143
+ .mega-vis-status {
1144
+ background: #fff;
1145
+ height: 320px;
1146
+ display: flex;
1147
+ align-items: center;
1148
+ &__content {
1149
+ width: 100%;
1150
+ text-align: center;
1151
+ }
1152
+ &__img {
1153
+ color: var(--mega-primary-color);
1154
+ }
1155
+ &__msg {
1156
+ margin-top: 16px;
1157
+ color: rgba(0, 0, 0, 0.54);
1158
+ text-align: center;
1159
+ }
1160
+ }
1161
+
1162
+ .mega-chart-tooltips {
1163
+ // &__header {
1164
+ // }
1165
+ &__body {
1166
+ margin: 0;
1167
+ padding: 0;
1168
+ li {
1169
+ list-style: none;
1170
+ display: flex;
1171
+ align-items: center;
1172
+ gap: 12px;
1173
+ }
1174
+ .m-current {
1175
+ font-size: 16px;
1176
+ color: var(--mega-primary-color);
1177
+ }
1178
+ .m-previous {
1179
+ font-size: 14px;
1180
+ color: rgba(0, 0, 0, 0.54);
1181
+ }
1182
+ .m__data {
1183
+ display: flex;
1184
+ align-items: center;
1185
+ gap: 6px;
1186
+ .change {
1187
+ &.up {
1188
+ color: var(--mega-success);
1189
+ }
1190
+ &.down {
1191
+ color: var(--mega-error);
1192
+ }
1193
+ }
1194
+ }
1195
+ table {
1196
+ thead tr th {
1197
+ font-weight: 700;
1198
+ padding: 0 10px;
1199
+ }
1200
+ tr td {
1201
+ padding: 0 8px;
1202
+ &:first-child {
1203
+ padding-left: 0;
1204
+ }
1205
+ &:last-child {
1206
+ padding-right: 0;
1207
+ }
1208
+ }
1209
+ }
1210
+ }
1211
+ }
1212
+
1213
+ .table-diff-change {
1214
+ display: flex;
1215
+ align-items: center;
1216
+ gap: 6px;
1217
+ position: relative;
1218
+ height: 36px;
1219
+ margin: 0 -10px;
1220
+ .value {
1221
+ z-index: 1;
1222
+ padding: 0 10px;
1223
+ display: flex;
1224
+ align-items: center;
1225
+ gap: 6px;
1226
+ i {
1227
+ color: #bb5800;
1228
+ padding-left: 6px;
1229
+ }
1230
+ }
1231
+ .percent {
1232
+ position: absolute;
1233
+ top: 1px;
1234
+ bottom: 2px;
1235
+ left: 1px;
1236
+ background: var(--mega-table-percent);
1237
+ position: absolute;
1238
+ }
1239
+ &.up {
1240
+ color: var(--mega-success);
1241
+ }
1242
+ &.down {
1243
+ color: var(--mega-error);
1244
+ }
1245
+ span {
1246
+ display: inline-flex;
1247
+ }
1248
+ }
1249
+
1250
+ .table-filter-content {
1251
+ display: flex;
1252
+ flex-direction: row;
1253
+ gap: 16px;
1254
+ user-select: none;
1255
+ .table-filter-left {
1256
+ padding-top: 4px;
1257
+ }
1258
+ .table-filter-content {
1259
+ display: flex;
1260
+ flex-direction: column;
1261
+ gap: 24px;
1262
+ }
1263
+ .table-filter-title {
1264
+ color: rgba(0, 0, 0, 0.87);
1265
+ font-weight: 400;
1266
+ font-size: 20px;
1267
+ }
1268
+ .table-filter-tags {
1269
+ display: flex;
1270
+ gap: 24px;
1271
+
1272
+ flex-wrap: wrap;
1273
+ .mega-tag {
1274
+ width: auto;
1275
+ min-width: auto;
1276
+ max-width: 100% !important;
1277
+ }
1278
+ }
1279
+ }
1280
+
1281
+ // dashboard
1282
+
1283
+ .mega-dashboard {
1284
+ width: 100%;
1285
+ // padding: 8px;
1286
+ overflow-y: auto;
1287
+ padding: 8px;
1288
+ &.is-empty {
1289
+ display: flex;
1290
+ align-items: center;
1291
+ justify-content: center;
1292
+ }
1293
+ &::-webkit-scrollbar {
1294
+ display: none;
1295
+ width: 0;
1296
+ height: 0;
1297
+ }
1298
+ }
1299
+
1300
+ .dashboard-card {
1301
+ height: 100%;
1302
+ background: #fff;
1303
+ &.fullscreen {
1304
+ padding: 24px;
1305
+ }
1306
+ svg {
1307
+ display: inline-flex;
1308
+ }
1309
+ .ant-space-item {
1310
+ display: flex;
1311
+ align-items: center;
1312
+ }
1313
+ &__title {
1314
+ display: flex;
1315
+ align-items: center;
1316
+ justify-content: space-between;
1317
+ font-size: 16px;
1318
+ line-height: 20px;
1319
+ color: rgba(0, 0, 0, 0.87);
1320
+ user-select: none;
1321
+ }
1322
+ &_actions {
1323
+ display: inline-flex;
1324
+ }
1325
+ &__content {
1326
+ margin-top: 20px;
1327
+ height: calc(100% - 20px - 20px);
1328
+ overflow: auto;
1329
+ &::-webkit-scrollbar {
1330
+ display: none;
1331
+ }
1332
+ }
1333
+ .mega-cube-panel {
1334
+ height: 100%;
1335
+ min-height: 100px !important;
1336
+ position: relative;
1337
+ &__loading {
1338
+ position: absolute;
1339
+ top: 20px;
1340
+ left: 50%;
1341
+ transform: translate(-50%, 50%);
1342
+ z-index: 1;
1343
+ }
1344
+ .mega-vis-status {
1345
+ height: auto;
1346
+ }
1347
+ }
1348
+ .vis-inner {
1349
+ height: 100%;
1350
+ padding: 0 !important;
1351
+ }
1352
+ }
1353
+
1354
+ .mega-container.is-push-layout {
1355
+ .dashboard-card {
1356
+ .dash-drag {
1357
+ display: none !important;
1358
+ }
1359
+ .chart-card__title {
1360
+ .m-current,
1361
+ .m-previous,
1362
+ .m__data {
1363
+ visibility: hidden !important;
1364
+ }
1365
+ .action {
1366
+ display: none;
1367
+ }
1368
+ }
1369
+ .dashboard-card_actions {
1370
+ display: none !important;
1371
+ }
1372
+ }
1373
+ }
1374
+
1375
+ .vue-grid-layout {
1376
+ background: initial;
1377
+ .vue-grid-item {
1378
+ background: #ffffff;
1379
+ touch-action: none;
1380
+ border: 0;
1381
+ padding: 20px 16px 16px;
1382
+ box-shadow: 0px 4px 10px rgb(207 216 220 / 20%);
1383
+ border-radius: 6px;
1384
+ // &:not(.vue-grid-placeholder) {
1385
+ // background: rgba(238, 238, 238, 03);
1386
+ // border: 1px solid#ddd;
1387
+ // }
1388
+ &.vue-grid-placeholder {
1389
+ background: var(--mega-primary-color) !important;
1390
+ }
1391
+ .resizing {
1392
+ opacity: 0.9;
1393
+ }
1394
+ // .vue-resizable-handle{
1395
+ // }
1396
+ > div {
1397
+ height: 100%;
1398
+ }
1399
+ }
1400
+ }
1401
+
1402
+ .select-report-container {
1403
+ user-select: none;
1404
+ .select-report-content {
1405
+ &__top {
1406
+ display: flex;
1407
+ align-items: center;
1408
+ justify-content: space-between;
1409
+ }
1410
+ &__bottom {
1411
+ margin-top: 24px;
1412
+ height: 320px;
1413
+ overflow-y: auto;
1414
+ overflow-x: hidden;
1415
+ &::-webkit-scrollbar {
1416
+ display: none;
1417
+ }
1418
+ .vis-inner {
1419
+ padding: 0 !important;
1420
+ height: 100%;
1421
+ }
1422
+
1423
+ .mega-cube-panel {
1424
+ height: 100%;
1425
+ min-height: 100px !important;
1426
+ position: relative;
1427
+ &__loading {
1428
+ position: absolute;
1429
+ top: 20px;
1430
+ left: 50%;
1431
+ transform: translate(-50%, 50%);
1432
+ z-index: 1;
1433
+ }
1434
+ .mega-vis-status {
1435
+ height: auto;
1436
+ }
1437
+ }
1438
+ }
1439
+ }
1440
+ .ant-modal-footer {
1441
+ border-top: none;
1442
+ }
1443
+ }
1444
+
1445
+ // dashboard filter
1446
+ .dash-header {
1447
+ display: flex;
1448
+ align-items: center;
1449
+ justify-content: space-between;
1450
+ padding: 16px 16px 8px;
1451
+ &.is-normal {
1452
+ justify-content: flex-end;
1453
+ }
1454
+ .dash-filter {
1455
+ // background: #fff;
1456
+ // box-shadow: inset 0px -1px 0px #e0e0e0;
1457
+ // padding: 16px 16px 8px;
1458
+ display: flex;
1459
+ align-items: flex-start;
1460
+ flex-grow: 1;
1461
+ .mega-add-dimension {
1462
+ width: auto;
1463
+ height: 32px;
1464
+ }
1465
+
1466
+ .filter-content {
1467
+ flex-grow: 1;
1468
+ min-height: 32px;
1469
+ display: flex;
1470
+ align-items: center;
1471
+ flex-wrap: wrap;
1472
+ padding-right: 16px;
1473
+ width: 0;
1474
+ gap: 8px;
1475
+ }
1476
+ }
1477
+ }
1478
+ .dash-action {
1479
+ display: flex;
1480
+ justify-content: space-between;
1481
+ gap: 16px;
1482
+ margin-right: 8px;
1483
+ .ant-btn {
1484
+ display: flex;
1485
+ align-items: center;
1486
+ box-shadow: none;
1487
+ outline: none;
1488
+ .ant-space-item {
1489
+ display: inline-flex;
1490
+ }
1491
+ }
1492
+ }
1493
+
1494
+ .dash-add-measures {
1495
+ .ant-popover-inner-content {
1496
+ width: 320px;
1497
+ padding: 0;
1498
+
1499
+ .measure-list {
1500
+ padding: 12px;
1501
+ height: 280px;
1502
+ overflow-y: auto;
1503
+ &::-webkit-scrollbar {
1504
+ display: none;
1505
+ }
1506
+ }
1507
+ .action-container {
1508
+ padding: 12px;
1509
+ display: flex;
1510
+ align-items: center;
1511
+ justify-content: space-between;
1512
+ border-top: 1px solid #f0f0f0;
1513
+ }
1514
+ }
1515
+ }
1516
+
1517
+ .we-node-column {
1518
+ display: flex;
1519
+ align-items: center;
1520
+ gap: 6px;
1521
+ cursor: pointer;
1522
+ svg {
1523
+ cursor: pointer;
1524
+ }
1525
+ }
1526
+
1527
+ .table-diff-merge {
1528
+ position: relative;
1529
+ display: flex;
1530
+ align-items: flex-start;
1531
+ justify-content: center;
1532
+ flex-direction: column;
1533
+ gap: 4px;
1534
+ margin: 0 -10px;
1535
+ padding: 0 10px;
1536
+ height: 60px;
1537
+ &__current {
1538
+ width: 100%;
1539
+ z-index: 1;
1540
+ }
1541
+ &__compare {
1542
+ z-index: 1;
1543
+ width: 100%;
1544
+ display: flex;
1545
+ align-items: center;
1546
+ gap: 2px;
1547
+ &.up {
1548
+ color: var(--mega-success);
1549
+ }
1550
+ &.down {
1551
+ color: var(--mega-error);
1552
+ }
1553
+ span {
1554
+ display: inline-flex;
1555
+ }
1556
+ }
1557
+ .percent {
1558
+ position: absolute;
1559
+ top: 1px;
1560
+ bottom: 2px;
1561
+ left: 1px;
1562
+ background: var(--mega-table-percent);
1563
+ position: absolute;
1564
+ }
1565
+ }
1566
+
1567
+ .report-list-container {
1568
+ user-select: none;
1569
+ .ant-popover-inner-content {
1570
+ max-height: 400px;
1571
+ width: 240px;
1572
+ overflow: auto;
1573
+ &::-webkit-scrollbar {
1574
+ display: none;
1575
+ }
1576
+ }
1577
+ &.clear-padding {
1578
+ .ant-popover-inner-content {
1579
+ padding: 0;
1580
+ }
1581
+ }
1582
+ }
1583
+
1584
+ .report-list-card {
1585
+ // background: #ff0000;
1586
+ &__header {
1587
+ border-bottom: 1px solid rgba(0, 0, 0, 0.12);
1588
+ padding: 10px;
1589
+ }
1590
+ &__body {
1591
+ max-height: 346px;
1592
+ overflow: auto;
1593
+ &::-webkit-scrollbar {
1594
+ display: none;
1595
+ }
1596
+
1597
+ &.no-data {
1598
+ padding: 20px;
1599
+ }
1600
+
1601
+ .report-name {
1602
+ white-space: nowrap;
1603
+ text-overflow: ellipsis;
1604
+ width: 200px;
1605
+ overflow: hidden;
1606
+ display: flex;
1607
+ align-items: center;
1608
+ gap: 8px;
1609
+ .stars {
1610
+ display: inline-flex;
1611
+ }
1612
+ .name {
1613
+ display: inline-block;
1614
+ overflow: hidden;
1615
+ text-overflow: ellipsis;
1616
+ }
1617
+ }
1618
+ }
1619
+ }
1620
+ .custom-measure {
1621
+ .item__title {
1622
+ > span {
1623
+ white-space: nowrap;
1624
+ overflow: hidden;
1625
+ text-overflow: ellipsis;
1626
+ max-width: 102px;
1627
+ }
1628
+ }
1629
+ }
1630
+ .custom-measures {
1631
+ .ant-modal-body {
1632
+ padding: 12px;
1633
+ }
1634
+ &_content {
1635
+ display: flex;
1636
+ justify-content: space-between;
1637
+ gap: 20px;
1638
+ .measure-info {
1639
+ .measure-msg {
1640
+ background: var(--mega-background);
1641
+ color: rgba(0, 0, 0, 0.87);
1642
+ padding: 12px;
1643
+ border-radius: 4px;
1644
+ word-break: break-word !important;
1645
+ .field {
1646
+ // font-weight: bold;
1647
+ // word-break: break-word !important;
1648
+ margin-top: 12px;
1649
+ display: flex;
1650
+ align-items: center;
1651
+ justify-content: flex-start;
1652
+ flex-wrap: wrap;
1653
+ gap: 12px;
1654
+ }
1655
+ }
1656
+ .measure-basic {
1657
+ margin-top: 12px;
1658
+ display: flex;
1659
+ align-items: center;
1660
+ gap: 12px;
1661
+ }
1662
+ .measure-extra {
1663
+ margin-top: 12px;
1664
+ display: flex;
1665
+ align-items: center;
1666
+ gap: 12px;
1667
+ }
1668
+ .measure-formula {
1669
+ margin-top: 12px;
1670
+ }
1671
+ }
1672
+ }
1673
+ }
1674
+
1675
+ .draggable-measure-custom {
1676
+ display: flex;
1677
+ align-items: flex-start;
1678
+ flex-wrap: wrap;
1679
+ padding-left: 16px;
1680
+ gap: 16px;
1681
+ .mega-tag {
1682
+ background: var(--mega-table-percent);
1683
+ border-color: var(--mega-table-percent);
1684
+ }
1685
+ }
1686
+
1687
+ .we-divider {
1688
+ margin: 12px 0 !important;
1689
+ font-size: 12px !important;
1690
+ // color: @primary-color !important;
1691
+ color: rgba(0, 0, 0, 0.54) !important;
1692
+ }
1693
+
1694
+ .help {
1695
+ text-decoration: underline;
1696
+ text-decoration-style: dashed;
1697
+ text-decoration-color: rgba(0, 0, 0, 0.37);
1698
+ cursor: help;
1699
+ }
1700
+
1701
+ .markline-container {
1702
+ width: 300px;
1703
+ .markline__footer {
1704
+ display: flex;
1705
+ align-items: center;
1706
+ justify-content: flex-end;
1707
+ }
1708
+ }
1709
+
1710
+ .dual-chart-container {
1711
+ display: flex;
1712
+ gap: 16px;
1713
+ height: 100%;
1714
+ .dual-chart {
1715
+ flex-grow: 1;
1716
+ }
1717
+ .dual-control {
1718
+ width: 320px;
1719
+ padding-left: 16px;
1720
+ border-left: 1px solid #e0e0e0;
1721
+ height: 100%;
1722
+ overflow: auto;
1723
+ svg {
1724
+ display: flex;
1725
+ }
1726
+ &::-webkit-scrollbar {
1727
+ display: none;
1728
+ width: 0;
1729
+ height: 0;
1730
+ }
1731
+ .ant-collapse {
1732
+ border-radius: 0;
1733
+ border-color: transparent;
1734
+ .ant-collapse-content-box {
1735
+ .ant-row {
1736
+ &:last-child {
1737
+ margin-bottom: 0;
1738
+ }
1739
+ }
1740
+ }
1741
+ }
1742
+ .ant-radio-group {
1743
+ .ant-radio-button-wrapper {
1744
+ display: inline-flex;
1745
+ align-items: center;
1746
+ padding: 0 6px;
1747
+ span {
1748
+ &:last-child {
1749
+ display: flex;
1750
+ }
1751
+ }
1752
+ }
1753
+ }
1754
+
1755
+ .markline-new {
1756
+ display: flex;
1757
+ align-items: center;
1758
+ justify-content: flex-end;
1759
+ margin-bottom: 12px;
1760
+ margin-top: -12px;
1761
+ }
1762
+ .mark-lines {
1763
+ padding-left: 16px;
1764
+ li {
1765
+ padding: 4px 8px;
1766
+ display: flex;
1767
+ align-items: center;
1768
+ transition: all 0.3s;
1769
+ &:hover {
1770
+ background: var(--mega-background);
1771
+ }
1772
+ .mark-label {
1773
+ flex-grow: 1;
1774
+ span {
1775
+ padding: 0 8px;
1776
+ background: #eee;
1777
+ border-radius: 5px;
1778
+ display: inline-flex;
1779
+ text-transform: capitalize;
1780
+ }
1781
+ }
1782
+ .mark-action {
1783
+ width: 30px;
1784
+ }
1785
+ }
1786
+ }
1787
+ }
1788
+ }
1789
+
1790
+ .custom-measure {
1791
+ .mega-group-list__item-content {
1792
+ .item__info {
1793
+ width: 72px !important;
1794
+ cursor: pointer;
1795
+ .ant-space-item {
1796
+ display: inline-flex;
1797
+ }
1798
+ }
1799
+ }
1800
+ }
1801
+
1802
+ .operate-content {
1803
+ .ant-btn.middle {
1804
+ span {
1805
+ vertical-align: middle;
1806
+ }
1807
+ }
1808
+ }
1809
+
1810
+ .highlight-code-str {
1811
+ color: var(--mega-primary-color);
1812
+ }
1813
+ .space-between {
1814
+ flex-grow: 1;
1815
+ justify-content: space-between;
1816
+ }
1817
+
1818
+ .dash-filter {
1819
+ .mega-tag {
1820
+ height: 32px;
1821
+ border-radius: 0;
1822
+ }
1823
+ }
1824
+
1825
+ .mega-cascader-container {
1826
+ user-select: none;
1827
+
1828
+ .ant-popover-inner-content {
1829
+ min-width: 80px;
1830
+ overflow: auto;
1831
+ padding: 0;
1832
+ &::-webkit-scrollbar {
1833
+ display: none;
1834
+ }
1835
+ }
1836
+
1837
+ .mega-cascader {
1838
+ display: flex;
1839
+ flex-direction: row;
1840
+ }
1841
+
1842
+ .title-info {
1843
+ display: flex;
1844
+ align-items: center;
1845
+ gap: 8px;
1846
+ }
1847
+
1848
+ .item-list {
1849
+ padding: 6px 0;
1850
+ }
1851
+
1852
+ .item-sub-category {
1853
+ border-left: 1px solid #f0f0f0;
1854
+ }
1855
+ }