@adaptabletools/adaptable-react-aggrid 10.0.4-canary.3 → 11.0.0-canary.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.
- package/base.css +385 -95
- package/index.css +448 -104
- package/package.json +5 -4
- package/src/components/AdaptableReact.d.ts +3 -2
- package/src/components/AdaptableReact.js +1 -1
package/base.css
CHANGED
|
@@ -372,22 +372,30 @@
|
|
|
372
372
|
--rdp-background-color-dark: #180270;
|
|
373
373
|
/* Outline border for focused elements */
|
|
374
374
|
--rdp-outline: 2px solid var(--rdp-accent-color);
|
|
375
|
+
/* Outline border for focused and selected elements */
|
|
376
|
+
--rdp-outline-selected: 2px solid rgba(0, 0, 0, 0.75);
|
|
375
377
|
}
|
|
376
378
|
.rdp {
|
|
377
|
-
display: inline-block;
|
|
378
|
-
font-size: 1rem;
|
|
379
379
|
margin: 1em;
|
|
380
380
|
}
|
|
381
381
|
/* Hide elements for devices that are not screen readers */
|
|
382
382
|
.rdp-vhidden {
|
|
383
|
-
|
|
384
|
-
clip: rect(1px, 1px, 1px, 1px);
|
|
385
|
-
height: 1px;
|
|
386
|
-
overflow: hidden;
|
|
383
|
+
box-sizing: border-box;
|
|
387
384
|
padding: 0;
|
|
388
|
-
|
|
385
|
+
margin: 0;
|
|
386
|
+
background: transparent;
|
|
387
|
+
border: 0;
|
|
388
|
+
-moz-appearance: none;
|
|
389
|
+
-webkit-appearance: none;
|
|
390
|
+
appearance: none;
|
|
391
|
+
position: absolute !important;
|
|
389
392
|
top: 0;
|
|
390
|
-
width: 1px;
|
|
393
|
+
width: 1px !important;
|
|
394
|
+
height: 1px !important;
|
|
395
|
+
padding: 0 !important;
|
|
396
|
+
overflow: hidden !important;
|
|
397
|
+
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
398
|
+
border: 0 !important
|
|
391
399
|
}
|
|
392
400
|
/* Buttons */
|
|
393
401
|
.rdp-button_reset {
|
|
@@ -477,13 +485,13 @@
|
|
|
477
485
|
.rdp-nav {
|
|
478
486
|
white-space: nowrap;
|
|
479
487
|
}
|
|
480
|
-
.rdp-multiple_months .rdp-
|
|
488
|
+
.rdp-multiple_months .rdp-caption_start .rdp-nav {
|
|
481
489
|
position: absolute;
|
|
482
490
|
top: 50%;
|
|
483
491
|
left: 0;
|
|
484
492
|
transform: translateY(-50%);
|
|
485
493
|
}
|
|
486
|
-
.rdp-multiple_months .rdp-
|
|
494
|
+
.rdp-multiple_months .rdp-caption_end .rdp-nav {
|
|
487
495
|
position: absolute;
|
|
488
496
|
top: 50%;
|
|
489
497
|
right: 0;
|
|
@@ -529,8 +537,8 @@
|
|
|
529
537
|
opacity: unset;
|
|
530
538
|
color: unset;
|
|
531
539
|
}
|
|
532
|
-
.rdp-dropdown:focus:not([disabled])
|
|
533
|
-
.rdp-dropdown:active:not([disabled])
|
|
540
|
+
.rdp-dropdown:focus:not([disabled])+.rdp-caption_label,
|
|
541
|
+
.rdp-dropdown:active:not([disabled])+.rdp-caption_label {
|
|
534
542
|
border: var(--rdp-outline);
|
|
535
543
|
border-radius: 6px;
|
|
536
544
|
background-color: var(--rdp-background-color);
|
|
@@ -595,26 +603,78 @@
|
|
|
595
603
|
color: white;
|
|
596
604
|
background-color: var(--rdp-accent-color);
|
|
597
605
|
}
|
|
598
|
-
.rdp-
|
|
606
|
+
.rdp-day_selected:focus:not([disabled]) {
|
|
607
|
+
border: var(--rdp-outline-selected);
|
|
608
|
+
}
|
|
609
|
+
.rdp:not([dir='rtl']) .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
599
610
|
border-top-right-radius: 0;
|
|
600
611
|
border-bottom-right-radius: 0;
|
|
601
612
|
}
|
|
602
|
-
.rdp-day_range_end {
|
|
613
|
+
.rdp:not([dir='rtl']) .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
614
|
+
border-top-left-radius: 0;
|
|
615
|
+
border-bottom-left-radius: 0;
|
|
616
|
+
}
|
|
617
|
+
.rdp[dir='rtl'] .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
603
618
|
border-top-left-radius: 0;
|
|
604
619
|
border-bottom-left-radius: 0;
|
|
605
620
|
}
|
|
621
|
+
.rdp[dir='rtl'] .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
622
|
+
border-top-right-radius: 0;
|
|
623
|
+
border-bottom-right-radius: 0;
|
|
624
|
+
}
|
|
606
625
|
.rdp-day_range_end.rdp-day_range_start {
|
|
607
626
|
border-radius: 100%;
|
|
608
627
|
}
|
|
609
628
|
.rdp-day_range_middle {
|
|
610
629
|
border-radius: 0;
|
|
611
630
|
}
|
|
631
|
+
:root {
|
|
632
|
+
--toastify-color-light: #fff;
|
|
633
|
+
--toastify-color-dark: #121212;
|
|
634
|
+
--toastify-color-info: #3498db;
|
|
635
|
+
--toastify-color-success: #07bc0c;
|
|
636
|
+
--toastify-color-warning: #f1c40f;
|
|
637
|
+
--toastify-color-error: #e74c3c;
|
|
638
|
+
--toastify-color-transparent: rgba(255, 255, 255, 0.7);
|
|
639
|
+
--toastify-icon-color-info: var(--toastify-color-info);
|
|
640
|
+
--toastify-icon-color-success: var(--toastify-color-success);
|
|
641
|
+
--toastify-icon-color-warning: var(--toastify-color-warning);
|
|
642
|
+
--toastify-icon-color-error: var(--toastify-color-error);
|
|
643
|
+
--toastify-toast-width: 320px;
|
|
644
|
+
--toastify-toast-background: #fff;
|
|
645
|
+
--toastify-toast-min-height: 64px;
|
|
646
|
+
--toastify-toast-max-height: 800px;
|
|
647
|
+
--toastify-font-family: sans-serif;
|
|
648
|
+
--toastify-z-index: 9999;
|
|
649
|
+
--toastify-text-color-light: #757575;
|
|
650
|
+
--toastify-text-color-dark: #fff;
|
|
651
|
+
--toastify-text-color-info: #fff;
|
|
652
|
+
--toastify-text-color-success: #fff;
|
|
653
|
+
--toastify-text-color-warning: #fff;
|
|
654
|
+
--toastify-text-color-error: #fff;
|
|
655
|
+
--toastify-spinner-color: #616161;
|
|
656
|
+
--toastify-spinner-color-empty-area: #e0e0e0;
|
|
657
|
+
--toastify-color-progress-light: linear-gradient(
|
|
658
|
+
to right,
|
|
659
|
+
#4cd964,
|
|
660
|
+
#5ac8fa,
|
|
661
|
+
#007aff,
|
|
662
|
+
#34aadc,
|
|
663
|
+
#5856d6,
|
|
664
|
+
#ff2d55
|
|
665
|
+
);
|
|
666
|
+
--toastify-color-progress-dark: #bb86fc;
|
|
667
|
+
--toastify-color-progress-info: var(--toastify-color-info);
|
|
668
|
+
--toastify-color-progress-success: var(--toastify-color-success);
|
|
669
|
+
--toastify-color-progress-warning: var(--toastify-color-warning);
|
|
670
|
+
--toastify-color-progress-error: var(--toastify-color-error);
|
|
671
|
+
}
|
|
612
672
|
.Toastify__toast-container {
|
|
613
|
-
z-index:
|
|
614
|
-
-webkit-transform: translate3d(0, 0,
|
|
673
|
+
z-index: var(--toastify-z-index);
|
|
674
|
+
-webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
|
|
615
675
|
position: fixed;
|
|
616
676
|
padding: 4px;
|
|
617
|
-
width:
|
|
677
|
+
width: var(--toastify-toast-width);
|
|
618
678
|
box-sizing: border-box;
|
|
619
679
|
color: #fff;
|
|
620
680
|
}
|
|
@@ -666,7 +726,7 @@
|
|
|
666
726
|
}
|
|
667
727
|
.Toastify__toast {
|
|
668
728
|
position: relative;
|
|
669
|
-
min-height:
|
|
729
|
+
min-height: var(--toastify-toast-min-height);
|
|
670
730
|
box-sizing: border-box;
|
|
671
731
|
margin-bottom: 1rem;
|
|
672
732
|
padding: 8px;
|
|
@@ -676,51 +736,101 @@
|
|
|
676
736
|
display: flex;
|
|
677
737
|
-ms-flex-pack: justify;
|
|
678
738
|
justify-content: space-between;
|
|
679
|
-
max-height:
|
|
739
|
+
max-height: var(--toastify-toast-max-height);
|
|
680
740
|
overflow: hidden;
|
|
681
|
-
font-family:
|
|
741
|
+
font-family: var(--toastify-font-family);
|
|
682
742
|
cursor: pointer;
|
|
683
743
|
direction: ltr;
|
|
684
744
|
}
|
|
685
745
|
.Toastify__toast--rtl {
|
|
686
746
|
direction: rtl;
|
|
687
747
|
}
|
|
688
|
-
.Toastify__toast--dark {
|
|
689
|
-
background: #121212;
|
|
690
|
-
color: #fff;
|
|
691
|
-
}
|
|
692
|
-
.Toastify__toast--default {
|
|
693
|
-
background: #fff;
|
|
694
|
-
color: #aaa;
|
|
695
|
-
}
|
|
696
|
-
.Toastify__toast--info {
|
|
697
|
-
background: #3498db;
|
|
698
|
-
}
|
|
699
|
-
.Toastify__toast--success {
|
|
700
|
-
background: #07bc0c;
|
|
701
|
-
}
|
|
702
|
-
.Toastify__toast--warning {
|
|
703
|
-
background: #f1c40f;
|
|
704
|
-
}
|
|
705
|
-
.Toastify__toast--error {
|
|
706
|
-
background: #e74c3c;
|
|
707
|
-
}
|
|
708
748
|
.Toastify__toast-body {
|
|
709
749
|
margin: auto 0;
|
|
710
750
|
-ms-flex: 1 1 auto;
|
|
711
751
|
flex: 1 1 auto;
|
|
712
752
|
padding: 6px;
|
|
753
|
+
display: -ms-flexbox;
|
|
754
|
+
display: flex;
|
|
755
|
+
-ms-flex-align: center;
|
|
756
|
+
align-items: center;
|
|
757
|
+
}
|
|
758
|
+
.Toastify__toast-body > div:last-child {
|
|
759
|
+
-ms-flex: 1;
|
|
760
|
+
flex: 1;
|
|
761
|
+
}
|
|
762
|
+
.Toastify__toast-icon {
|
|
763
|
+
-webkit-margin-end: 10px;
|
|
764
|
+
margin-inline-end: 10px;
|
|
765
|
+
width: 20px;
|
|
766
|
+
-ms-flex-negative: 0;
|
|
767
|
+
flex-shrink: 0;
|
|
768
|
+
display: -ms-flexbox;
|
|
769
|
+
display: flex;
|
|
713
770
|
}
|
|
714
771
|
.Toastify--animate {
|
|
715
772
|
animation-fill-mode: both;
|
|
716
773
|
animation-duration: 0.7s;
|
|
717
774
|
}
|
|
775
|
+
.Toastify--animate-icon {
|
|
776
|
+
animation-fill-mode: both;
|
|
777
|
+
animation-duration: 0.3s;
|
|
778
|
+
}
|
|
718
779
|
@media only screen and (max-width : 480px) {
|
|
719
780
|
.Toastify__toast {
|
|
720
781
|
margin-bottom: 0;
|
|
721
782
|
border-radius: 0;
|
|
722
783
|
}
|
|
723
784
|
}
|
|
785
|
+
.Toastify__toast-theme--dark {
|
|
786
|
+
background: var(--toastify-color-dark);
|
|
787
|
+
color: var(--toastify-text-color-dark);
|
|
788
|
+
}
|
|
789
|
+
.Toastify__toast-theme--light {
|
|
790
|
+
background: var(--toastify-color-light);
|
|
791
|
+
color: var(--toastify-text-color-light);
|
|
792
|
+
}
|
|
793
|
+
.Toastify__toast-theme--colored.Toastify__toast--default {
|
|
794
|
+
background: var(--toastify-color-light);
|
|
795
|
+
color: var(--toastify-text-color-light);
|
|
796
|
+
}
|
|
797
|
+
.Toastify__toast-theme--colored.Toastify__toast--info {
|
|
798
|
+
color: var(--toastify-text-color-info);
|
|
799
|
+
background: var(--toastify-color-info);
|
|
800
|
+
}
|
|
801
|
+
.Toastify__toast-theme--colored.Toastify__toast--success {
|
|
802
|
+
color: var(--toastify-text-color-success);
|
|
803
|
+
background: var(--toastify-color-success);
|
|
804
|
+
}
|
|
805
|
+
.Toastify__toast-theme--colored.Toastify__toast--warning {
|
|
806
|
+
color: var(--toastify-text-color-warning);
|
|
807
|
+
background: var(--toastify-color-warning);
|
|
808
|
+
}
|
|
809
|
+
.Toastify__toast-theme--colored.Toastify__toast--error {
|
|
810
|
+
color: var(--toastify-text-color-error);
|
|
811
|
+
background: var(--toastify-color-error);
|
|
812
|
+
}
|
|
813
|
+
.Toastify__progress-bar-theme--light {
|
|
814
|
+
background: var(--toastify-color-progress-light);
|
|
815
|
+
}
|
|
816
|
+
.Toastify__progress-bar-theme--dark {
|
|
817
|
+
background: var(--toastify-color-progress-dark);
|
|
818
|
+
}
|
|
819
|
+
.Toastify__progress-bar--info {
|
|
820
|
+
background: var(--toastify-color-progress-info);
|
|
821
|
+
}
|
|
822
|
+
.Toastify__progress-bar--success {
|
|
823
|
+
background: var(--toastify-color-progress-success);
|
|
824
|
+
}
|
|
825
|
+
.Toastify__progress-bar--warning {
|
|
826
|
+
background: var(--toastify-color-progress-warning);
|
|
827
|
+
}
|
|
828
|
+
.Toastify__progress-bar--error {
|
|
829
|
+
background: var(--toastify-color-progress-error);
|
|
830
|
+
}
|
|
831
|
+
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
|
|
832
|
+
background: var(--toastify-color-transparent);
|
|
833
|
+
}
|
|
724
834
|
.Toastify__close-button {
|
|
725
835
|
color: #fff;
|
|
726
836
|
background: transparent;
|
|
@@ -733,7 +843,7 @@
|
|
|
733
843
|
-ms-flex-item-align: start;
|
|
734
844
|
align-self: flex-start;
|
|
735
845
|
}
|
|
736
|
-
.Toastify__close-button--
|
|
846
|
+
.Toastify__close-button--light {
|
|
737
847
|
color: #000;
|
|
738
848
|
opacity: 0.3;
|
|
739
849
|
}
|
|
@@ -759,9 +869,8 @@
|
|
|
759
869
|
left: 0;
|
|
760
870
|
width: 100%;
|
|
761
871
|
height: 5px;
|
|
762
|
-
z-index:
|
|
872
|
+
z-index: var(--toastify-z-index);
|
|
763
873
|
opacity: 0.7;
|
|
764
|
-
background-color: rgba(255, 255, 255, 0.7);
|
|
765
874
|
transform-origin: left;
|
|
766
875
|
}
|
|
767
876
|
.Toastify__progress-bar--animated {
|
|
@@ -775,11 +884,15 @@
|
|
|
775
884
|
left: initial;
|
|
776
885
|
transform-origin: right;
|
|
777
886
|
}
|
|
778
|
-
.
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
887
|
+
.Toastify__spinner {
|
|
888
|
+
width: 20px;
|
|
889
|
+
height: 20px;
|
|
890
|
+
box-sizing: border-box;
|
|
891
|
+
border: 2px solid;
|
|
892
|
+
border-radius: 100%;
|
|
893
|
+
border-color: var(--toastify-spinner-color-empty-area);
|
|
894
|
+
border-right-color: var(--toastify-spinner-color);
|
|
895
|
+
animation: Toastify__spin 0.65s linear infinite;
|
|
783
896
|
}
|
|
784
897
|
@keyframes Toastify__bounceInRight {
|
|
785
898
|
from, 60%, 75%, 90%, to {
|
|
@@ -1102,6 +1215,14 @@
|
|
|
1102
1215
|
.Toastify__slide-exit--bottom-center {
|
|
1103
1216
|
animation-name: Toastify__slideOutDown;
|
|
1104
1217
|
}
|
|
1218
|
+
@keyframes Toastify__spin {
|
|
1219
|
+
from {
|
|
1220
|
+
transform: rotate(0deg);
|
|
1221
|
+
}
|
|
1222
|
+
to {
|
|
1223
|
+
transform: rotate(360deg);
|
|
1224
|
+
}
|
|
1225
|
+
}
|
|
1105
1226
|
:root {
|
|
1106
1227
|
--ab-space-0: 0px;
|
|
1107
1228
|
--ab-space-1: 4px;
|
|
@@ -1201,7 +1322,7 @@
|
|
|
1201
1322
|
:root {
|
|
1202
1323
|
--ab-cmp-dialog__background: var(--ab-color-defaultbackground, white);
|
|
1203
1324
|
--ab-cmp-dialog__color: var(--ab-color-text-on-defaultbackground, white);
|
|
1204
|
-
--ab-cmp-dialog-close-button__color: var(--ab-color-
|
|
1325
|
+
--ab-cmp-dialog-close-button__color: var(--ab-color-accentlight);
|
|
1205
1326
|
--ab-cmp-dialog__border-radius: var(--ab__border-radius);
|
|
1206
1327
|
--ab-cmp-dialog__min-height: 60vh; }
|
|
1207
1328
|
:root {
|
|
@@ -1286,7 +1407,7 @@
|
|
|
1286
1407
|
--ab-cmp-tabs-active__background: var(--ab-color-primarylight); }
|
|
1287
1408
|
:root {
|
|
1288
1409
|
--ab-cmp-panel_header__background: var(--ab-color-primary);
|
|
1289
|
-
--ab-cmp-panel_header__font-size: var(--ab-font-size-
|
|
1410
|
+
--ab-cmp-panel_header__font-size: var(--ab-font-size-3);
|
|
1290
1411
|
--ab-cmp-panel__font-size: var(--ab-font-size-3);
|
|
1291
1412
|
--ab-cmp-panel__border-radius: var(--ab__border-radius);
|
|
1292
1413
|
--ab-cmp-panel__padding: var(--ab-space-2);
|
|
@@ -1300,6 +1421,7 @@
|
|
|
1300
1421
|
--ab-cmp-panel_header--variant-primary__background: var(--ab-color-secondary);
|
|
1301
1422
|
--ab-cmp-panel_header--variant-primary__color: var(--ab-color-text-on-secondary);
|
|
1302
1423
|
--ab-cmp-panel_header--variant-modern__background: var(--ab-color-primary);
|
|
1424
|
+
--ab-cmp-panel_header--variant-minimal__background: var(--ab-color-defaultbackground);
|
|
1303
1425
|
--ab-cmp-panel_header--variant-modern__color: var(--ab-color-text-on-primary);
|
|
1304
1426
|
--ab-cmp-panel_body--variant-modern__background: var(--ab-color-primarylight); }
|
|
1305
1427
|
:root {
|
|
@@ -1486,6 +1608,54 @@
|
|
|
1486
1608
|
--ab-cmp-toolpanel__font-family: var(--ab__font-family); }
|
|
1487
1609
|
:root {
|
|
1488
1610
|
--ab-cmp-custom-sort-wizard-loader__font-size: var(--ab-font-size-4); }
|
|
1611
|
+
:root {
|
|
1612
|
+
--ab-cmp-adaptable-popup__background: var(--ab-color-primarylight);
|
|
1613
|
+
--ab-cmp-adaptable-popup--settings__padding: 20px;
|
|
1614
|
+
--ab-cmp-adaptable-popup--settings__height: 90vh;
|
|
1615
|
+
--ab-cmp-adaptable-popup__height: 90vh;
|
|
1616
|
+
--ab-cmp-adaptable-popup__max-height: 1200px;
|
|
1617
|
+
--ab-cmp-adaptable-popup-navigation-list__padding: var(--ab-space-1) var(--ab-space-2);
|
|
1618
|
+
--ab-cmp-adaptable-popup-navigation-list__border-right: 2px solid var(--ab-color-defaultbackground);
|
|
1619
|
+
--ab-cmp-adaptable-popup-navigation-list__font-size: var(--ab-font-size-3);
|
|
1620
|
+
--ab-cmp-adaptable-popup-navigation-list-item__padding: var(--ab-space-0) var(--ab-space-1);
|
|
1621
|
+
--ab-cmp-adaptable-popup-navigation-list-item__margin-bottom: var(--ab-space-2) var(--ab-space-2);
|
|
1622
|
+
--ab-cmp-adaptable-popup-navigation-list-item-separator__border: 1px solid var(--ab-color-primarydark);
|
|
1623
|
+
--ab-cmp-adaptable-popup-navigation-list-item-separator__margin: var(--ab-space-2) var(--ab-space-2);
|
|
1624
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__padding: var(--ab-space-2) var(--ab-space-2);
|
|
1625
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__border-radius: var(--ab__border-radius);
|
|
1626
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__color: var(--ab-color-text-on-primary);
|
|
1627
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__background--active: var(--ab-color-focus);
|
|
1628
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__background--color: var(--ab-color-accentlight);
|
|
1629
|
+
--ab-cmp-adaptable-popup-navigation-list-item-icon__margin-right: var(--ab-space-2);
|
|
1630
|
+
--ab-cmp-adaptable-popup-topbar__background: var(--ab-color-secondary);
|
|
1631
|
+
--ab-cmp-adaptable-popup-topbar__height: 45px;
|
|
1632
|
+
--ab-cmp-adaptable-popup-topbar__color: var(--ab-color-text-on-secondary);
|
|
1633
|
+
--ab-cmp-adaptable-popup-topbar__font-weight: 500;
|
|
1634
|
+
--ab-cmp-adaptable-popup-topbar__padding: var(--ab-space-3);
|
|
1635
|
+
--ab-cmp-adaptable-popup-topbar-icon__margin-right: var(--ab-space-2);
|
|
1636
|
+
--ab-cmp-adaptable-popup-topbar-icon__color: var(--ab-color-accentlight);
|
|
1637
|
+
--ab-cmp-adaptable-popup-panel__padding: 0 var(--ab-space-2);
|
|
1638
|
+
--ab-cmp-adaptable-popup-panel__margin-bottom: var(--ab-space-3);
|
|
1639
|
+
--ab-cmp-adaptable-popup-panel__margin-top: var(--ab-space-2);
|
|
1640
|
+
--ab-cmp-adaptable-popup-panel-title__font-size: var(--ab-font-size-5);
|
|
1641
|
+
--ab-cmp-adaptable-popup-panel-body__padding: var(--ab-space-2); }
|
|
1642
|
+
:root {
|
|
1643
|
+
--ab-cmp-adaptable-object-list-tag__margin-right: var(--ab-space-2);
|
|
1644
|
+
--ab-cmp-adaptable-object-list-tag__margin-top: var(--ab-space-2);
|
|
1645
|
+
--ab-cmp-adaptable-object-list-item__background-color: var(--ab-color-defaultbackground);
|
|
1646
|
+
--ab-cmp-adaptable-object-list-item__padding: var(--ab-space-3) var(--ab-space-3);
|
|
1647
|
+
--ab-cmp-adaptable-object-list-item__margin-bottom: var(--ab-space-3);
|
|
1648
|
+
--ab-cmp-adaptable-object-list-item-label__padding-top: var(--ab-space-3);
|
|
1649
|
+
--ab-cmp-adaptable-object-list-item-label__width: 130px;
|
|
1650
|
+
--ab-cmp-adaptable-object-list-item-tag__padding: 6px 12px; }
|
|
1651
|
+
:root {
|
|
1652
|
+
--ab-cmp-adaptable-options__background-color: var(--ab-color-defaultbackground);
|
|
1653
|
+
--ab-cmp-grid-options__background-color: var(--ab-color-defaultbackground);
|
|
1654
|
+
--ab-cmp-grid-summary__background-color: var(--ab-color-defaultbackground); }
|
|
1655
|
+
:root {
|
|
1656
|
+
--ab-cmp-system-status-list__background-color: var(--ab-color-defaultbackground); }
|
|
1657
|
+
:root {
|
|
1658
|
+
--ab-cmp-dashboard-module-selector-background: var(--ab-color-defaultbackground); }
|
|
1489
1659
|
.ab-Radio-input:focus + svg rect {
|
|
1490
1660
|
stroke: var(--ab-color-accent);
|
|
1491
1661
|
stroke-width: 2; }
|
|
@@ -1581,18 +1751,15 @@
|
|
|
1581
1751
|
fill: var(--ab-color-text-on-primary);
|
|
1582
1752
|
color: var(--ab-cmp-dialog__color);
|
|
1583
1753
|
border-radius: var(--ab-cmp-dialog__border-radius);
|
|
1584
|
-
min-height: var(--ab-cmp-dialog__min-height);
|
|
1585
1754
|
display: flex;
|
|
1586
1755
|
flex-flow: column; }
|
|
1587
1756
|
.ab-Dialog:focus-within, .ab-Dialog:focus {
|
|
1588
1757
|
box-shadow: var(--ab-focus__box-shadow);
|
|
1589
1758
|
outline: var(--ab-focus__outline); }
|
|
1590
|
-
.ab-Dialog > * {
|
|
1591
|
-
flex: 1; }
|
|
1592
1759
|
.ab-Dialog__close-button {
|
|
1593
1760
|
position: absolute;
|
|
1594
|
-
right:
|
|
1595
|
-
top:
|
|
1761
|
+
right: 6px;
|
|
1762
|
+
top: 6px;
|
|
1596
1763
|
font-size: var(--ab-font-size-3);
|
|
1597
1764
|
font-weight: 700;
|
|
1598
1765
|
line-height: 1;
|
|
@@ -1785,6 +1952,8 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
1785
1952
|
bottom: 0;
|
|
1786
1953
|
z-index: 1000;
|
|
1787
1954
|
font-family: var(--ab__font-family); }
|
|
1955
|
+
.ab-Modal.ab-Modal--resizable-and-movable {
|
|
1956
|
+
position: relative; }
|
|
1788
1957
|
.ab-Modal-backdrop {
|
|
1789
1958
|
background: var(--ab-cmp-modal-backdrop__background);
|
|
1790
1959
|
z-index: 900;
|
|
@@ -1855,6 +2024,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
1855
2024
|
display: flex;
|
|
1856
2025
|
flex-flow: column;
|
|
1857
2026
|
max-height: var(--ab-cmp-panel__max-height);
|
|
2027
|
+
overflow: auto;
|
|
1858
2028
|
font-size: var(--ab-cmp-panel__font-size); }
|
|
1859
2029
|
.ab-Panel .glyphicon {
|
|
1860
2030
|
-webkit-text-fill-color: var(--ab-cmp-panel-icon__fill);
|
|
@@ -2069,8 +2239,6 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2069
2239
|
pointer-events: none; }
|
|
2070
2240
|
.ab-FileDroppable, .ab-FileDroppable *, .ab-FileDroppable *:before, .ab-FileDroppable *:after {
|
|
2071
2241
|
box-sizing: border-box; }
|
|
2072
|
-
.ab-ChartContainer canvas {
|
|
2073
|
-
left: 0; }
|
|
2074
2242
|
.ab-WizardPanel > .ab-Panel__body {
|
|
2075
2243
|
display: flex;
|
|
2076
2244
|
flex-flow: column; }
|
|
@@ -2232,48 +2400,59 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2232
2400
|
display: table-cell; }
|
|
2233
2401
|
:root {
|
|
2234
2402
|
--ab-cmp-toggle-button__background: #ccc;
|
|
2235
|
-
--ab-cmp-toggle-button--active__background: var(--ab-color-success);
|
|
2403
|
+
--ab-cmp-toggle-button--active__background: var(--ab-color-success);
|
|
2404
|
+
--ab-cmp-toggle-button__font-size: var(--ab-font-size-1);
|
|
2405
|
+
--ab-cmp-toggle-button__color: var(--ab-color-text-on-primary);
|
|
2406
|
+
--ab-cmp-toggle-button--checked__color: var(--ab-color-accentlight); }
|
|
2236
2407
|
.ab-ToggleButton {
|
|
2237
2408
|
position: relative;
|
|
2238
2409
|
display: inline-block;
|
|
2239
2410
|
min-width: 40px;
|
|
2240
|
-
width:
|
|
2241
|
-
height:
|
|
2411
|
+
width: 87px;
|
|
2412
|
+
height: 32px; }
|
|
2242
2413
|
.ab-ToggleButton:hover:not(.ab-ToggleButton--disabled) {
|
|
2243
2414
|
cursor: pointer;
|
|
2244
2415
|
opacity: 0.85; }
|
|
2245
2416
|
.ab-ToggleButton__input {
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2417
|
+
opacity: 0;
|
|
2418
|
+
width: 0;
|
|
2419
|
+
height: 0; }
|
|
2249
2420
|
.ab-ToggleButton__slider {
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2421
|
+
position: absolute;
|
|
2422
|
+
top: 0;
|
|
2423
|
+
left: 0;
|
|
2424
|
+
right: 0;
|
|
2425
|
+
bottom: 0;
|
|
2426
|
+
background-color: var(--ab-cmp-toggle-button__background);
|
|
2427
|
+
transition: 0.1s;
|
|
2428
|
+
border-radius: var(--ab__border-radius); }
|
|
2258
2429
|
.ab-ToggleButton__slider:before {
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2430
|
+
position: absolute;
|
|
2431
|
+
content: "";
|
|
2432
|
+
width: 24px;
|
|
2433
|
+
height: 24px;
|
|
2434
|
+
left: 4px;
|
|
2435
|
+
top: 4px;
|
|
2436
|
+
border-radius: var(--ab__border-radius);
|
|
2437
|
+
background-color: #fff;
|
|
2438
|
+
-webkit-transition: 0.4s;
|
|
2439
|
+
transition: 0.2s; }
|
|
2269
2440
|
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider {
|
|
2270
|
-
|
|
2441
|
+
background-color: var(--ab-cmp-toggle-button--active__background); }
|
|
2271
2442
|
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider:before {
|
|
2272
|
-
|
|
2443
|
+
transform: translateX(54px); }
|
|
2273
2444
|
.ab-ToggleButton__input:focus + .ab-ToggleButton__slider {
|
|
2274
|
-
|
|
2445
|
+
box-shadow: var(--ab-focus__box-shadow); }
|
|
2275
2446
|
.ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
|
|
2276
|
-
|
|
2447
|
+
opacity: 0.5; }
|
|
2448
|
+
.ab-ToggleButton .ab-ToggleButton__text {
|
|
2449
|
+
font-size: var(--ab-cmp-toggle-button__font-size);
|
|
2450
|
+
padding-right: var(--ab-space-2);
|
|
2451
|
+
color: var(--ab-cmp-toggle-button__color);
|
|
2452
|
+
font-weight: 600; }
|
|
2453
|
+
.ab-ToggleButton--checked .ab-ToggleButton__text {
|
|
2454
|
+
padding-left: var(--ab-space-2);
|
|
2455
|
+
color: var(--ab-cmp-toggle-button--checked__color); }
|
|
2277
2456
|
.ab-Loader {
|
|
2278
2457
|
font-size: var(--ab-cmp-loader__font-size);
|
|
2279
2458
|
margin-top: 8px;
|
|
@@ -2323,6 +2502,19 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2323
2502
|
font-size: var(--ab-cmp-progress-indicator__font-size);
|
|
2324
2503
|
font-style: var(--ab-cmp-progress-indicator__font-style);
|
|
2325
2504
|
font-family: var(--ab-cmp-progress-indicator__font-family); }
|
|
2505
|
+
:root {
|
|
2506
|
+
--ab-cmp-Tag__font-size: var(--ab-font-size-3); }
|
|
2507
|
+
.ab-Tag {
|
|
2508
|
+
display: inline-flex;
|
|
2509
|
+
font-size: var(--ab-cmp-Tag__font-size); }
|
|
2510
|
+
.ab-AdaptableOptions {
|
|
2511
|
+
background: var(--ab-cmp-adaptable-options__background-color); }
|
|
2512
|
+
.ab-GridOptions {
|
|
2513
|
+
background: var(--ab-cmp-grid-options__background-color); }
|
|
2514
|
+
.ab-GridSummary {
|
|
2515
|
+
background: var(--ab-cmp-grid-summary__background-color); }
|
|
2516
|
+
.ab-SystemStatus-Popup-List {
|
|
2517
|
+
background: var(--ab-cmp-system-status-list__background-color); }
|
|
2326
2518
|
.ab-ObjectCollection__list > * {
|
|
2327
2519
|
background: var(--ab-cmp-listgroupitem__background);
|
|
2328
2520
|
color: var(--ab-cmp-listgroupitem__color); }
|
|
@@ -2418,6 +2610,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
2418
2610
|
--ab-cmp-panel_body__background: var(--ag-control-panel-background-color); }
|
|
2419
2611
|
.ab-Dashboard__application-icon {
|
|
2420
2612
|
margin-right: var(--ab-space-2); }
|
|
2613
|
+
.ab-Dashboard-Popup__Module-Selector {
|
|
2614
|
+
background: var(--ab-cmp-dashboard-module-selector-background); }
|
|
2421
2615
|
.ab-ToolPanel {
|
|
2422
2616
|
flex: 1 1 0;
|
|
2423
2617
|
min-width: 0;
|
|
@@ -2440,6 +2634,98 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
2440
2634
|
margin-bottom: var(--ab-space-1); }
|
|
2441
2635
|
.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
2442
2636
|
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
|
|
2637
|
+
.ab-Adaptable-Popup {
|
|
2638
|
+
background: var(--ab-cmp-adaptable-popup__background);
|
|
2639
|
+
max-height: var(--ab-cmp-adaptable-popup__max-height); }
|
|
2640
|
+
.ab-Adaptable-Popup__Navigation {
|
|
2641
|
+
padding-top: 10px;
|
|
2642
|
+
overflow: auto;
|
|
2643
|
+
border-right: var(--ab-cmp-adaptable-popup-navigation-list__border-right);
|
|
2644
|
+
font-family: var(--ab__font-family); }
|
|
2645
|
+
.ab-Adaptable-Popup__Navigation__List {
|
|
2646
|
+
list-style: none;
|
|
2647
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list__padding);
|
|
2648
|
+
margin: 0;
|
|
2649
|
+
font-size: var(--ab-cmp-adaptable-popup-navigation-list__font-size); }
|
|
2650
|
+
.ab-Adaptable-Popup__Navigation__List__Item {
|
|
2651
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item__padding);
|
|
2652
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item__margin-bottom); }
|
|
2653
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Separator {
|
|
2654
|
+
border-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__border);
|
|
2655
|
+
margin: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__margin); }
|
|
2656
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
2657
|
+
background: none;
|
|
2658
|
+
border: none;
|
|
2659
|
+
width: 100%;
|
|
2660
|
+
text-align: left;
|
|
2661
|
+
cursor: pointer;
|
|
2662
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item-button__padding);
|
|
2663
|
+
border-radius: var(--ab-cmp-adaptable-popup-navigation-list-item-button__border-radius);
|
|
2664
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__color); }
|
|
2665
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Icon {
|
|
2666
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right); }
|
|
2667
|
+
.ab-Adaptable-Popup__Navigation__List__Item--active .ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
2668
|
+
background: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--active);
|
|
2669
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--color); }
|
|
2670
|
+
.ab-Adaptable-Popup__TopBar {
|
|
2671
|
+
display: flex;
|
|
2672
|
+
align-items: center;
|
|
2673
|
+
background: var(--ab-cmp-adaptable-popup-topbar__background);
|
|
2674
|
+
height: var(--ab-cmp-adaptable-popup-topbar__height);
|
|
2675
|
+
color: var(--ab-cmp-adaptable-popup-topbar__color);
|
|
2676
|
+
font-weight: var(--ab-cmp-adaptable-popup-topbar__font-weight);
|
|
2677
|
+
padding: var(--ab-cmp-adaptable-popup-topbar__padding);
|
|
2678
|
+
box-sizing: border-box; }
|
|
2679
|
+
.ab-Adaptable-Popup__TopBar__Icon {
|
|
2680
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right); }
|
|
2681
|
+
.ab-Adaptable-Popup__TopBar__Close .ab-Icon {
|
|
2682
|
+
color: var(--ab-cmp-adaptable-popup-topbar-icon__color); }
|
|
2683
|
+
.ab-Adaptable-Popup--settings-popup {
|
|
2684
|
+
height: var(--ab-cmp-adaptable-popup--settings__height); }
|
|
2685
|
+
.ab-Adaptable-Popup--settings-popup .ab-Dialog__close-button {
|
|
2686
|
+
top: 9px; }
|
|
2687
|
+
.ab-Adaptable-Popup--settings-popup .ab-Adaptable-Popup__Body {
|
|
2688
|
+
padding: var(--ab-cmp-adaptable-popup--settings__padding);
|
|
2689
|
+
min-width: 0; }
|
|
2690
|
+
.ab-Adaptable-Popup__Panel__Header {
|
|
2691
|
+
display: flex;
|
|
2692
|
+
padding: 0 var(--ab-cmp-adaptable-popup-panel__padding);
|
|
2693
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-panel__margin-bottom);
|
|
2694
|
+
margin-top: var(--ab-cmp-adaptable-popup-panel__margin-top); }
|
|
2695
|
+
.ab-Adaptable-Popup__Panel__Header__Title {
|
|
2696
|
+
font-size: var(--ab-cmp-adaptable-popup-panel-title__font-size); }
|
|
2697
|
+
.ab-Adaptable-Popup__Panel__Body {
|
|
2698
|
+
padding: var(--ab-cmp-adaptable-popup-panel-body__padding);
|
|
2699
|
+
flex: 1 1 0;
|
|
2700
|
+
min-height: 0;
|
|
2701
|
+
overflow: auto; }
|
|
2702
|
+
.ab-Adaptable-Popup--window .ab-Adaptable-Popup__TopBar {
|
|
2703
|
+
cursor: move; }
|
|
2704
|
+
.ab-Adaptable-Popup--window.ab-Adaptable-Popup--action-popup .ab-Panel__header {
|
|
2705
|
+
cursor: move; }
|
|
2706
|
+
.ab-Adaptable-Object-List {
|
|
2707
|
+
list-style: none;
|
|
2708
|
+
padding: 0; }
|
|
2709
|
+
.ab-Adaptable-Object-List .ab-Tag {
|
|
2710
|
+
margin-right: var(--ab-cmp-adaptable-object-list-tag__margin-right);
|
|
2711
|
+
margin-top: var(--ab-cmp-adaptable-object-list-tag__margin-top);
|
|
2712
|
+
padding: var(--ab-cmp-adaptable-object-list-item-tag__padding); }
|
|
2713
|
+
.ab-Adaptable-Object-List__Item {
|
|
2714
|
+
background-color: var(--ab-cmp-adaptable-object-list-item__background-color);
|
|
2715
|
+
padding: var(--ab-cmp-adaptable-object-list-item__padding);
|
|
2716
|
+
margin-bottom: var(--ab-cmp-adaptable-object-list-item__margin-bottom); }
|
|
2717
|
+
.ab-Adaptable-Object-List__Item__edit-property {
|
|
2718
|
+
visibility: hidden; }
|
|
2719
|
+
.ab-Adaptable-Object-List__Item__buttons {
|
|
2720
|
+
padding-left: var(--ab-space-2);
|
|
2721
|
+
min-width: 80px;
|
|
2722
|
+
text-align: right;
|
|
2723
|
+
margin-left: var(--ab-space-3); }
|
|
2724
|
+
.ab-Adaptable-Object-List__Item__label {
|
|
2725
|
+
padding-top: var(--ab-cmp-adaptable-object-list-item-label__padding-top);
|
|
2726
|
+
width: var(--ab-cmp-adaptable-object-list-item-label__width); }
|
|
2727
|
+
.ab-Adaptable-Object-List__Item__label:hover .ab-Adaptable-Object-List__Item__edit-property {
|
|
2728
|
+
visibility: visible; }
|
|
2443
2729
|
.ab-alert--error {
|
|
2444
2730
|
background: var(--ab-color-error); }
|
|
2445
2731
|
.ab-alert--success {
|
|
@@ -2467,7 +2753,7 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
2467
2753
|
.ab_div-colour-render-text {
|
|
2468
2754
|
position: absolute;
|
|
2469
2755
|
font-weight: normal;
|
|
2470
|
-
font-size:
|
|
2756
|
+
font-size: 12px;
|
|
2471
2757
|
z-index: 100; }
|
|
2472
2758
|
.ab_div-colour-render-div {
|
|
2473
2759
|
display: inline-block;
|
|
@@ -2491,21 +2777,25 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
2491
2777
|
border-style: none;
|
|
2492
2778
|
--ab-toast-cmp__shadow-color: var(--ab-color-accent);
|
|
2493
2779
|
box-shadow: 0 0 7px 2px var(--ab-toast-cmp__shadow-color);
|
|
2494
|
-
background: var(--ab-toast-cmp__shadow-color);
|
|
2780
|
+
background: var(--ab-toast-cmp__shadow-color);
|
|
2781
|
+
--toastify-text-color-info: var(--ab-color-text-on-primary);
|
|
2782
|
+
--toastify-text-color-success: var(--ab-color-text-on-primary);
|
|
2783
|
+
--toastify-text-color-warning: var(--ab-color-text-on-primary);
|
|
2784
|
+
--toastify-text-color-error: var(--ab-color-text-on-primary);
|
|
2785
|
+
--toastify-color-info: var(--ab-color-info);
|
|
2786
|
+
--toastify-color-success: var(--ab-color-success);
|
|
2787
|
+
--toastify-color-warning: var(--ab-color-warn);
|
|
2788
|
+
--toastify-color-error: var(--ab-color-error); }
|
|
2495
2789
|
.Toastify__toast-body {
|
|
2496
2790
|
padding: 0; }
|
|
2497
2791
|
.Toastify__toast--info {
|
|
2498
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-info);
|
|
2499
|
-
color: var(--ab-color-text-on-primary); }
|
|
2792
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-info); }
|
|
2500
2793
|
.Toastify__toast--success {
|
|
2501
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-success);
|
|
2502
|
-
color: var(--ab-color-text-on-primary); }
|
|
2794
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-success); }
|
|
2503
2795
|
.Toastify__toast--warning {
|
|
2504
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-warn);
|
|
2505
|
-
color: var(--ab-color-text-on-primary); }
|
|
2796
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-warn); }
|
|
2506
2797
|
.Toastify__toast--error {
|
|
2507
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-error);
|
|
2508
|
-
color: var(--ab-color-text-on-primary); }
|
|
2798
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-error); }
|
|
2509
2799
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar,
|
|
2510
2800
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar,
|
|
2511
2801
|
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar,
|