@report-designer/designer 0.1.1 → 0.1.3

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,1570 @@
1
+ :root {
2
+ --rd-bg: #eef1f5;
3
+ --rd-surface: #ffffff;
4
+ --rd-border: #cfd6df;
5
+ --rd-border-strong: #aeb8c5;
6
+ --rd-command-bg: #f8fafc;
7
+ --rd-command-hover: #e8f1ff;
8
+ --rd-accent: #2f78d4;
9
+ --rd-text: #20242a;
10
+ --rd-muted: #6b7280;
11
+ }
12
+
13
+ .rd-designer-shell {
14
+ height: 100%;
15
+ width: 100%;
16
+ min-height: 0;
17
+ color: var(--rd-text);
18
+ background: var(--rd-bg);
19
+ display: grid;
20
+ grid-template-rows: 30px 92px minmax(0, 1fr) 26px;
21
+ overflow: hidden;
22
+ font-family: Arial, "Microsoft YaHei", sans-serif;
23
+ }
24
+
25
+ .rd-quick-access {
26
+ height: 30px;
27
+ display: grid;
28
+ grid-template-columns: 220px minmax(0, 1fr) 220px;
29
+ align-items: center;
30
+ border-bottom: 1px solid var(--rd-border);
31
+ background: #f9fbfd;
32
+ }
33
+
34
+ .rd-quick-access-buttons {
35
+ display: flex;
36
+ align-items: center;
37
+ gap: 2px;
38
+ padding-left: 6px;
39
+ }
40
+
41
+ .rd-quick-access-separator {
42
+ width: 1px;
43
+ height: 18px;
44
+ margin: 0 4px;
45
+ background: var(--rd-border);
46
+ }
47
+
48
+ .rd-quick-access-title {
49
+ text-align: center;
50
+ font-size: 12px;
51
+ font-weight: 600;
52
+ color: var(--rd-text);
53
+ overflow: hidden;
54
+ text-overflow: ellipsis;
55
+ white-space: nowrap;
56
+ }
57
+
58
+ .rd-quick-access-meta {
59
+ padding-right: 10px;
60
+ text-align: right;
61
+ font-size: 11px;
62
+ color: var(--rd-muted);
63
+ }
64
+
65
+ .rd-ribbon {
66
+ min-height: 86px;
67
+ background: var(--rd-surface);
68
+ border-bottom: 1px solid var(--rd-border-strong);
69
+ }
70
+
71
+ .rd-ribbon-tabs {
72
+ display: flex;
73
+ height: 26px;
74
+ padding-left: 8px;
75
+ border-bottom: 1px solid var(--rd-border);
76
+ background: #f4f7fb;
77
+ overflow-x: auto;
78
+ overflow-y: hidden;
79
+ }
80
+
81
+ .rd-ribbon-tab {
82
+ flex: 0 0 auto;
83
+ min-width: 74px;
84
+ height: 26px;
85
+ border: 0;
86
+ border-right: 1px solid transparent;
87
+ border-left: 1px solid transparent;
88
+ background: transparent;
89
+ color: var(--rd-text);
90
+ font-size: 12px;
91
+ cursor: pointer;
92
+ }
93
+
94
+ .rd-ribbon-tab-active {
95
+ margin-bottom: -1px;
96
+ background: var(--rd-surface);
97
+ border-right-color: var(--rd-border);
98
+ border-left-color: var(--rd-border);
99
+ border-top: 2px solid var(--rd-accent);
100
+ }
101
+
102
+ .rd-ribbon-content {
103
+ min-height: 60px;
104
+ display: flex;
105
+ align-items: stretch;
106
+ gap: 0;
107
+ padding: 4px 8px 3px;
108
+ overflow-x: auto;
109
+ overflow-y: hidden;
110
+ white-space: nowrap;
111
+ }
112
+
113
+ .rd-ribbon-group {
114
+ position: relative;
115
+ flex: 0 0 auto;
116
+ min-width: 0;
117
+ display: grid;
118
+ grid-template-rows: 1fr 16px;
119
+ padding: 0 10px 0 4px;
120
+ }
121
+
122
+ .rd-ribbon-group-controls {
123
+ display: flex;
124
+ align-items: flex-start;
125
+ gap: 4px;
126
+ flex-wrap: nowrap;
127
+ align-content: flex-start;
128
+ }
129
+
130
+ .rd-ribbon-group-title {
131
+ align-self: end;
132
+ text-align: center;
133
+ font-size: 10px;
134
+ color: var(--rd-muted);
135
+ line-height: 16px;
136
+ }
137
+
138
+ .rd-band-menu-item {
139
+ display: inline-flex;
140
+ align-items: center;
141
+ gap: 8px;
142
+ min-width: 132px;
143
+ }
144
+
145
+ .rd-band-menu-description {
146
+ width: 260px;
147
+ min-height: 86px;
148
+ padding: 12px 12px 10px;
149
+ border-top: 3px solid;
150
+ box-sizing: border-box;
151
+ background: #fff;
152
+ color: var(--rd-text);
153
+ white-space: normal;
154
+ }
155
+
156
+ .rd-band-help-popover .ant-popover-inner {
157
+ padding: 0;
158
+ border: 1px solid #bfc7d2;
159
+ border-radius: 0;
160
+ box-shadow: 0 4px 12px rgba(15,23,42,0.16);
161
+ }
162
+
163
+ .rd-band-menu-description-title {
164
+ margin-bottom: 8px;
165
+ font-size: 12px;
166
+ font-weight: 600;
167
+ line-height: 1.25;
168
+ }
169
+
170
+ .rd-band-menu-description-text {
171
+ font-size: 12px;
172
+ line-height: 1.35;
173
+ color: #374151;
174
+ }
175
+
176
+ .rd-band-glyph {
177
+ width: 16px;
178
+ height: 13px;
179
+ border: 1px solid;
180
+ display: inline-flex;
181
+ align-items: center;
182
+ justify-content: center;
183
+ box-sizing: border-box;
184
+ background: #fff;
185
+ }
186
+
187
+ .rd-band-glyph-mark {
188
+ width: 10px;
189
+ height: 8px;
190
+ display: block;
191
+ position: relative;
192
+ color: inherit;
193
+ }
194
+
195
+ .rd-band-glyph-mark::before,
196
+ .rd-band-glyph-mark::after {
197
+ content: '';
198
+ position: absolute;
199
+ box-sizing: border-box;
200
+ }
201
+
202
+ .rd-band-glyph-report-title {
203
+ border-top: 3px solid currentColor;
204
+ border-bottom: 1px solid currentColor;
205
+ }
206
+
207
+ .rd-band-glyph-report-title::after {
208
+ left: 2px;
209
+ right: 2px;
210
+ top: 4px;
211
+ border-top: 1px solid currentColor;
212
+ }
213
+
214
+ .rd-band-glyph-page-header {
215
+ border-top: 3px solid currentColor;
216
+ }
217
+
218
+ .rd-band-glyph-page-header::after {
219
+ left: 0;
220
+ right: 0;
221
+ bottom: 1px;
222
+ border-top: 1px dashed currentColor;
223
+ }
224
+
225
+ .rd-band-glyph-header {
226
+ border-top: 2px solid currentColor;
227
+ box-shadow: inset 0 3px 0 rgba(0,0,0,0.08);
228
+ }
229
+
230
+ .rd-band-glyph-column-header {
231
+ background:
232
+ linear-gradient(currentColor 0 0) top / 100% 2px no-repeat,
233
+ linear-gradient(90deg, currentColor 1px, transparent 1px) 0 3px / 5px 5px;
234
+ }
235
+
236
+ .rd-band-glyph-group-header {
237
+ border-top: 2px solid currentColor;
238
+ border-left: 2px solid currentColor;
239
+ }
240
+
241
+ .rd-band-glyph-group-header::after {
242
+ right: 0;
243
+ top: 4px;
244
+ width: 7px;
245
+ border-top: 1px solid currentColor;
246
+ }
247
+
248
+ .rd-band-glyph-data {
249
+ background:
250
+ linear-gradient(currentColor 1px, transparent 1px),
251
+ linear-gradient(90deg, currentColor 1px, transparent 1px);
252
+ background-size: 5px 4px;
253
+ }
254
+
255
+ .rd-band-glyph-hierarchical-data {
256
+ background:
257
+ linear-gradient(currentColor 1px, transparent 1px) 3px 0 / 7px 4px,
258
+ linear-gradient(90deg, currentColor 1px, transparent 1px) 3px 0 / 4px 4px;
259
+ }
260
+
261
+ .rd-band-glyph-hierarchical-data::before {
262
+ left: 0;
263
+ top: 1px;
264
+ bottom: 1px;
265
+ border-left: 1px solid currentColor;
266
+ }
267
+
268
+ .rd-band-glyph-group-footer {
269
+ border-bottom: 2px solid currentColor;
270
+ border-left: 2px solid currentColor;
271
+ }
272
+
273
+ .rd-band-glyph-group-footer::after {
274
+ right: 0;
275
+ top: 2px;
276
+ width: 7px;
277
+ border-top: 1px solid currentColor;
278
+ }
279
+
280
+ .rd-band-glyph-column-footer {
281
+ background:
282
+ linear-gradient(currentColor 0 0) bottom / 100% 2px no-repeat,
283
+ linear-gradient(90deg, currentColor 1px, transparent 1px) 0 0 / 5px 5px;
284
+ }
285
+
286
+ .rd-band-glyph-footer {
287
+ border-bottom: 2px solid currentColor;
288
+ box-shadow: inset 0 -3px 0 rgba(0,0,0,0.08);
289
+ }
290
+
291
+ .rd-band-glyph-page-footer {
292
+ border-bottom: 3px solid currentColor;
293
+ }
294
+
295
+ .rd-band-glyph-page-footer::after {
296
+ left: 0;
297
+ right: 0;
298
+ top: 1px;
299
+ border-top: 1px dashed currentColor;
300
+ }
301
+
302
+ .rd-band-glyph-report-summary {
303
+ border-top: 1px solid currentColor;
304
+ border-bottom: 3px double currentColor;
305
+ }
306
+
307
+ .rd-band-glyph-overlay {
308
+ border: 1px solid currentColor;
309
+ transform: translate(1px, -1px);
310
+ box-shadow: -3px 3px 0 -1px #fff, -3px 3px 0 0 currentColor;
311
+ }
312
+
313
+ .rd-ribbon-divider {
314
+ position: absolute;
315
+ top: 2px;
316
+ right: 0;
317
+ height: 50px;
318
+ border-color: var(--rd-border);
319
+ }
320
+
321
+ .rd-designer-body {
322
+ position: relative;
323
+ min-height: 0;
324
+ display: grid;
325
+ overflow: hidden;
326
+ }
327
+
328
+ .rd-dock-panel {
329
+ position: relative;
330
+ min-width: 0;
331
+ min-height: 0;
332
+ overflow: visible;
333
+ }
334
+
335
+ .rd-dock-content {
336
+ position: relative;
337
+ width: 100%;
338
+ height: 100%;
339
+ min-width: 0;
340
+ min-height: 0;
341
+ }
342
+
343
+ .rd-dock-content > .rd-left-panel,
344
+ .rd-dock-content > .rd-property-grid {
345
+ width: 100%;
346
+ height: 100%;
347
+ }
348
+
349
+ .rd-dock-panel-auto {
350
+ z-index: 30000;
351
+ }
352
+
353
+ .rd-dock-panel-auto .rd-dock-content {
354
+ position: absolute;
355
+ top: 0;
356
+ bottom: 0;
357
+ z-index: 30002;
358
+ width: var(--rd-dock-width);
359
+ }
360
+
361
+ .rd-dock-panel-left.rd-dock-panel-auto .rd-dock-content {
362
+ left: 0;
363
+ }
364
+
365
+ .rd-dock-panel-right.rd-dock-panel-auto .rd-dock-content {
366
+ right: 0;
367
+ }
368
+
369
+ .rd-dock-panel.rd-dock-panel-open .rd-dock-content {
370
+ opacity: 1 !important;
371
+ visibility: visible !important;
372
+ pointer-events: auto !important;
373
+ transform: translateX(0) !important;
374
+ }
375
+
376
+ .rd-dock-panel-auto:hover .rd-dock-content,
377
+ .rd-dock-panel-auto:focus-within .rd-dock-content {
378
+ opacity: 1 !important;
379
+ visibility: visible !important;
380
+ pointer-events: auto !important;
381
+ transform: translateX(0) !important;
382
+ }
383
+
384
+ .rd-dock-panel-auto .rd-dock-content > .rd-left-panel,
385
+ .rd-dock-panel-auto .rd-dock-content > .rd-property-grid {
386
+ box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
387
+ }
388
+
389
+ .rd-dock-strip {
390
+ position: absolute;
391
+ top: 0;
392
+ bottom: 0;
393
+ z-index: 30003;
394
+ width: 30px;
395
+ display: none;
396
+ flex-direction: column;
397
+ background: #fff;
398
+ border-color: var(--rd-border-strong);
399
+ }
400
+
401
+ .rd-dock-panel-auto .rd-dock-strip {
402
+ display: flex;
403
+ }
404
+
405
+ .rd-dock-panel-left .rd-dock-strip {
406
+ left: 0;
407
+ border-right: 1px solid var(--rd-border-strong);
408
+ }
409
+
410
+ .rd-dock-panel-right .rd-dock-strip {
411
+ right: 0;
412
+ border-left: 1px solid var(--rd-border-strong);
413
+ }
414
+
415
+ .rd-dock-strip-tab {
416
+ position: relative;
417
+ width: 30px;
418
+ min-height: 88px;
419
+ flex: 0 0 auto;
420
+ display: flex;
421
+ align-items: center;
422
+ justify-content: center;
423
+ padding: 8px 0;
424
+ border: 0;
425
+ border-bottom: 1px solid #e5e7eb;
426
+ background: #fff;
427
+ color: #334155;
428
+ cursor: pointer;
429
+ font-size: 12px;
430
+ line-height: 1;
431
+ writing-mode: vertical-rl;
432
+ text-orientation: mixed;
433
+ }
434
+
435
+ .rd-dock-strip-tab::before {
436
+ content: "";
437
+ position: absolute;
438
+ top: 10px;
439
+ bottom: 10px;
440
+ width: 3px;
441
+ background: transparent;
442
+ }
443
+
444
+ .rd-dock-panel-left .rd-dock-strip-tab::before {
445
+ left: 0;
446
+ }
447
+
448
+ .rd-dock-panel-right .rd-dock-strip-tab::before {
449
+ right: 0;
450
+ }
451
+
452
+ .rd-dock-strip-tab:hover,
453
+ .rd-dock-strip-tab-active {
454
+ background: #f7faff;
455
+ color: var(--rd-accent);
456
+ }
457
+
458
+ .rd-dock-strip-tab-active::before {
459
+ background: #1f5fbf;
460
+ }
461
+
462
+ .rd-dock-pin-button {
463
+ position: absolute;
464
+ top: 2px;
465
+ right: 4px;
466
+ z-index: 1040;
467
+ width: 24px;
468
+ min-width: 24px;
469
+ height: 24px;
470
+ border: 0;
471
+ color: #334155;
472
+ background: transparent !important;
473
+ box-shadow: none !important;
474
+ display: inline-flex;
475
+ align-items: center;
476
+ justify-content: center;
477
+ }
478
+
479
+ .rd-dock-pin-button .anticon {
480
+ transform-origin: center;
481
+ transition: transform 120ms ease, color 120ms ease;
482
+ }
483
+
484
+ .rd-dock-pin-button-vertical .anticon {
485
+ transform: rotate(-45deg);
486
+ }
487
+
488
+ .rd-dock-pin-button-horizontal .anticon {
489
+ transform: rotate(45deg);
490
+ }
491
+
492
+ .rd-dock-panel-pinned .rd-dock-pin-button,
493
+ .rd-dock-panel-open .rd-dock-pin-button,
494
+ .rd-dock-panel-auto:hover .rd-dock-pin-button,
495
+ .rd-dock-panel-auto:focus-within .rd-dock-pin-button {
496
+ opacity: 1 !important;
497
+ visibility: visible !important;
498
+ pointer-events: auto !important;
499
+ }
500
+
501
+ .rd-dock-pin-button:hover,
502
+ .rd-dock-pin-button:focus-visible {
503
+ color: var(--rd-accent);
504
+ background: transparent !important;
505
+ }
506
+
507
+ .rd-left-panel,
508
+ .rd-property-grid {
509
+ min-width: 0;
510
+ min-height: 0;
511
+ background: var(--rd-surface);
512
+ border-color: var(--rd-border-strong);
513
+ display: grid;
514
+ grid-template-rows: 27px minmax(0, 1fr);
515
+ overflow: hidden;
516
+ }
517
+
518
+ .rd-left-panel {
519
+ border-right: 1px solid var(--rd-border-strong);
520
+ }
521
+
522
+ .rd-property-grid {
523
+ border-left: 1px solid var(--rd-border-strong);
524
+ }
525
+
526
+ .rd-panel-title {
527
+ height: 27px;
528
+ display: flex;
529
+ align-items: center;
530
+ padding: 0 34px 0 9px;
531
+ border-bottom: 1px solid var(--rd-border);
532
+ background: #f7f9fc;
533
+ color: var(--rd-text);
534
+ font-size: 12px;
535
+ font-weight: 600;
536
+ }
537
+
538
+ .rd-left-panel-body,
539
+ .rd-property-grid-body {
540
+ min-height: 0;
541
+ overflow: auto;
542
+ }
543
+
544
+ .rd-left-panel .ant-tabs-nav {
545
+ margin-bottom: 6px;
546
+ padding: 0 4px;
547
+ }
548
+
549
+ .rd-left-panel .ant-tabs-tab {
550
+ padding: 7px 2px;
551
+ font-size: 12px;
552
+ }
553
+
554
+ .rd-left-panel .ant-tabs-content-holder,
555
+ .rd-left-panel .ant-tabs-content,
556
+ .rd-left-panel .ant-tabs-tabpane {
557
+ min-height: 0;
558
+ height: 100%;
559
+ }
560
+
561
+ .rd-component-palette {
562
+ height: 100%;
563
+ min-height: 0;
564
+ display: flex;
565
+ flex-direction: column;
566
+ padding: 6px 4px 8px;
567
+ overflow: hidden;
568
+ }
569
+
570
+ .rd-panel-search {
571
+ flex: 0 0 auto;
572
+ margin-bottom: 6px;
573
+ width: 100%;
574
+ }
575
+
576
+ .rd-component-palette-hint {
577
+ flex: 0 0 auto;
578
+ margin: 0 2px 8px;
579
+ color: var(--rd-muted);
580
+ font-size: 11px;
581
+ line-height: 1.35;
582
+ }
583
+
584
+ .rd-component-palette-groups {
585
+ flex: 1;
586
+ min-height: 0;
587
+ overflow: auto;
588
+ padding-right: 2px;
589
+ }
590
+
591
+ .rd-component-palette-group {
592
+ margin-bottom: 10px;
593
+ }
594
+
595
+ .rd-component-palette-group-title {
596
+ margin: 0 2px 5px;
597
+ color: #4b5b6f;
598
+ font-size: 11px;
599
+ font-weight: 600;
600
+ line-height: 1.2;
601
+ }
602
+
603
+ .rd-component-toolbox-grid {
604
+ display: grid;
605
+ grid-template-columns: repeat(2, minmax(0, 1fr));
606
+ gap: 4px;
607
+ }
608
+
609
+ .rd-component-toolbox-item {
610
+ min-width: 0;
611
+ height: 34px;
612
+ display: grid;
613
+ grid-template-columns: 16px minmax(0, 1fr);
614
+ align-items: center;
615
+ gap: 5px;
616
+ padding: 0 6px;
617
+ color: var(--rd-text);
618
+ background: #fff;
619
+ border: 1px solid var(--rd-border);
620
+ border-radius: 3px;
621
+ cursor: grab;
622
+ text-align: left;
623
+ }
624
+
625
+ .rd-component-toolbox-item:hover {
626
+ background: #f3f8ff;
627
+ border-color: #8bb8ea;
628
+ }
629
+
630
+ .rd-component-toolbox-item:active {
631
+ cursor: grabbing;
632
+ }
633
+
634
+ .rd-component-toolbox-label {
635
+ min-width: 0;
636
+ overflow: hidden;
637
+ font-size: 12px;
638
+ line-height: 1.1;
639
+ text-overflow: ellipsis;
640
+ white-space: nowrap;
641
+ }
642
+
643
+ .rd-property-grid .ant-collapse-header {
644
+ padding: 5px 8px !important;
645
+ font-size: 12px;
646
+ }
647
+
648
+ .rd-property-grid .ant-form-item {
649
+ margin-bottom: 6px;
650
+ }
651
+
652
+ .rd-canvas-frame {
653
+ position: relative;
654
+ min-width: 0;
655
+ min-height: 0;
656
+ display: block;
657
+ background: #dfe4eb;
658
+ overflow: hidden;
659
+ }
660
+
661
+ .rd-canvas-ruler-corner {
662
+ grid-column: 1;
663
+ grid-row: 1;
664
+ background: #f6f8fb;
665
+ border-right: 1px solid var(--rd-border-strong);
666
+ border-bottom: 1px solid var(--rd-border-strong);
667
+ }
668
+
669
+ .rd-canvas-ruler {
670
+ background: #f6f8fb;
671
+ color: #5f6875;
672
+ font-size: 9px;
673
+ user-select: none;
674
+ overflow: hidden;
675
+ }
676
+
677
+ .rd-canvas-ruler-horizontal {
678
+ grid-column: 2;
679
+ grid-row: 1;
680
+ display: flex;
681
+ align-items: flex-end;
682
+ gap: 19px;
683
+ padding-left: 6px;
684
+ border-bottom: 1px solid var(--rd-border-strong);
685
+ }
686
+
687
+ .rd-canvas-ruler-vertical {
688
+ grid-column: 1;
689
+ grid-row: 2;
690
+ display: flex;
691
+ flex-direction: column;
692
+ align-items: flex-end;
693
+ gap: 19px;
694
+ padding-top: 6px;
695
+ padding-right: 3px;
696
+ border-right: 1px solid var(--rd-border-strong);
697
+ }
698
+
699
+ .rd-canvas-workspace {
700
+ min-width: 0;
701
+ min-height: 0;
702
+ width: 100%;
703
+ height: 100%;
704
+ overflow: hidden;
705
+ }
706
+
707
+ .rd-canvas-frame-preview {
708
+ display: block;
709
+ }
710
+
711
+ .rd-preview-workspace {
712
+ height: 100%;
713
+ min-width: 0;
714
+ min-height: 0;
715
+ overflow: hidden;
716
+ background: #e1e6ee;
717
+ }
718
+
719
+ .rd-property-grid-band {
720
+ padding: 8px;
721
+ border-bottom: 1px solid var(--rd-border);
722
+ background: #fbfcfe;
723
+ }
724
+
725
+ .rd-report-tree {
726
+ height: 100%;
727
+ display: flex;
728
+ flex-direction: column;
729
+ gap: 6px;
730
+ padding: 6px;
731
+ }
732
+
733
+ .rd-report-tree-header {
734
+ display: flex;
735
+ align-items: center;
736
+ gap: 6px;
737
+ }
738
+
739
+ .rd-report-tree-body {
740
+ flex: 1;
741
+ min-height: 0;
742
+ overflow: auto;
743
+ }
744
+
745
+ .rd-dictionary-panel {
746
+ height: 100%;
747
+ display: flex;
748
+ flex-direction: column;
749
+ gap: 6px;
750
+ padding: 6px;
751
+ }
752
+
753
+ .rd-dictionary-tree {
754
+ flex: 1;
755
+ min-height: 0;
756
+ overflow: auto;
757
+ }
758
+
759
+ .rd-dictionary-tree .ant-tree-treenode {
760
+ padding: 0;
761
+ align-items: center;
762
+ }
763
+
764
+ .rd-dictionary-tree .ant-tree-node-content-wrapper {
765
+ width: calc(100% - 24px);
766
+ padding: 1px 2px !important;
767
+ border-radius: 4px;
768
+ min-height: 19px;
769
+ display: inline-flex !important;
770
+ align-items: center;
771
+ }
772
+
773
+ .rd-dictionary-tree .ant-tree-switcher {
774
+ display: flex;
775
+ align-items: center;
776
+ justify-content: center;
777
+ width: 14px;
778
+ min-width: 14px;
779
+ height: 19px;
780
+ color: #7a8593;
781
+ font-size: 10px;
782
+ }
783
+
784
+ .rd-dictionary-tree .ant-tree-indent-unit {
785
+ width: 10px !important;
786
+ }
787
+
788
+ .rd-dictionary-node {
789
+ display: inline-flex;
790
+ align-items: center;
791
+ gap: 4px;
792
+ min-height: 19px;
793
+ color: var(--rd-text);
794
+ font-size: 11px;
795
+ line-height: 1.1;
796
+ }
797
+
798
+ .rd-dictionary-node-field {
799
+ cursor: grab;
800
+ }
801
+
802
+ .rd-dictionary-empty {
803
+ color: #9aa3af;
804
+ font-size: 11px;
805
+ }
806
+
807
+ .rd-dictionary-glyph {
808
+ position: relative;
809
+ width: 11px;
810
+ height: 11px;
811
+ flex: none;
812
+ box-sizing: border-box;
813
+ }
814
+
815
+ .rd-dictionary-glyph-folder,
816
+ .rd-dictionary-glyph-datasource,
817
+ .rd-dictionary-glyph-resource {
818
+ border: 1px solid #7f8ea3;
819
+ border-radius: 1px;
820
+ background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
821
+ }
822
+
823
+ .rd-dictionary-glyph-folder::before,
824
+ .rd-dictionary-glyph-datasource::before,
825
+ .rd-dictionary-glyph-resource::before {
826
+ content: "";
827
+ position: absolute;
828
+ left: 1px;
829
+ right: 1px;
830
+ top: 2px;
831
+ height: 2px;
832
+ background: #7aa4d6;
833
+ }
834
+
835
+ .rd-dictionary-glyph-datasource::after {
836
+ content: "";
837
+ position: absolute;
838
+ left: 2px;
839
+ right: 2px;
840
+ bottom: 2px;
841
+ height: 1px;
842
+ background: #8fa2bb;
843
+ box-shadow: 0 -2px 0 #8fa2bb;
844
+ }
845
+
846
+ .rd-dictionary-glyph-field-string,
847
+ .rd-dictionary-glyph-field-number,
848
+ .rd-dictionary-glyph-field-boolean,
849
+ .rd-dictionary-glyph-field-date,
850
+ .rd-dictionary-glyph-variable,
851
+ .rd-dictionary-glyph-system,
852
+ .rd-dictionary-glyph-function,
853
+ .rd-dictionary-glyph-format {
854
+ border: 1px solid #7f8ea3;
855
+ border-radius: 1px;
856
+ background: #fff;
857
+ }
858
+
859
+ .rd-dictionary-glyph-field-string::before,
860
+ .rd-dictionary-glyph-field-number::before,
861
+ .rd-dictionary-glyph-field-boolean::before,
862
+ .rd-dictionary-glyph-field-date::before,
863
+ .rd-dictionary-glyph-variable::before,
864
+ .rd-dictionary-glyph-system::before,
865
+ .rd-dictionary-glyph-function::before,
866
+ .rd-dictionary-glyph-format::before {
867
+ position: absolute;
868
+ inset: 0;
869
+ display: flex;
870
+ align-items: center;
871
+ justify-content: center;
872
+ font-size: 7px;
873
+ font-weight: 700;
874
+ color: #37618f;
875
+ }
876
+
877
+ .rd-dictionary-glyph-field-string::before { content: "ab"; }
878
+ .rd-dictionary-glyph-field-number::before { content: "1"; }
879
+ .rd-dictionary-glyph-field-boolean::before { content: "T"; }
880
+ .rd-dictionary-glyph-field-date::before { content: "D"; }
881
+ .rd-dictionary-glyph-variable::before { content: "var"; font-size: 5px; }
882
+ .rd-dictionary-glyph-system::before { content: "Σ"; }
883
+ .rd-dictionary-glyph-function::before { content: "fx"; font-size: 6px; }
884
+ .rd-dictionary-glyph-format::before { content: "#"; }
885
+
886
+ .rd-expression-editor {
887
+ --rd-expression-panel-height: 430px;
888
+ display: grid;
889
+ grid-template-columns: 118px minmax(0, 1fr) 250px;
890
+ gap: 12px;
891
+ align-items: start;
892
+ }
893
+
894
+ .rd-expression-rail {
895
+ display: flex;
896
+ flex-direction: column;
897
+ gap: 6px;
898
+ box-sizing: border-box;
899
+ height: var(--rd-expression-panel-height);
900
+ padding-right: 10px;
901
+ border-right: 1px solid var(--rd-border);
902
+ }
903
+
904
+ .rd-expression-rail-item {
905
+ display: flex;
906
+ align-items: center;
907
+ gap: 8px;
908
+ min-height: 48px;
909
+ padding: 8px 10px;
910
+ border: 1px solid transparent;
911
+ border-radius: 4px;
912
+ background: #fff;
913
+ color: var(--rd-text);
914
+ cursor: pointer;
915
+ text-align: left;
916
+ }
917
+
918
+ .rd-expression-rail-item-active {
919
+ background: #eef5ff;
920
+ border-color: #aac7ef;
921
+ }
922
+
923
+ .rd-expression-rail-copy {
924
+ display: flex;
925
+ flex-direction: column;
926
+ gap: 2px;
927
+ min-width: 0;
928
+ }
929
+
930
+ .rd-expression-rail-copy span:first-child {
931
+ font-size: 12px;
932
+ }
933
+
934
+ .rd-expression-rail-copy span:last-child {
935
+ font-size: 10px;
936
+ color: var(--rd-muted);
937
+ }
938
+
939
+ .rd-expression-editor-main {
940
+ min-width: 0;
941
+ display: flex;
942
+ flex-direction: column;
943
+ box-sizing: border-box;
944
+ height: var(--rd-expression-panel-height);
945
+ border: 1px solid var(--rd-border);
946
+ border-radius: 4px;
947
+ overflow: hidden;
948
+ background: #fff;
949
+ }
950
+
951
+ .rd-expression-monaco-host {
952
+ flex: 1;
953
+ min-height: 0;
954
+ }
955
+
956
+ .rd-expression-editor-textarea.ant-input {
957
+ height: 430px;
958
+ resize: none;
959
+ font-family: Consolas, Monaco, monospace;
960
+ font-size: 13px;
961
+ }
962
+
963
+ .rd-expression-editor-footer {
964
+ display: flex;
965
+ align-items: center;
966
+ justify-content: space-between;
967
+ gap: 8px;
968
+ min-height: 44px;
969
+ padding: 8px 10px;
970
+ border-top: 1px solid var(--rd-border);
971
+ color: #7a8593;
972
+ font-size: 11px;
973
+ }
974
+
975
+ .rd-expression-browser {
976
+ display: flex;
977
+ flex-direction: column;
978
+ gap: 8px;
979
+ box-sizing: border-box;
980
+ height: var(--rd-expression-panel-height);
981
+ border: 1px solid var(--rd-border);
982
+ border-radius: 4px;
983
+ padding: 8px;
984
+ overflow: hidden;
985
+ background: #fff;
986
+ }
987
+
988
+ .rd-expression-browser .ant-input-affix-wrapper,
989
+ .rd-expression-browser .ant-input {
990
+ font-size: 12px;
991
+ }
992
+
993
+ .rd-expression-browser-tree {
994
+ flex: 1;
995
+ min-height: 0;
996
+ overflow: auto;
997
+ padding: 4px 0;
998
+ }
999
+
1000
+ .rd-expression-tree-description {
1001
+ flex: none;
1002
+ height: 96px;
1003
+ box-sizing: border-box;
1004
+ overflow: auto;
1005
+ border-top: 1px dotted #b8c1cc;
1006
+ padding: 8px 2px 2px;
1007
+ color: #2f3b4a;
1008
+ font-size: 11px;
1009
+ line-height: 1.35;
1010
+ }
1011
+
1012
+ .rd-expression-tree-description-title {
1013
+ margin-bottom: 5px;
1014
+ font-weight: 600;
1015
+ }
1016
+
1017
+ .rd-expression-tree-description-body {
1018
+ white-space: pre-line;
1019
+ }
1020
+
1021
+ .rd-expression-tree .ant-tree-treenode {
1022
+ padding: 0;
1023
+ align-items: center;
1024
+ }
1025
+
1026
+ .rd-expression-tree .ant-tree-node-content-wrapper {
1027
+ width: calc(100% - 24px);
1028
+ min-height: 20px;
1029
+ padding: 1px 2px !important;
1030
+ border-radius: 4px;
1031
+ display: inline-flex !important;
1032
+ align-items: center;
1033
+ }
1034
+
1035
+ .rd-expression-tree .ant-tree-switcher {
1036
+ display: flex;
1037
+ align-items: center;
1038
+ justify-content: center;
1039
+ width: 14px;
1040
+ min-width: 14px;
1041
+ height: 20px;
1042
+ color: #7a8593;
1043
+ font-size: 10px;
1044
+ }
1045
+
1046
+ .rd-expression-tree .ant-tree-indent-unit {
1047
+ width: 10px !important;
1048
+ }
1049
+
1050
+ .rd-expression-tree-node {
1051
+ display: inline-flex;
1052
+ align-items: center;
1053
+ gap: 4px;
1054
+ min-height: 20px;
1055
+ font-size: 11px;
1056
+ line-height: 1.1;
1057
+ }
1058
+
1059
+ .rd-expression-tree-glyph {
1060
+ position: relative;
1061
+ width: 12px;
1062
+ height: 12px;
1063
+ flex: none;
1064
+ box-sizing: border-box;
1065
+ border: 1px solid #7f8ea3;
1066
+ border-radius: 1px;
1067
+ background: #fff;
1068
+ }
1069
+
1070
+ .rd-expression-tree-glyph-folder,
1071
+ .rd-expression-tree-glyph-expression,
1072
+ .rd-expression-tree-glyph-data,
1073
+ .rd-expression-tree-glyph-system,
1074
+ .rd-expression-tree-glyph-aggregates,
1075
+ .rd-expression-tree-glyph-html,
1076
+ .rd-expression-tree-glyph-resource {
1077
+ background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
1078
+ }
1079
+
1080
+ .rd-expression-tree-glyph-folder::before,
1081
+ .rd-expression-tree-glyph-expression::before,
1082
+ .rd-expression-tree-glyph-data::before,
1083
+ .rd-expression-tree-glyph-system::before,
1084
+ .rd-expression-tree-glyph-aggregates::before,
1085
+ .rd-expression-tree-glyph-html::before,
1086
+ .rd-expression-tree-glyph-field-string::before,
1087
+ .rd-expression-tree-glyph-field-number::before,
1088
+ .rd-expression-tree-glyph-field-date::before,
1089
+ .rd-expression-tree-glyph-field-boolean::before,
1090
+ .rd-expression-tree-glyph-function::before,
1091
+ .rd-expression-tree-glyph-format::before,
1092
+ .rd-expression-tree-glyph-resource::before {
1093
+ position: absolute;
1094
+ inset: 0;
1095
+ display: flex;
1096
+ align-items: center;
1097
+ justify-content: center;
1098
+ font-size: 7px;
1099
+ font-weight: 700;
1100
+ color: #37618f;
1101
+ }
1102
+
1103
+ .rd-expression-tree-glyph-expression::before { content: "E"; }
1104
+ .rd-expression-tree-glyph-data::before,
1105
+ .rd-expression-tree-glyph-field-string::before { content: "ab"; font-size: 6px; }
1106
+ .rd-expression-tree-glyph-field-number::before { content: "1"; }
1107
+ .rd-expression-tree-glyph-field-date::before { content: "D"; }
1108
+ .rd-expression-tree-glyph-field-boolean::before { content: "T"; }
1109
+ .rd-expression-tree-glyph-system::before { content: "Σ"; }
1110
+ .rd-expression-tree-glyph-aggregates::before,
1111
+ .rd-expression-tree-glyph-function::before { content: "fx"; font-size: 6px; }
1112
+ .rd-expression-tree-glyph-html::before { content: "<>"; font-size: 5px; }
1113
+ .rd-expression-tree-glyph-format::before { content: "#"; }
1114
+ .rd-expression-tree-glyph-resource::before { content: "R"; }
1115
+ .rd-expression-tree-glyph-folder::before { content: "+"; }
1116
+
1117
+ .rd-event-editor {
1118
+ --rd-event-editor-panel-height: 430px;
1119
+ display: grid;
1120
+ grid-template-columns: 118px minmax(0, 1fr) 250px;
1121
+ gap: 12px;
1122
+ align-items: start;
1123
+ }
1124
+
1125
+ .rd-event-editor-fullscreen {
1126
+ --rd-event-editor-panel-height: 100%;
1127
+ height: 100%;
1128
+ min-height: 0;
1129
+ }
1130
+
1131
+ .rd-event-editor-rail {
1132
+ box-sizing: border-box;
1133
+ height: var(--rd-event-editor-panel-height);
1134
+ padding-right: 10px;
1135
+ border-right: 1px solid var(--rd-border);
1136
+ overflow: auto;
1137
+ }
1138
+
1139
+ .rd-event-editor-main {
1140
+ min-width: 0;
1141
+ display: flex;
1142
+ flex-direction: column;
1143
+ box-sizing: border-box;
1144
+ height: var(--rd-event-editor-panel-height);
1145
+ border: 1px solid var(--rd-border);
1146
+ border-radius: 4px;
1147
+ overflow: hidden;
1148
+ background: #fff;
1149
+ }
1150
+
1151
+ .rd-event-editor-toolbar {
1152
+ flex: none;
1153
+ display: flex;
1154
+ align-items: center;
1155
+ min-height: 38px;
1156
+ padding: 7px 10px;
1157
+ border-bottom: 1px solid var(--rd-border);
1158
+ background: #fff;
1159
+ }
1160
+
1161
+ .rd-event-editor-monaco-host {
1162
+ flex: 1;
1163
+ min-height: 0;
1164
+ }
1165
+
1166
+ .rd-event-editor-footer {
1167
+ flex: none;
1168
+ min-height: 44px;
1169
+ padding: 8px 10px;
1170
+ border-top: 1px solid var(--rd-border);
1171
+ color: #7a8593;
1172
+ font-size: 11px;
1173
+ }
1174
+
1175
+ .rd-event-editor-footer .ant-alert {
1176
+ padding: 4px 8px;
1177
+ font-size: 12px;
1178
+ }
1179
+
1180
+ .rd-event-editor-browser {
1181
+ display: flex;
1182
+ flex-direction: column;
1183
+ gap: 8px;
1184
+ box-sizing: border-box;
1185
+ height: var(--rd-event-editor-panel-height);
1186
+ border: 1px solid var(--rd-border);
1187
+ border-radius: 4px;
1188
+ padding: 8px;
1189
+ overflow: hidden;
1190
+ background: #fff;
1191
+ }
1192
+
1193
+ .rd-event-editor-browser .ant-input-affix-wrapper,
1194
+ .rd-event-editor-browser .ant-input {
1195
+ font-size: 12px;
1196
+ }
1197
+
1198
+ .rd-event-editor-browser-tree {
1199
+ flex: 1;
1200
+ min-height: 0;
1201
+ overflow: auto;
1202
+ padding: 4px 0;
1203
+ }
1204
+
1205
+ .rd-event-editor-tree-node {
1206
+ display: inline-flex;
1207
+ align-items: center;
1208
+ gap: 4px;
1209
+ min-height: 20px;
1210
+ font-size: 11px;
1211
+ line-height: 1.1;
1212
+ color: var(--rd-text);
1213
+ }
1214
+
1215
+ .rd-report-tree-root {
1216
+ display: inline-flex;
1217
+ align-items: center;
1218
+ gap: 4px;
1219
+ min-height: 18px;
1220
+ line-height: 1.1;
1221
+ font-weight: 600;
1222
+ color: var(--rd-text);
1223
+ }
1224
+
1225
+ .rd-report-tree-tree .ant-tree-treenode {
1226
+ padding: 0;
1227
+ align-items: center;
1228
+ }
1229
+
1230
+ .rd-report-tree-tree .ant-tree-node-content-wrapper {
1231
+ width: calc(100% - 24px);
1232
+ padding: 1px 2px !important;
1233
+ border-radius: 4px;
1234
+ min-height: 18px;
1235
+ display: inline-flex !important;
1236
+ align-items: center;
1237
+ }
1238
+
1239
+ .rd-report-tree-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
1240
+ background: #e8f1ff !important;
1241
+ }
1242
+
1243
+ .rd-report-tree-tree .ant-tree-switcher {
1244
+ display: flex;
1245
+ align-items: center;
1246
+ justify-content: center;
1247
+ width: 14px;
1248
+ min-width: 14px;
1249
+ height: 18px;
1250
+ color: #7a8593;
1251
+ font-size: 10px;
1252
+ align-self: center;
1253
+ }
1254
+
1255
+ .rd-report-tree-tree .ant-tree-indent-unit {
1256
+ width: 10px !important;
1257
+ }
1258
+
1259
+ .rd-report-tree-node {
1260
+ display: flex;
1261
+ align-items: center;
1262
+ gap: 4px;
1263
+ min-height: 18px;
1264
+ }
1265
+
1266
+ .rd-report-tree-node-main {
1267
+ min-width: 0;
1268
+ display: inline-flex;
1269
+ align-items: center;
1270
+ gap: 4px;
1271
+ color: var(--rd-text);
1272
+ font-size: 11px;
1273
+ line-height: 1.1;
1274
+ }
1275
+
1276
+ .rd-report-tree-node-main span:last-child {
1277
+ min-width: 0;
1278
+ overflow: hidden;
1279
+ text-overflow: ellipsis;
1280
+ white-space: nowrap;
1281
+ }
1282
+
1283
+ .rd-report-tree-band-swatch {
1284
+ width: 10px;
1285
+ height: 10px;
1286
+ border-radius: 1px;
1287
+ border: 1px solid rgba(15, 23, 42, 0.18);
1288
+ box-sizing: border-box;
1289
+ }
1290
+
1291
+ .rd-report-tree-glyph {
1292
+ position: relative;
1293
+ width: 11px;
1294
+ height: 11px;
1295
+ flex: none;
1296
+ box-sizing: border-box;
1297
+ }
1298
+
1299
+ .rd-report-tree-glyph-doc,
1300
+ .rd-report-tree-glyph-text,
1301
+ .rd-report-tree-glyph-richtext,
1302
+ .rd-report-tree-glyph-subreport,
1303
+ .rd-report-tree-glyph-pagenumber {
1304
+ border: 1px solid #7f8ea3;
1305
+ border-radius: 1px;
1306
+ background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
1307
+ }
1308
+
1309
+ .rd-report-tree-glyph-doc::after,
1310
+ .rd-report-tree-glyph-text::after,
1311
+ .rd-report-tree-glyph-richtext::after,
1312
+ .rd-report-tree-glyph-subreport::after,
1313
+ .rd-report-tree-glyph-pagenumber::after {
1314
+ content: "";
1315
+ position: absolute;
1316
+ top: -1px;
1317
+ right: -1px;
1318
+ width: 4px;
1319
+ height: 4px;
1320
+ background: linear-gradient(135deg, #d9e7fb 0%, #7ba7de 100%);
1321
+ clip-path: polygon(0 0, 100% 0, 100% 100%);
1322
+ }
1323
+
1324
+ .rd-report-tree-glyph-report::before,
1325
+ .rd-report-tree-glyph-page::before,
1326
+ .rd-report-tree-glyph-text::before,
1327
+ .rd-report-tree-glyph-richtext::before,
1328
+ .rd-report-tree-glyph-pagenumber::before {
1329
+ content: "";
1330
+ position: absolute;
1331
+ left: 2px;
1332
+ right: 2px;
1333
+ top: 3px;
1334
+ height: 1px;
1335
+ background: #8fa2bb;
1336
+ box-shadow: 0 2px 0 #8fa2bb, 0 4px 0 #8fa2bb;
1337
+ }
1338
+
1339
+ .rd-report-tree-glyph-report {
1340
+ border-color: #5c87bc;
1341
+ }
1342
+
1343
+ .rd-report-tree-glyph-report::before {
1344
+ background: #5c87bc;
1345
+ box-shadow: 0 2px 0 #8fa2bb, 0 4px 0 #8fa2bb;
1346
+ }
1347
+
1348
+ .rd-report-tree-glyph-image {
1349
+ border: 1px solid #7f8ea3;
1350
+ border-radius: 1px;
1351
+ background:
1352
+ linear-gradient(180deg, #dbeeff 0 42%, #f8fbff 42% 100%);
1353
+ }
1354
+
1355
+ .rd-report-tree-glyph-image::before {
1356
+ content: "";
1357
+ position: absolute;
1358
+ left: 1px;
1359
+ right: 1px;
1360
+ bottom: 1px;
1361
+ height: 5px;
1362
+ background: linear-gradient(135deg, transparent 0 22%, #6d9bd0 22% 58%, #4e7bb1 58% 100%);
1363
+ clip-path: polygon(0 100%, 34% 35%, 55% 68%, 74% 46%, 100% 100%);
1364
+ }
1365
+
1366
+ .rd-report-tree-glyph-table {
1367
+ border: 1px solid #7f8ea3;
1368
+ border-radius: 1px;
1369
+ background:
1370
+ linear-gradient(180deg, #cfe0f6 0 2px, transparent 2px 100%),
1371
+ repeating-linear-gradient(to right, transparent 0 2px, #8fa2bb 2px 3px),
1372
+ repeating-linear-gradient(to bottom, transparent 0 2px, #8fa2bb 2px 3px);
1373
+ }
1374
+
1375
+ .rd-report-tree-glyph-chart {
1376
+ border: 1px solid #7f8ea3;
1377
+ border-radius: 1px;
1378
+ background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
1379
+ }
1380
+
1381
+ .rd-report-tree-glyph-chart::before {
1382
+ content: "";
1383
+ position: absolute;
1384
+ left: 2px;
1385
+ bottom: 2px;
1386
+ width: 2px;
1387
+ height: 4px;
1388
+ background: #2f6fed;
1389
+ box-shadow: 3px -2px 0 #16a34a, 6px -5px 0 #f59e0b;
1390
+ }
1391
+
1392
+ .rd-report-tree-glyph-chart::after {
1393
+ content: "";
1394
+ position: absolute;
1395
+ left: 1px;
1396
+ right: 1px;
1397
+ bottom: 1px;
1398
+ height: 1px;
1399
+ background: #8fa2bb;
1400
+ }
1401
+
1402
+ .rd-report-tree-glyph-checkbox {
1403
+ border: 1px solid #7f8ea3;
1404
+ border-radius: 1px;
1405
+ background: #fff;
1406
+ }
1407
+
1408
+ .rd-report-tree-glyph-checkbox::before {
1409
+ content: "";
1410
+ position: absolute;
1411
+ left: 2px;
1412
+ top: 2px;
1413
+ width: 5px;
1414
+ height: 3px;
1415
+ border-left: 1.5px solid #3b7a39;
1416
+ border-bottom: 1.5px solid #3b7a39;
1417
+ transform: rotate(-45deg);
1418
+ }
1419
+
1420
+ .rd-report-tree-glyph-barcode {
1421
+ border: 1px solid #7f8ea3;
1422
+ border-radius: 1px;
1423
+ background:
1424
+ linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%),
1425
+ repeating-linear-gradient(
1426
+ to right,
1427
+ transparent 0 1px,
1428
+ #2a3442 1px 2px,
1429
+ transparent 2px 3px,
1430
+ #2a3442 3px 5px
1431
+ );
1432
+ background-blend-mode: normal;
1433
+ }
1434
+
1435
+ .rd-report-tree-glyph-barcode::before {
1436
+ content: "";
1437
+ position: absolute;
1438
+ inset: 2px 1px;
1439
+ background: repeating-linear-gradient(
1440
+ to right,
1441
+ #2a3442 0 1px,
1442
+ transparent 1px 2px,
1443
+ #2a3442 2px 4px,
1444
+ transparent 4px 5px
1445
+ );
1446
+ }
1447
+
1448
+ .rd-report-tree-glyph-qrcode {
1449
+ border: 1px solid #7f8ea3;
1450
+ border-radius: 1px;
1451
+ background:
1452
+ linear-gradient(#2a3442 0 0) 2px 2px / 4px 4px no-repeat,
1453
+ linear-gradient(#2a3442 0 0) 9px 2px / 4px 4px no-repeat,
1454
+ linear-gradient(#2a3442 0 0) 2px 9px / 4px 4px no-repeat,
1455
+ linear-gradient(#2a3442 0 0) 8px 8px / 2px 2px no-repeat,
1456
+ linear-gradient(#2a3442 0 0) 12px 10px / 2px 4px no-repeat,
1457
+ #ffffff;
1458
+ }
1459
+
1460
+ .rd-report-tree-glyph-panel,
1461
+ .rd-report-tree-glyph-shape {
1462
+ border: 1px solid #7f8ea3;
1463
+ border-radius: 1px;
1464
+ background: #f7f9fc;
1465
+ }
1466
+
1467
+ .rd-report-tree-glyph-line::before {
1468
+ content: "";
1469
+ position: absolute;
1470
+ left: 1px;
1471
+ right: 1px;
1472
+ top: 5px;
1473
+ height: 1px;
1474
+ background: #6d7b8d;
1475
+ transform: rotate(-35deg);
1476
+ transform-origin: center;
1477
+ }
1478
+
1479
+ .rd-report-tree-glyph-datetime {
1480
+ border: 1px solid #7f8ea3;
1481
+ border-radius: 1px;
1482
+ background: linear-gradient(180deg, #d9e7fb 0 3px, #ffffff 3px 100%);
1483
+ }
1484
+
1485
+ .rd-report-tree-glyph-datetime::before {
1486
+ content: "";
1487
+ position: absolute;
1488
+ left: 2px;
1489
+ right: 2px;
1490
+ top: 5px;
1491
+ height: 1px;
1492
+ background: #8fa2bb;
1493
+ box-shadow: 0 2px 0 #8fa2bb;
1494
+ }
1495
+
1496
+ .rd-report-tree-band-reportTitle { background: #b9895b; }
1497
+ .rd-report-tree-band-reportSummary { background: #8b6a4b; }
1498
+ .rd-report-tree-band-pageHeader { background: #8fd0a0; }
1499
+ .rd-report-tree-band-pageFooter { background: #94bff3; }
1500
+ .rd-report-tree-band-header { background: #b9c8ee; }
1501
+ .rd-report-tree-band-footer { background: #cfd7ea; }
1502
+ .rd-report-tree-band-columnHeader { background: #c4d4f5; }
1503
+ .rd-report-tree-band-columnFooter { background: #d8dff0; }
1504
+ .rd-report-tree-band-groupHeader { background: #7dc8d4; }
1505
+ .rd-report-tree-band-groupFooter { background: #a89de8; }
1506
+ .rd-report-tree-band-data { background: #7eb3ea; }
1507
+ .rd-field-option {
1508
+ width: 100%;
1509
+ height: 28px;
1510
+ padding: 0 8px;
1511
+ text-align: left;
1512
+ color: var(--rd-text);
1513
+ background: #fff;
1514
+ border: 1px solid var(--rd-border);
1515
+ border-radius: 4px;
1516
+ cursor: pointer;
1517
+ }
1518
+
1519
+ .rd-field-option-active {
1520
+ color: #0f4c9c;
1521
+ background: #e8f1ff;
1522
+ border-color: var(--rd-accent);
1523
+ }
1524
+
1525
+ .rd-status-bar {
1526
+ display: flex;
1527
+ align-items: center;
1528
+ gap: 0;
1529
+ height: 26px;
1530
+ border-top: 1px solid var(--rd-border-strong);
1531
+ background: #f8fafc;
1532
+ color: var(--rd-muted);
1533
+ font-size: 11px;
1534
+ overflow: hidden;
1535
+ }
1536
+
1537
+ .rd-status-item {
1538
+ height: 100%;
1539
+ display: flex;
1540
+ align-items: center;
1541
+ padding: 0 10px;
1542
+ border-right: 1px solid var(--rd-border);
1543
+ white-space: nowrap;
1544
+ }
1545
+
1546
+ .rd-status-spacer {
1547
+ flex: 1;
1548
+ min-width: 12px;
1549
+ }
1550
+
1551
+ .rd-event-editor-modal-fullscreen .ant-modal {
1552
+ top: 0 !important;
1553
+ max-width: none;
1554
+ height: 100vh;
1555
+ margin: 0;
1556
+ padding-bottom: 0;
1557
+ }
1558
+
1559
+ .rd-event-editor-modal-fullscreen .ant-modal-container,
1560
+ .rd-event-editor-modal-fullscreen .ant-modal-content {
1561
+ height: 100%;
1562
+ display: flex;
1563
+ flex-direction: column;
1564
+ }
1565
+
1566
+ .rd-event-editor-modal-fullscreen .ant-modal-body {
1567
+ flex: 1;
1568
+ min-height: 0;
1569
+ overflow: hidden;
1570
+ }