-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.css
More file actions
1424 lines (1198 loc) · 32.9 KB
/
App.css
File metadata and controls
1424 lines (1198 loc) · 32.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Add a line to group the properties inside the dialog box */
hr.separator-line {
border: none;
height: 1px;
background: #C4C7C5;
margin: 12px 0px;
}
.image-container {
display: flex;
justify-content: center;
align-items: center;
}
.material3 .profile-image {
background-color: rgba(79, 70, 229);
}
.profile-image {
display: flex;
justify-content: center;
align-items: center;
width: 28px;
height: 28px;
border-radius: 50%;
background-color: #e3165b;
}
.name {
font-size: 14px;
font-weight: 500;
}
.email {
font-size: 14px;
font-weight: 400;
}
.Mapimage .e-image {
height: 13px;
width: 14px;
}
/* Move the settings icon to display at the end of the column header. */
.iconMarginAlign {
width: 35px;
}
.parent-Grid-Container {
height: calc(96vh - 50px);
border: 1px solid #c4c7c5;
margin-top: 1px;
margin-left: 5px;
margin-right: 5px;
}
#overalContainer {
margin-top: 5px;
}
.e-groupfooterrow .e-summarycell {
background: #FFEFE3 !important;
}
tfoot .e-summaryrow .e-summarycell {
background: #E3F1FF !important;
}
tfoot .e-indentcell {
background: #E3F1FF !important;
}
/* To apply a right-side footer color that fills the gap in the last cell, ensure the footer spans the full width of the grid, including any empty space after the last column. */
.e-grid .e-gridfooter,
.e-grid .e-gridfooter .e-leftfreeze,
.e-grid .e-gridfooter .e-rightfreeze,
.e-grid .e-gridfooter .e-fixedfreeze {
background: #E3F1FF !important;
}
/* Icons are used in the menu to hide the default arrow indicator.*/
.custom-menu-column-name .e-menu-item[aria-label="Column Name"] .e-caret,
.custom-menu-column-date .e-menu-item[aria-label="Column Date"] .e-caret,
.custom-menu-column-number .e-menu-item[aria-label="Column Number"] .e-caret,
.custom-menu-column-verified .e-menu-item[aria-label="Column Verified"] .e-caret,
.chooser-settings .e-menu-item[aria-label="Column Chooser Menu"] .e-caret,
.custom-menu-column-clipmode .e-menu-item[aria-label="Column Name"] .e-caret,
.footer-sum .e-menu-item[aria-label="Footer Menu"] .e-caret,
.footer-avg .e-menu-item[aria-label="Footer Menu"] .e-caret {
display: none !important;
}
/* The dialog box is opened to display the search container. */
#dialogbox_dialog-content {
overflow: hidden;
}
.filter-container {
margin-left: 0px;
display: flex;
flex-direction: column;
gap: 12px;
width: 100%;
}
.filter-row {
display: flex;
justify-content: space-between;
gap: 15px;
}
.search-column-group,
.search-operator-group {
font-size: 12px;
font-weight: 500;
display: flex;
flex-direction: column;
flex: 1;
}
.check-text {
margin-top: 5px;
font-size: 12px;
font-weight: 500;
display: flex;
flex-direction: column;
}
.checkbox-group {
margin-top: 10px;
align-items: center;
font-size: 14px;
font-weight: 400;
}
.checkbox-group label {
font-size: 14px;
font-weight: 400;
}
/* The checkbox and its label text are not vertically aligned, so CSS ia applied to center-align properly. */
.checkbox-container {
display: flex;
align-items: center;
gap: 4px;
/* Space between elements */
}
/* The 'Clear Filter' and 'Search' buttons are added using the Chip component, and the chip border is hidden using the following CSS. */
.e-chip {
border: 0px !important;
}
/* The 'Clear Filter' and 'Search' buttons are implemented using the Chip component and are aligned to the right side using CSS. */
#chip-choice {
display: flex;
justify-content: flex-end;
padding: 10px;
gap: 8px;
}
/* The checkbox background and border color are hidden using custom CSS styling. */
.custom-checkbox .e-frame {
background-color: transparent !important;
border-color: transparent !important;
}
/* Change Tick (Checkmark) Color */
.custom-checkbox .e-check::after {
color: #646068 !important;
}
/* Change Hover Effect */
.custom-checkbox:hover .e-frame {
background-color: transparent !important;
border-color: transparent !important;
}
.custom-checkbox .e-check::before {
color: #646068 !important;
font-size: 16px;
font-weight: 400;
}
.exclamation-container {
display: inline-flex;
font-size: 14px !important;
font-weight: 400;
}
.single-column-exclamation-container {
display: inline-flex;
align-items: center;
font-size: 14px !important;
font-weight: 400;
margin-left: 8px;
}
/* The text style within the information icon is customized using CSS for better visual alignment and readability. */
.e-icons .e-circle-info .icon {
font-size: 14px !important;
font-weight: 400;
}
/* The information icon is not aligned properly with the checkbox and its label text, so it is adjusted by setting the margin-top property using custom CSS. */
.custom-checkbox .e-check,
.custom-checkbox .e-label {
margin-top: -8px;
}
#example_dialog .e-dlg-header-content {
border-bottom: 1px solid #ccc;
padding-bottom: 8px;
}
/* Spacing is applied between the 'Save' and 'Apply' buttons in the dialog box footer using custom CSS settings. */
#example_dialog .e-dialog .e-footer-content {
padding-top: 15px !important;
}
#example_dialog .e-footer-content {
border-top: 1px solid #ccc;
/* Line above footer */
}
#listSidebar {
width: 175px !important;
height: 100% !important;
}
#example_dialog_dialog-content.e-dlg-content {
padding: 0px !important;
}
#example_dialog_dialog-content>div {
height: 100% !important;
}
#sblist-wrapper,
#sidelistwrapper,
.listmaincontent,
#listSidebar,
.e-content-animation {
height: 100% !important;
}
#listContent {
height: 100% !important;
overflow-x: auto;
white-space: nowrap;
}
#sblist-wrapper .listcontent {
font-size: 14px;
padding: 15px;
margin-left: 170px;
}
.listmaincontent .e-sidebar-context {
overflow: hidden;
}
#sblist-wrapper.control-section {
padding: 0;
height: 100% !important;
}
#sblist-wrapper #left {
float: left;
width: 30px;
height: 47px;
}
#sblist-wrapper .sidebar-list {
z-index: 20 !important;
}
#sblist-wrapper .e-toolbar .e-icons {
font-size: 20px;
}
#sblist-wrapper .e-tbar-menu-icon:before {
content: '\e914';
font-family: 'sbicons';
}
#sidebarList {
display: inline-flex;
width: 100%;
}
#sidelistwrapper {
height: 100% !important;
}
/* CSS is used to customize the chip in the Payment column of the Grid to make it look better. */
.chip-paid,
.chip-not-paid {
display: flex;
align-items: center;
padding: 5px 10px;
border-radius: 16px;
border: 2px solid #C4C7C5 !important;
/* Border for chip */
font-size: 14px;
font-weight: bold;
}
.chip-paid::before,
.chip-not-paid::before {
content: "";
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
margin-right: 6px;
}
.chip-paid {
background-color: #e6f4ea;
/* Light green */
color: #15803d !important;
}
.chip-paid::before {
background-color: #15803d;
/* Green dot */
}
.chip-not-paid {
background-color: #fdecea;
/* Light red */
color: #b91c1c !important;
}
.chip-not-paid::before {
background-color: #b91c1c;
/* Red dot */
}
/* CSS is used to customize the rating in the Rating column of the Grid to make it look better. */
.e-rating-container.e-custom-rating .e-rating-item-list:hover .e-rating-item-container .e-rating-icon,
.e-rating-container.e-custom-rating .e-rating-item-container .e-rating-icon {
background: linear-gradient(to right, #F29527 var(--rating-value), #d8d7d4 var(--rating-value));
background-clip: text;
-webkit-background-clip: text;
}
.e-rating-container.e-custom-rating.e-rtl .e-rating-item-list:hover .e-rating-item-container .e-rating-icon,
.e-rating-container.e-custom-rating.e-rtl .e-rating-item-container .e-rating-icon {
background: linear-gradient(to right, #F29527 var(--rating-value), #d8d7d4 var(--rating-value));
background-clip: text;
-webkit-background-clip: text;
}
.e-rating-container.e-custom-rating .e-rating-item-list:hover .e-rating-item-container .e-rating-icon,
.e-rating-container.e-custom-rating .e-rating-item-container .e-rating-icon {
/* To change rating symbol border color */
-webkit-text-stroke: 0px #F29527;
}
/* The selected value in the Payment dropdown is not center-aligned, so text alignment needs to be adjusted using CSS. */
.e-remain {
padding-top: 5px !important;
}
/* spacing issue between the Dialog Settings and Column Chooser icons in the Grid's toolbar that needs to be adjusted */
.material3 .chooser-settings.e-menu-wrapper ul .e-menu-item.e-menu-caret-icon,
.material3 .chooser-settings.e-menu-container ul .e-menu-item.e-menu-caret-icon,
.material3-dark .chooser-settings.e-menu-wrapper ul .e-menu-item.e-menu-caret-icon,
.material3-dark .chooser-settings.e-menu-container ul .e-menu-item.e-menu-caret-icon {
padding-right: 0px !important;
padding: 0px 10px 0px 10px !important;
}
/* single column settings icon postion adjustment */
.iconviewdiv {
margin-top: 6px;
}
.fluent-dark .country_image,
.fluent .country_image {
margin-left: 10px;
}
.treeviewdiv {
margin-top: 2px;
}
.selectchip {
font-size: 12px !important;
font-weight: 500;
}
/* To remove the grey background color when hovering over the icon, and to prevent the hover effect from appearing on the icon after the menu is opened and a menu item is hovered, apply custom CSS to override the default hover and focus styles. */
.custom-menu-column-date .e-menu-item:hover,
.custom-menu-column-date .e-menu-item.e-hover,
.custom-menu-column-date .e-menu-item.e-focused,
.custom-menu-column-date .e-menu-item.e-selected,
.custom-menu-column-number .e-menu-item:hover,
.custom-menu-column-number .e-menu-item.e-hover,
.custom-menu-column-number .e-menu-item.e-focused,
.custom-menu-column-number .e-menu-item.e-selected,
.custom-menu-column-verified .e-menu-item:hover,
.custom-menu-column-verified .e-menu-item.e-hover,
.custom-menu-column-verified .e-menu-item.e-focused,
.custom-menu-column-verified .e-menu-item.e-selected .custom-menu-column-clipmode .e-menu-item:hover,
.custom-menu-column-clipmode .e-menu-item.e-hover,
.custom-menu-column-clipmode .e-menu-item.e-focused,
.custom-menu-column-clipmode .e-menu-item.e-selected {
background-color: transparent !important;
color: inherit !important;
}
.footer-sum .e-menu-item[aria-label="Sum"] .e-caret,
.footer-sum .e-menu-item[aria-label="Average"] .e-caret,
.footer-sum .e-menu-item[aria-label="Min"] .e-caret,
.footer-sum .e-menu-item[aria-label="Max"] .e-caret,
.footer-sum .e-menu-item[aria-label="Count"] .e-caret {
margin-top: 3px !important;
}
.fluent-dark .footer-sum .e-menu-item[aria-label="Sum"],
.fluent .footer-sum .e-menu-item[aria-label="Sum"],
.fluent-dark .footer-sum .e-menu-item[aria-label="Average"],
.fluent .footer-sum .e-menu-item[aria-label="Average"],
.fluent-dark .footer-sum .e-menu-item[aria-label="Min"],
.fluent .footer-sum .e-menu-item[aria-label="Min"],
.fluent-dark .footer-sum .e-menu-item[aria-label="Max"],
.fluent .footer-sum .e-menu-item[aria-label="Max"],
.fluent-dark .footer-sum .e-menu-item[aria-label="Count"],
.fluent .footer-sum .e-menu-item[aria-label="Count"] {
margin-top: -8px !important;
}
.fluent-dark .footer-sum .e-menu-item[aria-label="Sum"] .e-caret,
.fluent .footer-sum .e-menu-item[aria-label="Sum"] .e-caret,
.fluent-dark .footer-sum .e-menu-item[aria-label="Average"] .e-caret,
.fluent .footer-sum .e-menu-item[aria-label="Average"] .e-caret,
.fluent-dark .footer-sum .e-menu-item[aria-label="Min"] .e-caret,
.fluent .footer-sum .e-menu-item[aria-label="Average"] .e-caret,
.fluent-dark .footer-sum .e-menu-item[aria-label="Max"] .e-caret,
.fluent .footer-sum .e-menu-item[aria-label="Max"] .e-caret,
.fluent-dark .footer-sum .e-menu-item[aria-label="Count"] .e-caret,
.fluent .footer-sum .e-menu-item[aria-label="Count"] .e-caret {
margin-top: 2px !important;
}
/* When the RTL checkbox is enabled in the single-column settings, the position shifts slightly downward, so a top margin adjustment is required to correct the alignment. */
.grid-line .e-checkbox-wrapper.e-rtl .e-frame,
.custom-menu-column-verified .e-checkbox-wrapper.e-rtl .e-frame,
.custom-menu-column-clipmode .e-checkbox-wrapper.e-rtl .e-frame,
.custom-menu-column-number .e-checkbox-wrapper.e-rtl .e-frame,
.custom-menu-column-date .e-checkbox-wrapper.e-rtl .e-frame,
.footer-sum .e-checkbox-wrapper.e-rtl .e-frame {
margin-top: -10px;
}
.templateText {
align-items: center;
display: flex;
justify-content: center;
}
.groupCaptionMinText {
background-color: #205107;
color: white;
padding: 4px 8px;
border-radius: 31px;
}
.groupCaptionMaxText {
background-color: #B3261E;
color: white;
padding: 4px 8px;
border-radius: 31px;
}
.settingsIconAlignment {
display: flex;
justify-content: space-between;
align-items: center;
}
.settingsIconText {
display: flex;
align-items: center;
flex: 1;
gap: 6px;
}
.iconAlignment {
display: inline-flex;
gap: 5px;
align-items: center;
}
.e-grid .e-summarycell[index="12"] {
padding: 0px 0px;
}
/* When focusing on the command column using the keyboard, the top margin is not properly aligned. */
.e-unboundcelldiv .e-btn.e-icon-btn {
padding: 5px !important;
}
/* Hide the toggle button for a specific column even when the "showToggleButton" option is enabled in the grouping settings. */
th[aria-colindex="12"] .e-grptogglebtn,
th[aria-colindex="10"] .e-grptogglebtn,
th[aria-colindex="11"] .e-grptogglebtn,
th[aria-colindex="8"] .e-grptogglebtn,
th[aria-colindex="15"] .e-grptogglebtn {
display: none !important;
}
/* When grouping the columns using the toggle button, the arrow icon for the grouped column is not being displayed. */
.e-nextgroup {
display: inline-block !important;
}
/* Remove the hover effect from the menu item specifically used for the aggregate section. */
.footer-sum .e-menu-item[aria-label="Sum"]:hover,
.footer-sum .e-menu-item[aria-label="Sum"].e-hover,
.footer-sum .e-menu-item[aria-label="Sum"].e-focused,
.footer-sum .e-menu-item[aria-label="Sum"].e-selected,
.footer-sum .e-menu-item[aria-label="Average"]:hover,
.footer-sum .e-menu-item[aria-label="Average"].e-hover,
.footer-sum .e-menu-item[aria-label="Average"].e-focused,
.footer-sum .e-menu-item[aria-label="Average"].e-selected,
.footer-sum .e-menu-item[aria-label="Min"]:hover,
.footer-sum .e-menu-item[aria-label="Min"].e-hover,
.footer-sum .e-menu-item[aria-label="Min"].e-focused,
.footer-sum .e-menu-item[aria-label="Min"].e-selected .footer-sum .e-menu-item[aria-label="Max"]:hover,
.footer-sum .e-menu-item[aria-label="Max"].e-hover,
.footer-sum .e-menu-item[aria-label="Max"].e-focused,
.footer-sum .e-menu-item[aria-label="Max"].e-selected,
.footer-sum .e-menu-item[aria-label="Count"]:hover,
.footer-sum .e-menu-item[aria-label="Count"].e-hover,
.footer-sum .e-menu-item[aria-label="Count"].e-focused,
.footer-sum .e-menu-item[aria-label="Count"].e-selected {
background-color: transparent !important;
color: inherit !important;
}
/* image and text alignment for the empty records */
.emptyRecordTemplate {
text-align: left;
}
.e-emptyRecord {
display: block;
margin-left: 120px;
}
/* The alignment of the intermediate checkbox in the Verified column when RTL mode is enabled. */
.e-filterUi_input .e-checkbox-wrapper.e-rtl {
display: flex;
justify-content: center;
align-items: center;
}
.e-filterUi_input .e-checkbox-wrapper {
display: flex;
justify-content: center;
}
.e-dlg-content {
height: 100% !important;
}
body.material3-dark,
body.fluent-dark {
background-color: black;
}
body.material3,
body.fluent {
background-color: white;
}
.material3-dark .labelDetails,
.fluent-dark .labelDetails {
color: white;
}
.material3 .labelDetails,
.fluent .labelDetails {
color: black;
}
.walkthrough-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 999;
pointer-events: none;
}
.walkthrough-tooltip-top-right,
.walkthrough-tooltip-top-right-smaller,
.walkthrough-tooltip-top-left,
.walkthrough-tooltip-top-left-center,
.walkthrough-tooltip-top-left-center-smaller,
.walkthrough-tooltip-top-left-smaller,
.walkthrough-tooltip-right-center {
position: absolute;
background: #f9fafb;
width: 350px;
padding: 10px;
border-radius: 6px !important;
box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
z-index: 1000;
max-width: 400px;
}
.walkthrough-tooltip-top-right::before {
content: "";
position: absolute;
bottom: 100%;
right: 12px;
border-width: 8px;
border-style: solid;
border-color: transparent transparent #f9fafb transparent;
}
@media (min-width: 768px) and (max-width: 895px) {
.walkthrough-tooltip-top-right::before {
right: 66px;
}
}
/* Between 896px and 1200px → right: 12px */
@media (min-width: 896px) and (max-width: 1200px) {
.walkthrough-tooltip-top-right::before {
right: 13px;
}
}
.walkthrough-tooltip-top-left-smaller::before {
content: "";
position: absolute;
bottom: 100%;
right: 76%;
border-width: 8px;
border-style: solid;
border-color: transparent transparent #f9fafb transparent;
}
.walkthrough-tooltip-top-right-smaller::before {
content: "";
position: absolute;
bottom: 100%;
right: 19%;
border-width: 8px;
border-style: solid;
border-color: transparent transparent #f9fafb transparent;
}
.walkthrough-tooltip-top-left-center-smaller::before {
content: "";
position: absolute;
bottom: 100%;
right: 64%;
border-width: 8px;
border-style: solid;
border-color: transparent transparent #f9fafb transparent;
}
.walkthrough-tooltip-top-left-center::before {
content: "";
position: absolute;
bottom: 100%;
right: 60%;
border-width: 8px;
border-style: solid;
border-color: transparent transparent #f9fafb transparent;
}
.walkthrough-tooltip-top-left::before {
content: "";
position: absolute;
bottom: 100%;
right: 94%;
border-width: 8px;
border-style: solid;
border-color: transparent transparent #f9fafb transparent;
}
.walkthrough-tooltip-right-center::before {
content: "";
position: absolute;
top: 84%;
left: 100%;
transform: translateY(-50%);
border-width: 8px;
border-style: solid;
border-color: transparent transparent transparent #f9fafb;
}
.walkthrough-highlight {
background-color: #f9fafb !important;
position: relative;
z-index: 1001 !important;
box-shadow: 0 0 0 1px black;
pointer-events: auto !important;
}
.tooltip-close {
position: relative;
float: right;
z-index: 9999;
top: -7px;
/* distance from the top */
right: -2px;
/* distance from the right */
font-size: 22px;
cursor: pointer;
color: #333;
/* color of the close icon */
background: none;
border: none;
padding: 0;
width: 20px;
height: 20px;
}
.walkthrough-controls {
display: flex;
margin-top: 10px;
text-align: right;
justify-content: space-between;
gap: 10px;
}
.walkthrough-controls button {
padding: 8px 8px;
min-width: 80px;
}
.e-unboundcell {
padding-top: 0px !important;
padding-bottom: 0px !important;
}
.walkthrough-tooltip {
background: #f9f9f9;
min-width: 300px;
}
.walkthrough-arrow {
cursor: pointer;
font-size: 24px;
}
.walkthrough-dots {
display: flex;
gap: 8px;
}
.walkthrough-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: gray;
}
.walkthrough-dot.active {
background-color: blue;
}
/* Left-align and right-align Back and Next buttons */
.walkthrough-controls {
display: flex;
justify-content: space-between;
width: 100%;
}
/* Set the text color for the aggregate sum in dark theme */
.material3-dark #aggregate-menu .setting-row,
.fluent-dark #aggregate-menu .setting-row {
color: black;
}
/* Set the menu arrow color for the aggregate sum in dark theme */
.material3-dark #aggregate-menu .e-caret,
.fluent-dark #aggregate-menu .e-caret {
color: black;
}
/* Adjust the alignment and positioning of the gridline menu icon in the toolbar to ensure consistent spacing and visual balance. */
#gridLines {
margin-top: 6px !important;
}
.fluent #gridLines,
.fluent-dark #gridLines {
margin-top: 2px !important;
}
.e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer) {
padding: 4px 4px 4px 4px;
}
.centered-button {
display: block;
margin: 0 auto;
}
/* After an image is browsed, the image size text and the delete icon are added. */
.e-upload-files {
display: none;
}
.image-list {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 4px 8px;
border: 1px solid #ddd;
margin-top: 5px;
margin-bottom: 5px;
border-radius: 4px;
background-color: #f9f9f9;
}
.file-info {
display: flex;
align-items: center;
flex: 1;
}
.file-name {
font-weight: 500;
margin-right: 10px;
color: #333;
}
.file-size {
color: #666;
font-size: 12px;
margin-right: auto;
}
.delete-icon {
color: #d32f2f;
font-size: 16px;
padding: 4px;
}
#delteIcon {
cursor: pointer;
}
.fluent #dialogbox.e-dialog .e-dlg-content,
.fluent-dark #dialogbox.e-dialog .e-dlg-content {
padding: 7px 7px 0 7px !important;
}
.fluent #dialogbox.e-dialog .e-footer-content,
.fluent-dark #dialogbox.e-dialog .e-footer-content {
padding: 10px !important;
}
/* reduce the tab focus border thickness in the search dialog box from 4px to 2px. */
.fluent #dialogbox.e-chip-list.e-chip.e-focused,
.e-chip-list .e-chip.e-focused,
.fluent-dark #dialogbox.e-chip-list.e-chip.e-focused,
.e-chip-list .e-chip.e-focused {
box-shadow: 0px 0px 0px 2px #A8A7A7 !important;
}
/* The left icons in the toolbar were rendering lower than expected, so a top offset was added to slightly shift the toolbar upwards. */
.fluent #overviewgrid_toolbarItems.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
.fluent-dark #overviewgrid_toolbarItems.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
top: -7px !important;
}
/* The pager padding is rendering outside the grid container, so the top and bottom padding were reduced to ensure it fits properly within the container. */
.fluent .e-pager,
.fluent-dark .e-pager {
padding-top: 2px !important;
padding-bottom: 2px !important;
}
/* The position of the grouping arrow symbol is misaligned in the Show Drop Area section. */
.fluent .e-grid .e-group-animate.e-groupdroparea .e-nextgroup,
.fluent-dark .e-grid .e-group-animate.e-groupdroparea .e-nextgroup {
margin-top: 14px !important;
}
/* The grouping drag icon is not displayed correctly within the Show Drop Area. */
.fluent .e-grid .e-group-animate .e-icon-drag.e-icons,
.fluent-dark .e-grid .e-group-animate .e-icon-drag.e-icons {
margin-top: 6px !important;
}
/* The position of the grouping arrow symbol is misaligned in the Show Drop Area section while enabling RTL. */
.fluent .e-grid.e-rtl .e-group-animate.e-groupdroparea .e-nextgroup,
.fluent-dark .e-grid.e-rtl .e-group-animate.e-groupdroparea .e-nextgroup {
margin-top: 22px !important;
}
.checkbox-group > .treeviewdiv .e-checkbox-wrapper {
padding: 8px 0px 8px 0px !important;
}
.dropdown-with-label {
display: flex;
align-items: center;
justify-content: space-between;
padding-right: 24px;
width: 100%;
}
.e-rtl .dropdown-with-label {
padding-right: 0px;
}
.sf-icon-male, .sf-icon-female {
color: white;
}
#dialogbox.e-dialog .e-footer-content, #dialogbox.e-dialog .e-dlg-content {
padding: 10px !important;
}
.e-checkbox-wrapper label[for="Verified"] {
margin: 0px 10px 0px 0px !important;
}
.e-rtl .e-checkbox-wrapper label[for="Verified"] {
margin: 0px 0px 0px 10px !important;
}
/* The checkbox values within the dropdown for the payment status are not properly aligned.*/
.e-ddt.e-popup .e-selectall-parent,
.e-treeview .e-ul {
padding: 0px 9px 0px 0px !important;
}
/* When the browser is in responsive mode, all banner text is grouped into a popup menu for better mobile usability */
.popup-menu {
top: 60px;
right: 5px;
background-color: #111;
padding: 15px;
border-radius: 5px;
z-index: 1000;
}
/* When the browser switches to responsive mode, all banner text is moved into a popup menu, with hyperlink tags styled for optimal appearance and interaction on smaller screens */
.popup-menu a {
display: block;
color: white;
text-decoration: none;
margin: 5px 0;
}
.githubdemo {
margin-top: 2px !important;
}
.mobile-only .githubdemo a {
margin-left: -5px !important;
}
/* Customization applied to the app bar for layout and styling */
.appbar {
height: 60px;
}
/* Styling and customization for the div element containing the Syncfusion logo */
.syncfusion-logo {
float: left;
width: 170px !important;
padding: 11px 0;
}
/* Image is rendered as a hyperlink with custom styling applied */
.sync-logo-img {
background-repeat: no-repeat;
background-image: url(https://cdn.syncfusion.com/content/images/Logo/Logo_150dpi.png);
background-size: 160px 36px;
position: absolute;