react-autoql 7.3.3-alpha.2 → 7.4.0-alpha.0
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/dist/autoql.cjs.js +1 -1
- package/dist/autoql.cjs.js.gz +0 -0
- package/dist/autoql.esm.css +1504 -838
- package/dist/autoql.esm.css.gz +0 -0
- package/dist/autoql.esm.js +1 -1
- package/dist/autoql.esm.js.gz +0 -0
- package/package.json +3 -3
package/dist/autoql.esm.css
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
|
|
1
2
|
.react-autoql-spinner-centered {
|
|
2
3
|
width: 100%;
|
|
3
4
|
text-align: center;
|
|
@@ -6,32 +7,35 @@
|
|
|
6
7
|
.react-autosuggest__suggestions-container--open::-webkit-scrollbar {
|
|
7
8
|
visibility: visible !important; }
|
|
8
9
|
|
|
10
|
+
span .react-autoql-icon {
|
|
11
|
+
vertical-align: middle;
|
|
12
|
+
padding-bottom: 3px; }
|
|
13
|
+
|
|
14
|
+
a {
|
|
15
|
+
font-weight: 600;
|
|
16
|
+
color: var(--react-autoql-accent-color);
|
|
17
|
+
cursor: pointer; }
|
|
18
|
+
|
|
9
19
|
.react-autoql-icon {
|
|
10
20
|
position: relative;
|
|
11
|
-
opacity: 1;
|
|
12
|
-
|
|
21
|
+
opacity: 1;
|
|
22
|
+
display: inline-flex;
|
|
23
|
+
justify-content: center;
|
|
24
|
+
align-items: center;
|
|
25
|
+
vertical-align: baseline;
|
|
26
|
+
line-height: 1em;
|
|
27
|
+
box-sizing: content-box;
|
|
28
|
+
height: 1em;
|
|
29
|
+
width: 1em; }
|
|
30
|
+
.react-autoql-icon.react-autoql-icon-warning {
|
|
13
31
|
color: var(--react-autoql-warning-color) !important; }
|
|
14
|
-
.react-autoql-icon.danger {
|
|
32
|
+
.react-autoql-icon.react-autoql-icon-danger {
|
|
15
33
|
color: var(--react-autoql-danger-color) !important; }
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
padding: 0;
|
|
22
|
-
float: none !important;
|
|
23
|
-
color: inherit; }
|
|
24
|
-
span.react-autoql-icon svg {
|
|
25
|
-
float: none !important;
|
|
26
|
-
color: inherit;
|
|
27
|
-
vertical-align: unset;
|
|
28
|
-
text-align: left;
|
|
29
|
-
margin: 0;
|
|
30
|
-
padding: 0;
|
|
31
|
-
opacity: 1;
|
|
32
|
-
height: 1em;
|
|
33
|
-
width: 1em;
|
|
34
|
-
margin-bottom: -0.15em; }
|
|
34
|
+
.react-autoql-icon.react-autoql-icon-spinning {
|
|
35
|
+
animation: spin 1.2s linear infinite; }
|
|
36
|
+
.react-autoql-icon.react-autoql-icon-disabled {
|
|
37
|
+
pointer-events: none;
|
|
38
|
+
opacity: 0.5; }
|
|
35
39
|
|
|
36
40
|
.react-autoql-badge {
|
|
37
41
|
position: absolute;
|
|
@@ -41,17 +45,24 @@ span.react-autoql-icon {
|
|
|
41
45
|
height: 0.5em;
|
|
42
46
|
top: -0.1em;
|
|
43
47
|
right: -0.25em;
|
|
44
|
-
border-radius: 50%;
|
|
45
|
-
|
|
48
|
+
border-radius: 50%; }
|
|
49
|
+
|
|
50
|
+
@keyframes spin {
|
|
51
|
+
0% {
|
|
52
|
+
transform: rotate(0deg); }
|
|
53
|
+
100% {
|
|
54
|
+
transform: rotate(360deg); } }
|
|
46
55
|
|
|
47
56
|
.chat-voice-record-button {
|
|
57
|
+
display: flex;
|
|
58
|
+
justify-content: center;
|
|
59
|
+
align-items: center;
|
|
48
60
|
width: 40px;
|
|
49
61
|
height: 40px;
|
|
50
62
|
border-radius: 24px;
|
|
51
63
|
margin: 10px;
|
|
52
64
|
margin-left: 0;
|
|
53
65
|
font-size: 18px;
|
|
54
|
-
line-height: 24px;
|
|
55
66
|
outline: none !important;
|
|
56
67
|
position: relative;
|
|
57
68
|
cursor: pointer;
|
|
@@ -274,15 +285,15 @@ span.react-autoql-icon {
|
|
|
274
285
|
|
|
275
286
|
.spinner-loader {
|
|
276
287
|
display: inline-block;
|
|
277
|
-
width:
|
|
278
|
-
height:
|
|
288
|
+
width: 1em;
|
|
289
|
+
height: 1em;
|
|
279
290
|
margin-right: 6px; }
|
|
280
291
|
|
|
281
292
|
.spinner-loader:after {
|
|
282
293
|
content: ' ';
|
|
283
294
|
display: block;
|
|
284
|
-
width:
|
|
285
|
-
height:
|
|
295
|
+
width: 1em;
|
|
296
|
+
height: 1em;
|
|
286
297
|
margin: 0px;
|
|
287
298
|
border-radius: 50%;
|
|
288
299
|
border: 1px solid currentColor;
|
|
@@ -502,48 +513,78 @@ span.react-autoql-icon {
|
|
|
502
513
|
border-color: transparent transparent transparent var(--react-autoql-text-color-primary); }
|
|
503
514
|
|
|
504
515
|
.react-autoql-btn {
|
|
516
|
+
display: flex;
|
|
517
|
+
flex-wrap: nowrap;
|
|
518
|
+
flex-direction: row;
|
|
519
|
+
align-items: center;
|
|
520
|
+
justify-content: center;
|
|
521
|
+
width: auto;
|
|
522
|
+
height: auto;
|
|
505
523
|
border-radius: 4px;
|
|
506
|
-
cursor: pointer;
|
|
507
524
|
outline: none !important;
|
|
508
525
|
transition: all 0.2s ease;
|
|
509
|
-
|
|
510
|
-
|
|
526
|
+
cursor: pointer; }
|
|
527
|
+
.react-autoql-btn.btn-no-border {
|
|
528
|
+
border: none !important; }
|
|
529
|
+
.react-autoql-btn.btn-no-border:hover {
|
|
530
|
+
opacity: 0.8; }
|
|
531
|
+
.react-autoql-btn .react-autoql-icon {
|
|
532
|
+
display: flex; }
|
|
533
|
+
.react-autoql-btn .react-autoql-btn-icon {
|
|
534
|
+
margin-right: 6px;
|
|
535
|
+
margin-left: -3px;
|
|
536
|
+
font-size: 1.1em; }
|
|
511
537
|
|
|
512
538
|
.react-autoql-btn.disabled {
|
|
513
539
|
opacity: 0.4;
|
|
514
540
|
cursor: not-allowed;
|
|
515
541
|
pointer-events: none; }
|
|
516
542
|
|
|
517
|
-
.react-autoql-btn.small {
|
|
543
|
+
.react-autoql-btn.react-autoql-btn-small {
|
|
518
544
|
padding: 2px 8px;
|
|
519
545
|
margin: 2px 3px; }
|
|
520
546
|
|
|
521
|
-
.react-autoql-btn.
|
|
547
|
+
.react-autoql-btn.react-autoql-btn-medium {
|
|
548
|
+
padding: 6px 12px;
|
|
549
|
+
margin: 3px 3px; }
|
|
550
|
+
|
|
551
|
+
.react-autoql-btn.react-autoql-btn-large {
|
|
522
552
|
padding: 10px 16px;
|
|
523
553
|
margin: 2px 5px; }
|
|
524
554
|
|
|
525
|
-
.react-autoql-btn.
|
|
526
|
-
color:
|
|
527
|
-
border: 1px solid var(--react-autoql-border-color);
|
|
555
|
+
.react-autoql-btn.btn-no-border {
|
|
556
|
+
color: var(--react-autoql-accent-color);
|
|
528
557
|
background: inherit; }
|
|
529
|
-
.react-autoql-btn.
|
|
530
|
-
|
|
531
|
-
color: var(--react-autoql-accent-color); }
|
|
558
|
+
.react-autoql-btn.btn-no-border:hover {
|
|
559
|
+
background: var(--react-autoql-mask-color); }
|
|
532
560
|
|
|
533
|
-
.react-autoql-btn.
|
|
561
|
+
.react-autoql-btn.react-autoql-btn-default {
|
|
562
|
+
border: 1px solid var(--react-autoql-accent-color);
|
|
563
|
+
color: var(--react-autoql-accent-color);
|
|
564
|
+
background: inherit; }
|
|
565
|
+
.react-autoql-btn.react-autoql-btn-default:not(.btn-no-border):hover {
|
|
566
|
+
background: var(--react-autoql-mask-color); }
|
|
567
|
+
|
|
568
|
+
.react-autoql-btn.react-autoql-btn-primary {
|
|
534
569
|
background: var(--react-autoql-accent-color);
|
|
535
570
|
border: 1px solid var(--react-autoql-accent-color);
|
|
536
571
|
color: var(--react-autoql-text-color-accent); }
|
|
537
|
-
.react-autoql-btn.primary:hover {
|
|
572
|
+
.react-autoql-btn.react-autoql-btn-primary:hover {
|
|
538
573
|
opacity: 0.8; }
|
|
539
574
|
|
|
540
|
-
.react-autoql-btn.danger {
|
|
575
|
+
.react-autoql-btn.react-autoql-btn-danger:not(.btn-filled) {
|
|
541
576
|
color: var(--react-autoql-danger-color, #ca0b00);
|
|
542
577
|
border: 1px solid var(--react-autoql-danger-color, #ca0b00);
|
|
543
578
|
background: inherit; }
|
|
544
|
-
.react-autoql-btn.danger:hover {
|
|
545
|
-
background
|
|
546
|
-
|
|
579
|
+
.react-autoql-btn.react-autoql-btn-danger:not(.btn-filled):hover {
|
|
580
|
+
background: var(--react-autoql-mask-color); }
|
|
581
|
+
|
|
582
|
+
.react-autoql-btn.react-autoql-btn-danger.btn-filled {
|
|
583
|
+
color: var(--react-autoql-text-color-accent);
|
|
584
|
+
background: var(--react-autoql-danger-color, #ca0b00);
|
|
585
|
+
border: 1px solid var(--react-autoql-danger-color, #ca0b00); }
|
|
586
|
+
.react-autoql-btn.react-autoql-btn-danger.btn-filled:hover {
|
|
587
|
+
opacity: 0.8; }
|
|
547
588
|
|
|
548
589
|
.react-autoql-table-container {
|
|
549
590
|
-webkit-transform: translate3d(0, 0, 0);
|
|
@@ -584,6 +625,7 @@ span.react-autoql-icon {
|
|
|
584
625
|
pointer-events: none;
|
|
585
626
|
opacity: 0; }
|
|
586
627
|
.react-autoql-table-container.empty:not(.filtering) .tabulator-headers {
|
|
628
|
+
overflow: hidden;
|
|
587
629
|
height: 37px !important; }
|
|
588
630
|
.react-autoql-table-container.empty .react-autoql-table.tabulator {
|
|
589
631
|
overflow: auto; }
|
|
@@ -694,7 +736,7 @@ span.react-autoql-icon {
|
|
|
694
736
|
background-color: inherit; }
|
|
695
737
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row {
|
|
696
738
|
/* user-select: none; This breaks copy/paste */
|
|
697
|
-
border-bottom: 1px solid var(--react-autoql-border-color);
|
|
739
|
+
border-bottom: 1px solid var(--react-autoql-table-border-color);
|
|
698
740
|
background-color: var(--react-autoql-background-color-secondary);
|
|
699
741
|
z-index: 1; }
|
|
700
742
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row:last-child {
|
|
@@ -702,7 +744,7 @@ span.react-autoql-icon {
|
|
|
702
744
|
margin-bottom: 15px; }
|
|
703
745
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row .tabulator-cell:not(:first-child) {
|
|
704
746
|
border-left: 1px solid !important;
|
|
705
|
-
border-color:
|
|
747
|
+
border-color: var(--react-autoql-table-border-color) !important; }
|
|
706
748
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-row .tabulator-cell.pivot-category {
|
|
707
749
|
font-weight: 600; }
|
|
708
750
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header .tabulator-col {
|
|
@@ -734,12 +776,12 @@ span.react-autoql-icon {
|
|
|
734
776
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-header .tabulator-col:hover .tabulator-col-content .tabulator-arrow {
|
|
735
777
|
opacity: 1 !important; }
|
|
736
778
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-cell {
|
|
737
|
-
border-color: var(--react-autoql-border-color);
|
|
779
|
+
border-color: var(--react-autoql-table-border-color);
|
|
738
780
|
background-color: var(--react-autoql-background-color-secondary); }
|
|
739
781
|
.react-autoql-table-container .react-autoql-table.tabulator .tabulator-tableholder {
|
|
740
782
|
background-color: inherit; }
|
|
741
783
|
|
|
742
|
-
.react-autoql-
|
|
784
|
+
.react-autoql-popover-date-picker {
|
|
743
785
|
background: var(--react-autoql-background-color-secondary);
|
|
744
786
|
color: var(--react-autoql-text-color-primary);
|
|
745
787
|
padding: 15px;
|
|
@@ -748,7 +790,7 @@ span.react-autoql-icon {
|
|
|
748
790
|
justify-content: center;
|
|
749
791
|
align-items: stretch;
|
|
750
792
|
flex-direction: column; }
|
|
751
|
-
.react-autoql-
|
|
793
|
+
.react-autoql-popover-date-picker h3 {
|
|
752
794
|
margin-top: 0;
|
|
753
795
|
margin-left: 5px; }
|
|
754
796
|
|
|
@@ -782,7 +824,7 @@ span.react-autoql-icon {
|
|
|
782
824
|
height: 40px;
|
|
783
825
|
background-color: var(--react-autoql-background-color-secondary);
|
|
784
826
|
border: 1px solid var(--react-autoql-border-color);
|
|
785
|
-
box-shadow: var(--react-autoql-box-shadow-
|
|
827
|
+
box-shadow: var(--react-autoql-box-shadow-1);
|
|
786
828
|
border-radius: 4px; }
|
|
787
829
|
.table-loader.table-page-loader .page-loader-spinner .spinner-loader {
|
|
788
830
|
margin: 0;
|
|
@@ -849,9 +891,14 @@ span.react-autoql-icon {
|
|
|
849
891
|
.react-autoql-checkbox-tick {
|
|
850
892
|
position: absolute;
|
|
851
893
|
color: var(--react-autoql-text-color-accent);
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
894
|
+
pointer-events: none;
|
|
895
|
+
width: 100%;
|
|
896
|
+
height: 100%;
|
|
897
|
+
left: 0;
|
|
898
|
+
top: 0;
|
|
899
|
+
display: flex;
|
|
900
|
+
justify-content: center;
|
|
901
|
+
align-items: center; }
|
|
855
902
|
|
|
856
903
|
.react-autoql-checkbox--switch__input::before {
|
|
857
904
|
box-shadow: 0 0 2px 1px #00000030; }
|
|
@@ -894,8 +941,8 @@ span.react-autoql-icon {
|
|
|
894
941
|
width: 36px;
|
|
895
942
|
height: 20px;
|
|
896
943
|
border-radius: 16px;
|
|
897
|
-
background: var(--react-autoql-background-color-
|
|
898
|
-
border: 1px solid var(--react-autoql-background-color-
|
|
944
|
+
background: var(--react-autoql-background-color-switch-input);
|
|
945
|
+
border: 1px solid var(--react-autoql-background-color-switch-input); }
|
|
899
946
|
|
|
900
947
|
.react-autoql-checkbox--switch__input::before {
|
|
901
948
|
top: 2px;
|
|
@@ -967,72 +1014,94 @@ span.react-autoql-icon {
|
|
|
967
1014
|
background-color: var(--react-autoql-highlight-color);
|
|
968
1015
|
opacity: 0.2; }
|
|
969
1016
|
|
|
970
|
-
.react-autoql-
|
|
1017
|
+
.react-autoql-menu {
|
|
1018
|
+
list-style-type: none;
|
|
1019
|
+
width: 100%;
|
|
1020
|
+
padding: 10px 0;
|
|
1021
|
+
margin: 0;
|
|
1022
|
+
max-height: 250px; }
|
|
1023
|
+
.react-autoql-menu.has-subtitles .react-autoql-menu-item-title {
|
|
1024
|
+
font-weight: 500;
|
|
1025
|
+
opacity: 0.9; }
|
|
1026
|
+
.react-autoql-menu .react-autoql-menu-item {
|
|
1027
|
+
color: var(--react-autoql-text-color-primary);
|
|
1028
|
+
padding: 10px 20px;
|
|
1029
|
+
cursor: pointer; }
|
|
1030
|
+
.react-autoql-menu .react-autoql-menu-item:hover, .react-autoql-menu .react-autoql-menu-item.active {
|
|
1031
|
+
background: var(--react-autoql-hover-color); }
|
|
1032
|
+
.react-autoql-menu .react-autoql-menu-item .react-autoql-menu-item-title {
|
|
1033
|
+
display: flex;
|
|
1034
|
+
align-items: center; }
|
|
1035
|
+
.react-autoql-menu .react-autoql-menu-item .select-option-span {
|
|
1036
|
+
display: flex;
|
|
1037
|
+
align-items: center; }
|
|
1038
|
+
.react-autoql-menu .react-autoql-menu-item .select-option-span .react-autoql-menu-icon {
|
|
1039
|
+
font-size: 1.1em; }
|
|
1040
|
+
.react-autoql-menu .react-autoql-menu-item .select-option-span .select-option-value-container {
|
|
1041
|
+
display: flex;
|
|
1042
|
+
flex-direction: column; }
|
|
1043
|
+
.react-autoql-menu .react-autoql-menu-item .select-option-span .select-option-value-container .select-option-value-subtitle {
|
|
1044
|
+
font-size: 0.875em;
|
|
1045
|
+
opacity: 0.8; }
|
|
1046
|
+
|
|
1047
|
+
.react-autoql-select-popover-container {
|
|
1048
|
+
margin: 0 6px; }
|
|
1049
|
+
|
|
1050
|
+
.react-autoql-select-and-label {
|
|
971
1051
|
display: inline-flex;
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
1052
|
+
flex-direction: column;
|
|
1053
|
+
padding: 2px 5px; }
|
|
1054
|
+
.react-autoql-select-and-label.react-autoql-select-full-width {
|
|
1055
|
+
display: flex; }
|
|
1056
|
+
.react-autoql-select-and-label .react-autoql-select {
|
|
1057
|
+
display: inline-flex;
|
|
1058
|
+
justify-content: space-between;
|
|
1059
|
+
transition: color 0.2s ease, border-color 0.2s ease;
|
|
1060
|
+
white-space: nowrap;
|
|
1061
|
+
font-size: inherit;
|
|
1062
|
+
cursor: pointer; }
|
|
1063
|
+
.react-autoql-select-and-label .react-autoql-select.react-autoql-select-large {
|
|
1064
|
+
line-height: 36px;
|
|
1065
|
+
height: 38px; }
|
|
1066
|
+
.react-autoql-select-and-label .react-autoql-select.react-autoql-select-small {
|
|
1067
|
+
line-height: 32px;
|
|
1068
|
+
height: 34px; }
|
|
1069
|
+
.react-autoql-select-and-label .react-autoql-select:hover {
|
|
982
1070
|
color: var(--react-autoql-accent-color, #26a7df); }
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
.react-autoql-select .react-autoql-select
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1071
|
+
.react-autoql-select-and-label .react-autoql-select:hover .react-autoql-select-arrow {
|
|
1072
|
+
color: var(--react-autoql-accent-color, #26a7df); }
|
|
1073
|
+
.react-autoql-select-and-label .react-autoql-select:not(.outlined) {
|
|
1074
|
+
font-weight: 600;
|
|
1075
|
+
padding: 0;
|
|
1076
|
+
margin: 0; }
|
|
1077
|
+
.react-autoql-select-and-label .react-autoql-select.outlined {
|
|
1078
|
+
padding: 0px 16px;
|
|
1079
|
+
color: var(--react-autoql-text-color-primary);
|
|
1080
|
+
border: 1px solid var(--react-autoql-border-color);
|
|
1081
|
+
border-radius: 4px;
|
|
1082
|
+
background: var(--react-autoql-background-color-secondary, white); }
|
|
1083
|
+
.react-autoql-select-and-label .react-autoql-select.outlined.react-autoql-select-small {
|
|
1084
|
+
padding: 0px 14px; }
|
|
1085
|
+
.react-autoql-select-and-label .react-autoql-select.outlined:hover {
|
|
1086
|
+
color: var(--react-autoql-accent-color);
|
|
1087
|
+
border-color: var(--react-autoql-accent-color); }
|
|
1088
|
+
.react-autoql-select-and-label .react-autoql-select .react-autoql-select-text {
|
|
1089
|
+
display: block;
|
|
1090
|
+
height: 100%; }
|
|
1091
|
+
.react-autoql-select-and-label .react-autoql-select .react-autoql-select-text .react-autoql-select-text-placeholder {
|
|
1092
|
+
color: var(--react-autoql-text-color-placeholder);
|
|
1093
|
+
font-style: italic; }
|
|
1094
|
+
.react-autoql-select-and-label .react-autoql-select .react-autoql-select-arrow {
|
|
1095
|
+
display: flex;
|
|
1096
|
+
align-items: center;
|
|
1097
|
+
padding-left: 8px;
|
|
1098
|
+
font-size: 0.875em;
|
|
1099
|
+
color: var(--react-autoql-text-color-placeholder); }
|
|
1009
1100
|
|
|
1010
1101
|
.react-autoql-select-popup-container {
|
|
1011
1102
|
background: var(--react-autoql-background-color-secondary);
|
|
1012
|
-
padding: 10px 0;
|
|
1013
1103
|
max-height: 300px;
|
|
1014
1104
|
overflow-y: auto; }
|
|
1015
|
-
.react-autoql-select-popup-container .react-autoql-select-option > span {
|
|
1016
|
-
display: flex;
|
|
1017
|
-
flex-direction: row;
|
|
1018
|
-
align-items: center;
|
|
1019
|
-
justify-content: flex-start; }
|
|
1020
|
-
.react-autoql-select-popup-container .react-autoql-select-option.active {
|
|
1021
|
-
background: var(--react-autoql-hover-color); }
|
|
1022
|
-
.react-autoql-select-popup-container .react-autoql-select-popup {
|
|
1023
|
-
list-style-type: none;
|
|
1024
|
-
width: 100%;
|
|
1025
|
-
margin: 0;
|
|
1026
|
-
padding: 0; }
|
|
1027
|
-
.react-autoql-select-popup-container .react-autoql-select-popup li {
|
|
1028
|
-
color: var(--react-autoql-text-color-primary);
|
|
1029
|
-
width: 100%;
|
|
1030
|
-
height: 35px;
|
|
1031
|
-
line-height: 35px;
|
|
1032
|
-
padding: 0 20px;
|
|
1033
|
-
cursor: pointer; }
|
|
1034
|
-
.react-autoql-select-popup-container .react-autoql-select-popup li:hover {
|
|
1035
|
-
background: var(--react-autoql-hover-color); }
|
|
1036
1105
|
|
|
1037
1106
|
g.legendOrdinal,
|
|
1038
1107
|
g.legendOrdinal tspan {
|
|
@@ -1123,8 +1192,6 @@ g.legendOrdinal tspan {
|
|
|
1123
1192
|
outline: none !important; }
|
|
1124
1193
|
.number-axis-selector-popover .number-axis-selector-popover-content .react-autoql-list-item .react-autoql-checkbox {
|
|
1125
1194
|
margin-left: 20px; }
|
|
1126
|
-
.number-axis-selector-popover .number-axis-selector-popover-content .react-autoql-checkbox-tick {
|
|
1127
|
-
left: 2px; }
|
|
1128
1195
|
.number-axis-selector-popover .number-axis-selector-popover-content .react-autoql-checkbox__input {
|
|
1129
1196
|
width: 16px;
|
|
1130
1197
|
height: 16px; }
|
|
@@ -1152,7 +1219,7 @@ g.legendOrdinal tspan {
|
|
|
1152
1219
|
stroke-width: 0.5px; }
|
|
1153
1220
|
.number-axis-selector-popover .number-axis-selector-popover-content .axis-series-selector .react-autoql-selectable-list {
|
|
1154
1221
|
margin-bottom: 10px; }
|
|
1155
|
-
.number-axis-selector-popover .number-axis-selector-popover-content .
|
|
1222
|
+
.number-axis-selector-popover .number-axis-selector-popover-content .agg-type-symbol .react-autoql-select {
|
|
1156
1223
|
font-weight: 600;
|
|
1157
1224
|
font-size: 12px;
|
|
1158
1225
|
height: 26px;
|
|
@@ -1499,37 +1566,25 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1499
1566
|
display: inline-block;
|
|
1500
1567
|
position: relative; }
|
|
1501
1568
|
|
|
1502
|
-
.react-autoql-select-
|
|
1503
|
-
padding: 5px 0;
|
|
1569
|
+
.react-autoql-select-popover-container.query-validation-select {
|
|
1504
1570
|
letter-spacing: 0.03em;
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
color: #d84830; }
|
|
1571
|
+
margin: 0; }
|
|
1572
|
+
|
|
1573
|
+
.query-validation-select .react-autoql-select-popup-container .react-autoql-menu-item {
|
|
1574
|
+
padding: 5px 15px; }
|
|
1575
|
+
|
|
1576
|
+
.query-validation-select .react-autoql-select-popup-container .react-autoql-menu-item:last-of-type {
|
|
1577
|
+
color: #d84830; }
|
|
1513
1578
|
|
|
1514
1579
|
.react-autoql-query-validation-query {
|
|
1515
1580
|
text-align: center; }
|
|
1516
1581
|
|
|
1517
|
-
.react-autoql-query-validation-execute-btn {
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
margin: 5px;
|
|
1524
|
-
margin-top: 24px;
|
|
1525
|
-
color: inherit;
|
|
1526
|
-
cursor: pointer;
|
|
1527
|
-
outline: none !important;
|
|
1528
|
-
transition: all 0.2s ease;
|
|
1529
|
-
box-shadow: var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15)) 0px 1px 0px; }
|
|
1530
|
-
|
|
1531
|
-
.react-autoql-query-validation-execute-btn:hover {
|
|
1532
|
-
border-color: #28a8e0; }
|
|
1582
|
+
.react-autoql-query-validation-execute-btn-container {
|
|
1583
|
+
display: flex;
|
|
1584
|
+
width: 100%; }
|
|
1585
|
+
.react-autoql-query-validation-execute-btn-container .react-autoql-btn.react-autoql-query-validation-execute-btn {
|
|
1586
|
+
margin-top: 24px;
|
|
1587
|
+
flex: 1; }
|
|
1533
1588
|
|
|
1534
1589
|
.react-autoql-execute-query-icon {
|
|
1535
1590
|
font-size: 16px;
|
|
@@ -1543,21 +1598,22 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1543
1598
|
vertical-align: top;
|
|
1544
1599
|
fill: var(--react-autoql-accent-color); }
|
|
1545
1600
|
|
|
1546
|
-
.react-autoql-query-validation-select {
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1601
|
+
.react-autoql-query-validation-select.react-autoql-select-and-label {
|
|
1602
|
+
padding: 0 !important; }
|
|
1603
|
+
.react-autoql-query-validation-select.react-autoql-select-and-label .react-autoql-select {
|
|
1604
|
+
position: relative;
|
|
1605
|
+
height: 2em !important;
|
|
1606
|
+
background: none;
|
|
1607
|
+
outline: none !important;
|
|
1608
|
+
border: none;
|
|
1609
|
+
letter-spacing: 0.05em;
|
|
1610
|
+
font-family: inherit;
|
|
1611
|
+
font-size: inherit;
|
|
1612
|
+
margin: 0;
|
|
1613
|
+
padding: 0 !important;
|
|
1614
|
+
border-radius: 0;
|
|
1615
|
+
border-bottom: 1px dashed;
|
|
1616
|
+
color: var(--react-autoql-accent-color); }
|
|
1561
1617
|
|
|
1562
1618
|
.react-autoql-query-validation-delete-button {
|
|
1563
1619
|
position: relative;
|
|
@@ -1578,14 +1634,18 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1578
1634
|
max-width: 300px; }
|
|
1579
1635
|
|
|
1580
1636
|
.single-value-response-flex-container {
|
|
1581
|
-
flex: 1;
|
|
1637
|
+
flex: 1;
|
|
1638
|
+
display: flex;
|
|
1639
|
+
justify-content: center;
|
|
1640
|
+
align-items: center; }
|
|
1582
1641
|
.single-value-response-flex-container .single-value-response-container {
|
|
1583
1642
|
width: 100%;
|
|
1584
1643
|
text-align: center; }
|
|
1585
1644
|
.single-value-response-flex-container .single-value-response-container .single-value-response {
|
|
1586
1645
|
color: inherit;
|
|
1587
1646
|
cursor: unset;
|
|
1588
|
-
font-size: 20px;
|
|
1647
|
+
font-size: 20px;
|
|
1648
|
+
font-weight: 400; }
|
|
1589
1649
|
.single-value-response-flex-container .single-value-response-container .single-value-response:hover {
|
|
1590
1650
|
color: inherit; }
|
|
1591
1651
|
.single-value-response-flex-container .single-value-response-container .single-value-response.with-drilldown:hover {
|
|
@@ -1665,7 +1725,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1665
1725
|
cursor: pointer; }
|
|
1666
1726
|
|
|
1667
1727
|
.viz-toolbar {
|
|
1668
|
-
display:
|
|
1728
|
+
display: flex;
|
|
1729
|
+
flex-direction: row;
|
|
1669
1730
|
background: inherit;
|
|
1670
1731
|
padding: 5px;
|
|
1671
1732
|
border-radius: 6px;
|
|
@@ -1673,20 +1734,21 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1673
1734
|
background: var(--react-autoql-background-color-secondary);
|
|
1674
1735
|
border: 1px solid var(--react-autoql-border-color);
|
|
1675
1736
|
box-shadow: 0px 2px 3px -2px var(--react-autoql-box-shadow-color); }
|
|
1676
|
-
.viz-toolbar.vertical
|
|
1677
|
-
|
|
1737
|
+
.viz-toolbar.vertical {
|
|
1738
|
+
flex-direction: column; }
|
|
1678
1739
|
|
|
1679
1740
|
.react-autoql-toolbar-btn {
|
|
1680
1741
|
height: 28px;
|
|
1681
1742
|
width: 28px;
|
|
1743
|
+
display: flex;
|
|
1744
|
+
justify-content: center;
|
|
1745
|
+
align-items: center;
|
|
1682
1746
|
background: none;
|
|
1683
1747
|
border: none;
|
|
1748
|
+
outline: none !important;
|
|
1684
1749
|
font-size: 16px;
|
|
1685
|
-
line-height: 28px;
|
|
1686
|
-
vertical-align: top;
|
|
1687
1750
|
color: var(--react-autoql-text-color-primary);
|
|
1688
|
-
cursor: pointer;
|
|
1689
|
-
outline: none !important; }
|
|
1751
|
+
cursor: pointer; }
|
|
1690
1752
|
.react-autoql-toolbar-btn.filter-btn {
|
|
1691
1753
|
line-height: 24px; }
|
|
1692
1754
|
.react-autoql-toolbar-btn.selected {
|
|
@@ -1744,6 +1806,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1744
1806
|
|
|
1745
1807
|
|
|
1746
1808
|
.ReactModal__Overlay {
|
|
1809
|
+
display: flex;
|
|
1810
|
+
justify-content: center;
|
|
1811
|
+
align-items: center;
|
|
1747
1812
|
background-color: transparent !important;
|
|
1748
1813
|
transition: background-color 0.2s ease-in-out;
|
|
1749
1814
|
z-index: 9999; }
|
|
@@ -1755,18 +1820,21 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1755
1820
|
background-color: transparent !important; }
|
|
1756
1821
|
|
|
1757
1822
|
.ReactModal__Content {
|
|
1823
|
+
position: initial !important;
|
|
1758
1824
|
display: flex;
|
|
1759
1825
|
flex-direction: column;
|
|
1760
1826
|
overflow: hidden !important;
|
|
1761
1827
|
transform: scale(0);
|
|
1762
1828
|
transition: all 0.2s ease-in-out;
|
|
1763
1829
|
color: var(--react-autoql-text-color-primary);
|
|
1764
|
-
border: 1px solid var(--react-autoql-border-color) !important;
|
|
1765
1830
|
background: var(--react-autoql-background-color-secondary) !important;
|
|
1766
1831
|
box-shadow: 0 0 14px 1px var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15));
|
|
1832
|
+
border: 1px solid var(--react-autoql-border-color) !important;
|
|
1833
|
+
border-radius: 4px !important;
|
|
1834
|
+
outline: none !important;
|
|
1767
1835
|
padding: 0 !important;
|
|
1768
|
-
margin:
|
|
1769
|
-
margin-
|
|
1836
|
+
margin-top: 20px;
|
|
1837
|
+
margin-bottom: 30px;
|
|
1770
1838
|
max-width: 90vw;
|
|
1771
1839
|
max-height: calc(100vh - 90px); }
|
|
1772
1840
|
.ReactModal__Content input.react-autoql-input,
|
|
@@ -1796,12 +1864,24 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1796
1864
|
overflow: hidden; }
|
|
1797
1865
|
|
|
1798
1866
|
.react-autoql-modal-header {
|
|
1867
|
+
display: flex;
|
|
1868
|
+
align-items: flex-start;
|
|
1799
1869
|
position: relative;
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1870
|
+
border-bottom: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.05)); }
|
|
1871
|
+
.react-autoql-modal-header .react-autoql-modal-header-title-container {
|
|
1872
|
+
flex: 1;
|
|
1873
|
+
text-align: center;
|
|
1874
|
+
padding: 14px 0px 14px 60px; }
|
|
1875
|
+
.react-autoql-modal-header .react-autoql-modal-header-title {
|
|
1876
|
+
display: flex;
|
|
1877
|
+
justify-content: center;
|
|
1878
|
+
align-items: center;
|
|
1879
|
+
font-size: 17px;
|
|
1880
|
+
margin: 3px; }
|
|
1881
|
+
.react-autoql-modal-header .react-autoql-modal-header-title .react-autoql-icon {
|
|
1882
|
+
margin-right: 5px; }
|
|
1883
|
+
.react-autoql-modal-header .react-autoql-modal-header-subtitle {
|
|
1884
|
+
font-size: 14px; }
|
|
1805
1885
|
|
|
1806
1886
|
.react-autoql-modal-footer {
|
|
1807
1887
|
position: relative;
|
|
@@ -1813,34 +1893,39 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1813
1893
|
.react-autoql-modal-body {
|
|
1814
1894
|
display: flex;
|
|
1815
1895
|
flex-direction: column;
|
|
1816
|
-
padding:
|
|
1896
|
+
padding: 20px 30px;
|
|
1817
1897
|
flex: 1; }
|
|
1818
1898
|
.react-autoql-modal-body h3 {
|
|
1819
1899
|
color: var(--react-autoql-text-color-primary); }
|
|
1820
1900
|
|
|
1821
1901
|
.react-autoql-modal-close-btn {
|
|
1822
|
-
|
|
1823
|
-
top: 10px;
|
|
1824
|
-
right: 18px;
|
|
1902
|
+
flex: 0;
|
|
1825
1903
|
font-size: 22px;
|
|
1904
|
+
margin: 16px;
|
|
1905
|
+
padding-left: 15px;
|
|
1826
1906
|
opacity: 0.6 !important;
|
|
1827
|
-
cursor: pointer;
|
|
1907
|
+
cursor: pointer;
|
|
1908
|
+
box-sizing: content-box; }
|
|
1828
1909
|
|
|
1829
1910
|
.react-autoql-modal-close-btn:hover {
|
|
1830
1911
|
opacity: 1 !important; }
|
|
1831
1912
|
|
|
1832
1913
|
|
|
1833
1914
|
.react-autoql-notifications-button-container {
|
|
1915
|
+
display: inline-flex;
|
|
1916
|
+
align-items: center;
|
|
1917
|
+
justify-content: center;
|
|
1834
1918
|
position: relative;
|
|
1835
|
-
display: inline-block;
|
|
1836
1919
|
font-size: inherit;
|
|
1837
1920
|
line-height: 1em;
|
|
1838
1921
|
width: 1em;
|
|
1839
1922
|
height: 1em; }
|
|
1840
1923
|
.react-autoql-notifications-button-container .react-autoql-notifications-button {
|
|
1841
1924
|
font-size: 1em;
|
|
1842
|
-
|
|
1843
|
-
|
|
1925
|
+
height: 1em;
|
|
1926
|
+
width: 1em;
|
|
1927
|
+
padding: 0;
|
|
1928
|
+
margin: 0; }
|
|
1844
1929
|
.react-autoql-notifications-button-container .react-autoql-notifications-badge {
|
|
1845
1930
|
position: absolute;
|
|
1846
1931
|
border: 2px solid #fff;
|
|
@@ -1857,97 +1942,259 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1857
1942
|
position: absolute;
|
|
1858
1943
|
display: inline-block;
|
|
1859
1944
|
border: 1px solid currentColor;
|
|
1860
|
-
background:
|
|
1945
|
+
background: var(--react-autoql-badge-color);
|
|
1861
1946
|
border-radius: 50%;
|
|
1862
1947
|
height: 0.6em;
|
|
1863
1948
|
width: 0.6em;
|
|
1864
1949
|
top: -0.2em;
|
|
1865
1950
|
right: -0.2em; }
|
|
1866
1951
|
|
|
1867
|
-
.react-autoql-input-container {
|
|
1952
|
+
.react-autoql-input-and-label-container {
|
|
1868
1953
|
position: relative;
|
|
1869
|
-
|
|
1870
|
-
display: inline-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
.react-autoql-input-container .react-autoql-input
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
.react-autoql-input-container .react-autoql-input
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
.react-autoql-input-container .react-autoql-input-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1954
|
+
padding: 2px 5px;
|
|
1955
|
+
display: inline-flex;
|
|
1956
|
+
flex-direction: column; }
|
|
1957
|
+
.react-autoql-input-and-label-container.react-autoql-input-full-width {
|
|
1958
|
+
display: flex; }
|
|
1959
|
+
.react-autoql-input-and-label-container .react-autoql-input-container {
|
|
1960
|
+
position: relative;
|
|
1961
|
+
display: inline-flex;
|
|
1962
|
+
flex-direction: row; }
|
|
1963
|
+
.react-autoql-input-and-label-container .react-autoql-input-container.react-autoql-input-small .react-autoql-input {
|
|
1964
|
+
min-height: 34px; }
|
|
1965
|
+
.react-autoql-input-and-label-container .react-autoql-input-container input::-webkit-outer-spin-button,
|
|
1966
|
+
.react-autoql-input-and-label-container .react-autoql-input-container input::-webkit-inner-spin-button {
|
|
1967
|
+
/* display: none; <- Crashes Chrome on hover */
|
|
1968
|
+
-webkit-appearance: none;
|
|
1969
|
+
margin: 0;
|
|
1970
|
+
/* <-- Apparently some margin are still there even though it's hidden */ }
|
|
1971
|
+
.react-autoql-input-and-label-container .react-autoql-input-container input[type='number'] {
|
|
1972
|
+
-moz-appearance: textfield;
|
|
1973
|
+
/* Firefox */ }
|
|
1974
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input-and-icon {
|
|
1975
|
+
flex: 1; }
|
|
1976
|
+
.react-autoql-input-and-label-container .react-autoql-input-container.with-select .react-autoql-input {
|
|
1977
|
+
border-radius: 0px 4px 4px 0px; }
|
|
1978
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-text-input-selector {
|
|
1979
|
+
flex: 0;
|
|
1980
|
+
margin: 0;
|
|
1981
|
+
padding: 0; }
|
|
1982
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-text-input-selector .react-autoql-select {
|
|
1983
|
+
border-radius: 4px 0px 0px 4px;
|
|
1984
|
+
border-right: none;
|
|
1985
|
+
margin: 0; }
|
|
1986
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input {
|
|
1987
|
+
border: 1px solid var(--react-autoql-border-color);
|
|
1988
|
+
border-radius: 4px;
|
|
1989
|
+
min-height: 38px;
|
|
1990
|
+
width: 100%;
|
|
1991
|
+
font-size: inherit;
|
|
1992
|
+
font-family: inherit;
|
|
1993
|
+
outline: none !important;
|
|
1994
|
+
transition: all 0.2s ease;
|
|
1995
|
+
transition-property: border-color, color, opacity;
|
|
1996
|
+
padding: 10px;
|
|
1997
|
+
line-height: 1em; }
|
|
1998
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input:disabled {
|
|
1999
|
+
background: var(--react-autoql-hover-color);
|
|
2000
|
+
border-color: var(--react-autoql-border-color) !important;
|
|
2001
|
+
cursor: default; }
|
|
2002
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input:hover, .react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input:focus {
|
|
2003
|
+
border-color: var(--react-autoql-accent-color); }
|
|
2004
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input.area {
|
|
2005
|
+
line-height: inherit; }
|
|
2006
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input:not(textarea) {
|
|
2007
|
+
padding: 0 10px; }
|
|
2008
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input.with-select {
|
|
2009
|
+
padding-left: 14px; }
|
|
2010
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input.with-icon {
|
|
2011
|
+
padding-left: 35px; }
|
|
2012
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input::-moz-placeholder {
|
|
2013
|
+
/* Chrome, Firefox, Opera, Safari 10.1+ */
|
|
2014
|
+
color: var(--react-autoql-text-color-placeholder);
|
|
2015
|
+
opacity: 1;
|
|
2016
|
+
/* Firefox */
|
|
2017
|
+
font-style: italic; }
|
|
2018
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input::placeholder {
|
|
2019
|
+
/* Chrome, Firefox, Opera, Safari 10.1+ */
|
|
2020
|
+
color: var(--react-autoql-text-color-placeholder);
|
|
2021
|
+
opacity: 1;
|
|
2022
|
+
/* Firefox */
|
|
2023
|
+
font-style: italic; }
|
|
2024
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input-icon {
|
|
2025
|
+
position: absolute;
|
|
2026
|
+
display: flex;
|
|
2027
|
+
justify-content: center;
|
|
2028
|
+
align-items: center;
|
|
2029
|
+
transition: color 0.2s ease, opacity 0.2s ease;
|
|
2030
|
+
color: var(--react-autoql-text-color-placeholder);
|
|
2031
|
+
height: 100%;
|
|
2032
|
+
line-height: 100%;
|
|
2033
|
+
left: 12px;
|
|
2034
|
+
top: 0; }
|
|
2035
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-input-icon span.react-autoql-icon svg {
|
|
2036
|
+
height: 17px;
|
|
2037
|
+
width: 17px; }
|
|
2038
|
+
.react-autoql-input-and-label-container .react-autoql-input-container .react-autoql-text-input-selector .react-autoql-select:hover {
|
|
2039
|
+
border-color: var(--react-autoql-accent-color); }
|
|
2040
|
+
.react-autoql-input-and-label-container .react-autoql-input-container:hover .react-autoql-input {
|
|
2041
|
+
border-left-color: var(--react-autoql-accent-color); }
|
|
2042
|
+
.react-autoql-input-and-label-container .react-autoql-input-container:hover .react-autoql-input-icon {
|
|
2043
|
+
color: var(--react-autoql-accent-color); }
|
|
2044
|
+
|
|
2045
|
+
.react-autoql-input-label {
|
|
2046
|
+
display: flex;
|
|
2047
|
+
align-items: center;
|
|
2048
|
+
padding-bottom: 3px;
|
|
2049
|
+
margin: 0;
|
|
2050
|
+
font-size: 0.9em;
|
|
2051
|
+
color: var(--react-autoql-text-color-primary);
|
|
2052
|
+
opacity: 0.8;
|
|
2053
|
+
white-space: nowrap; }
|
|
2054
|
+
.react-autoql-input-label .react-autoql-icon {
|
|
2055
|
+
margin: 0 3px;
|
|
2056
|
+
opacity: 0.6; }
|
|
2057
|
+
|
|
2058
|
+
.react-autoql-chip {
|
|
2059
|
+
position: relative;
|
|
2060
|
+
display: inline-flex;
|
|
2061
|
+
flex-direction: row;
|
|
2062
|
+
flex-wrap: nowrap;
|
|
2063
|
+
justify-content: space-between;
|
|
2064
|
+
border: 1px solid transparent;
|
|
2065
|
+
background-color: var(--react-autoql-background-color-secondary);
|
|
2066
|
+
color: var(--react-autoql-text-color-primary);
|
|
2067
|
+
transition: all 0.2s ease;
|
|
2068
|
+
margin-right: 5px;
|
|
2069
|
+
font-size: 0.875em;
|
|
2070
|
+
border-radius: 50px;
|
|
2071
|
+
padding: 5px 12px;
|
|
2072
|
+
overflow: hidden; }
|
|
2073
|
+
.react-autoql-chip .react-autoql-chip-content {
|
|
2074
|
+
display: flex;
|
|
2075
|
+
flex-wrap: nowrap;
|
|
2076
|
+
justify-content: space-between;
|
|
2077
|
+
align-items: center; }
|
|
2078
|
+
.react-autoql-chip .react-autoql-chip-background {
|
|
2079
|
+
position: absolute;
|
|
2080
|
+
top: 0;
|
|
2081
|
+
left: 0;
|
|
2082
|
+
bottom: 0;
|
|
2083
|
+
right: 0;
|
|
2084
|
+
opacity: 0.3;
|
|
2085
|
+
background: var(--react-autoql-accent-color); }
|
|
2086
|
+
.react-autoql-chip.selected {
|
|
2087
|
+
background-color: var(--react-autoql-accent-color);
|
|
2088
|
+
color: var(--react-autoql-text-color-accent); }
|
|
2089
|
+
.react-autoql-chip .react-autoql-chip-delete-btn {
|
|
2090
|
+
margin-left: 8px;
|
|
2091
|
+
transition: opacity 0.2s ease;
|
|
2092
|
+
opacity: 0.7;
|
|
2093
|
+
cursor: pointer; }
|
|
2094
|
+
.react-autoql-chip .react-autoql-chip-delete-btn:hover {
|
|
2095
|
+
opacity: 1;
|
|
2096
|
+
color: var(--react-autoql-accent-color); }
|
|
2097
|
+
|
|
2098
|
+
.react-autoql-confirm-popover-click-wrapper {
|
|
2099
|
+
display: flex; }
|
|
2100
|
+
|
|
2101
|
+
.react-autoql-confirm-popover-content {
|
|
2102
|
+
padding: 10px; }
|
|
2103
|
+
.react-autoql-confirm-popover-content .react-autoql-confirm-popover-title {
|
|
2104
|
+
display: flex;
|
|
2105
|
+
align-items: center;
|
|
2106
|
+
padding: 10px;
|
|
2107
|
+
margin-bottom: 8px;
|
|
2108
|
+
font-size: 15px;
|
|
2109
|
+
min-width: 200px; }
|
|
2110
|
+
.react-autoql-confirm-popover-content .react-autoql-confirm-popover-title .react-autoql-icon {
|
|
2111
|
+
margin-right: 6px; }
|
|
2112
|
+
.react-autoql-confirm-popover-content .react-autoql-confirm-popover-button-container {
|
|
2113
|
+
display: flex;
|
|
2114
|
+
flex-wrap: nowrap;
|
|
2115
|
+
justify-content: flex-end;
|
|
2116
|
+
align-items: center; }
|
|
2117
|
+
|
|
2118
|
+
.react-autoql-rule-simple .react-autoql-data-alert-filters-container {
|
|
2119
|
+
padding: 5px;
|
|
2120
|
+
margin-bottom: 20px; }
|
|
2121
|
+
|
|
2122
|
+
.react-autoql-rule-simple.with-query-validation .react-autoql-rule-condition-select-input-container {
|
|
2123
|
+
margin-bottom: 30px; }
|
|
2124
|
+
|
|
2125
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container {
|
|
2126
|
+
display: flex;
|
|
2127
|
+
align-items: flex-end;
|
|
2128
|
+
margin-top: 5px; }
|
|
2129
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-rule-input .react-autoql-input-icon.react-autoql-bubbles-outlined {
|
|
2130
|
+
font-size: 18px !important; }
|
|
2131
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .rule-second-input-type-select {
|
|
2132
|
+
text-decoration: underline;
|
|
2133
|
+
cursor: pointer; }
|
|
2134
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-input-container,
|
|
2135
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-rule-condition-select {
|
|
2136
|
+
margin: 0 !important; }
|
|
2137
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-input-container:hover + .react-autoql-rule-term-type-selector,
|
|
2138
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-input-container.focus + .react-autoql-rule-term-type-selector {
|
|
2139
|
+
color: var(--react-autoql-accent-color);
|
|
2140
|
+
border-color: var(--react-autoql-accent-color); }
|
|
2141
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-rule-input {
|
|
2142
|
+
display: flex;
|
|
2143
|
+
flex-direction: column;
|
|
2144
|
+
flex: 1; }
|
|
2145
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-rule-input .react-autoql-input-icon.react-autoql-bubbles-outlined {
|
|
2146
|
+
padding-bottom: 2px; }
|
|
2147
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-rule-first-input-container {
|
|
2148
|
+
display: flex;
|
|
2149
|
+
flex-direction: column;
|
|
2150
|
+
flex: 1;
|
|
2151
|
+
margin-bottom: 28px; }
|
|
2152
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-rule-condition-select-input-container {
|
|
2153
|
+
display: flex;
|
|
2154
|
+
flex-direction: column;
|
|
2155
|
+
padding: 2px 0;
|
|
2156
|
+
border-radius: 4px;
|
|
2157
|
+
transition: all 0.3s ease;
|
|
2158
|
+
flex: 0 0 auto;
|
|
2159
|
+
margin-right: 12px; }
|
|
2160
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-rule-second-input-container {
|
|
2161
|
+
display: flex;
|
|
2162
|
+
flex-direction: column;
|
|
2163
|
+
padding: 2px 0;
|
|
2164
|
+
border-radius: 4px;
|
|
2165
|
+
transition: all 0.3s ease;
|
|
2166
|
+
flex: 1; }
|
|
2167
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-rule-second-input-container .react-autoql-rule-condition-select {
|
|
2168
|
+
flex: 0;
|
|
2169
|
+
flex-basis: 33px;
|
|
1933
2170
|
height: 39px; }
|
|
1934
|
-
.react-autoql-notification-rule-container .react-autoql-rule-second-input-container .react-autoql-rule-input {
|
|
1935
|
-
flex: 1;
|
|
1936
|
-
|
|
1937
|
-
.react-autoql-notification-rule-container .react-autoql-rule-second-input-container .react-autoql-delete-compare-btn {
|
|
2171
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-rule-second-input-container .react-autoql-rule-input {
|
|
2172
|
+
flex: 1; }
|
|
2173
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-rule-second-input-container .react-autoql-delete-compare-btn {
|
|
1938
2174
|
cursor: pointer;
|
|
1939
2175
|
opacity: 0.6;
|
|
1940
2176
|
padding: 6px; }
|
|
1941
|
-
.react-autoql-notification-rule-container .react-autoql-rule-second-input-container .react-autoql-delete-compare-btn:hover {
|
|
2177
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-rule-second-input-container .react-autoql-delete-compare-btn:hover {
|
|
1942
2178
|
opacity: 1; }
|
|
1943
|
-
.react-autoql-notification-rule-container .react-autoql-rule-second-input-container.hidden {
|
|
2179
|
+
.react-autoql-rule-simple .react-autoql-notification-rule-container .react-autoql-rule-second-input-container.hidden {
|
|
1944
2180
|
display: none; }
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
2181
|
+
|
|
2182
|
+
.data-alert-rule-formatted-query {
|
|
2183
|
+
display: flex;
|
|
2184
|
+
align-items: center;
|
|
2185
|
+
margin-top: 3px;
|
|
2186
|
+
font-weight: 600;
|
|
2187
|
+
padding: 3px 5px;
|
|
2188
|
+
margin-bottom: 20px;
|
|
2189
|
+
margin-top: 10px; }
|
|
2190
|
+
.data-alert-rule-formatted-query .data-alert-rule-tooltip-icon {
|
|
2191
|
+
margin: 0;
|
|
2192
|
+
padding: 0;
|
|
2193
|
+
margin-left: 10px;
|
|
2194
|
+
color: var(--react-autoql-text-color-placeholder);
|
|
2195
|
+
opacity: 0.6; }
|
|
2196
|
+
.data-alert-rule-formatted-query .react-autoql-icon.react-autoql-bubbles-outlined {
|
|
2197
|
+
margin-right: 5px; }
|
|
1951
2198
|
|
|
1952
2199
|
.read-only-rule-term {
|
|
1953
2200
|
display: inline-block;
|
|
@@ -1960,22 +2207,31 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1960
2207
|
margin-top: 2px;
|
|
1961
2208
|
border-radius: 4px; }
|
|
1962
2209
|
|
|
1963
|
-
.
|
|
1964
|
-
|
|
1965
|
-
|
|
2210
|
+
.rule-simple-validation-container {
|
|
2211
|
+
display: flex;
|
|
2212
|
+
justify-content: flex-end;
|
|
2213
|
+
padding-top: 5px;
|
|
2214
|
+
height: 30px; }
|
|
2215
|
+
.rule-simple-validation-container .expression-term-validation {
|
|
2216
|
+
display: inline-flex;
|
|
2217
|
+
justify-content: flex-end;
|
|
2218
|
+
align-items: center;
|
|
2219
|
+
height: 20px; }
|
|
2220
|
+
.rule-simple-validation-container .expression-term-validation .react-autoql-icon {
|
|
2221
|
+
margin-right: 5px;
|
|
2222
|
+
vertical-align: text-bottom;
|
|
2223
|
+
margin-bottom: 1px; }
|
|
2224
|
+
.rule-simple-validation-container .expression-term-validation-loading {
|
|
2225
|
+
color: var(--react-autoql-text-color-placeholder); }
|
|
2226
|
+
.rule-simple-validation-container .expression-term-validation-error {
|
|
2227
|
+
color: var(--react-autoql-warning-color); }
|
|
2228
|
+
.rule-simple-validation-container .expression-term-validation-valid {
|
|
2229
|
+
color: var(--react-autoql-success-color); }
|
|
1966
2230
|
|
|
1967
2231
|
.notification-rule-outer-container {
|
|
1968
2232
|
position: relative;
|
|
1969
|
-
border: 1px solid transparent;
|
|
1970
|
-
border-radius: 4px;
|
|
1971
2233
|
padding-bottom: 5px; }
|
|
1972
2234
|
|
|
1973
|
-
.expression-error-message {
|
|
1974
|
-
padding-left: 5px; }
|
|
1975
|
-
|
|
1976
|
-
.data-alerts-container.read-only .react-autoql-notification-group-container {
|
|
1977
|
-
border: none; }
|
|
1978
|
-
|
|
1979
2235
|
.react-autoql-notification-list-item {
|
|
1980
2236
|
display: flex;
|
|
1981
2237
|
flex-direction: column;
|
|
@@ -1984,54 +2240,117 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1984
2240
|
overflow: hidden;
|
|
1985
2241
|
background: var(--react-autoql-background-color-secondary, #fff);
|
|
1986
2242
|
border-radius: 4px;
|
|
1987
|
-
box-shadow:
|
|
2243
|
+
box-shadow: var(--react-autoql-box-shadow-1);
|
|
1988
2244
|
margin-bottom: 8px;
|
|
1989
2245
|
color: var(--react-autoql-text-color-primary, rgba(0, 0, 0, 0.6));
|
|
1990
2246
|
font-family: var(--react-autoql-font-family), sans-serif;
|
|
1991
2247
|
transition: all 1s ease;
|
|
1992
2248
|
transition: height 0.3s cubic-bezier(0.26, 0.26, 0, 1);
|
|
1993
2249
|
animation: slideIn 0.5s cubic-bezier(0.26, 0.26, 0, 1);
|
|
1994
|
-
animation-fill-mode: both;
|
|
1995
|
-
|
|
2250
|
+
animation-fill-mode: both; }
|
|
2251
|
+
.react-autoql-notification-list-item.is-error .react-autoql-notification-alert-strip {
|
|
2252
|
+
background: var(--react-autoql-warning-color); }
|
|
2253
|
+
.react-autoql-notification-list-item.is-error.unread .react-autoql-notification-display-name-container .react-autoql-notification-display-name {
|
|
2254
|
+
color: var(--react-autoql-warning-color); }
|
|
2255
|
+
.react-autoql-notification-list-item .react-autoql-notification-item-expand-arrow {
|
|
2256
|
+
display: flex;
|
|
2257
|
+
justify-content: center;
|
|
2258
|
+
align-items: center;
|
|
2259
|
+
position: absolute;
|
|
2260
|
+
width: 100%;
|
|
2261
|
+
bottom: 10px;
|
|
2262
|
+
opacity: 0;
|
|
2263
|
+
transition: opacity 0.2s ease;
|
|
2264
|
+
color: var(--react-autoql-text-color-primary);
|
|
2265
|
+
pointer-events: none; }
|
|
2266
|
+
.react-autoql-notification-list-item .react-autoql-notification-item-expand-arrow .react-autoql-icon {
|
|
2267
|
+
transform: scalex(1.75); }
|
|
2268
|
+
.react-autoql-notification-list-item .react-autoql-notification-item-hover-overlay {
|
|
2269
|
+
position: absolute;
|
|
2270
|
+
top: 0;
|
|
2271
|
+
bottom: 0;
|
|
2272
|
+
right: 0;
|
|
2273
|
+
left: 0;
|
|
2274
|
+
background-color: var(--react-autoql-accent-color);
|
|
2275
|
+
opacity: 0;
|
|
2276
|
+
pointer-events: none; }
|
|
1996
2277
|
.react-autoql-notification-list-item .single-value-response {
|
|
1997
2278
|
font-size: 32px;
|
|
1998
2279
|
margin-top: -6px;
|
|
1999
2280
|
opacity: 0.9; }
|
|
2000
|
-
.react-autoql-notification-list-item .
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
.react-autoql-notification-list-item .
|
|
2281
|
+
.react-autoql-notification-list-item .notification-error-message-container {
|
|
2282
|
+
text-align: center;
|
|
2283
|
+
padding: 30px;
|
|
2284
|
+
border-top: 1px solid var(--react-autoql-background-color-primary); }
|
|
2285
|
+
.react-autoql-notification-list-item .notification-error-reinitialize-btn {
|
|
2286
|
+
margin: 20px; }
|
|
2287
|
+
.react-autoql-notification-list-item .notification-error-reinitialize-btn.restart-success {
|
|
2288
|
+
background-color: var(--react-autoql-success-color);
|
|
2289
|
+
border-color: var(--react-autoql-success-color);
|
|
2290
|
+
color: #ffffff;
|
|
2291
|
+
pointer-events: none;
|
|
2292
|
+
cursor: default; }
|
|
2293
|
+
.react-autoql-notification-list-item .notification-error-reinitialize-btn,
|
|
2294
|
+
.react-autoql-notification-list-item .notification-delete-confirm-popover {
|
|
2295
|
+
display: inline-flex; }
|
|
2296
|
+
.react-autoql-notification-list-item .react-autoql-notification-query-title {
|
|
2005
2297
|
font-weight: 600;
|
|
2006
2298
|
padding-top: 20px;
|
|
2007
2299
|
padding-bottom: 5px; }
|
|
2008
|
-
.react-autoql-notification-list-item
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2300
|
+
.react-autoql-notification-list-item .react-autoql-notification-condition-statement {
|
|
2301
|
+
text-overflow: ellipsis;
|
|
2302
|
+
overflow: hidden;
|
|
2303
|
+
padding: 10px 20px;
|
|
2304
|
+
font-weight: 500;
|
|
2305
|
+
color: var(--react-autoql-accent-color); }
|
|
2306
|
+
.react-autoql-notification-list-item .react-autoql-notification-condition-statement .data-alert-condition-statement-query1,
|
|
2307
|
+
.react-autoql-notification-list-item .react-autoql-notification-condition-statement .data-alert-condition-statement-query2 {
|
|
2308
|
+
font-style: italic; }
|
|
2309
|
+
.react-autoql-notification-list-item .react-autoql-notification-condition-statement .data-alert-condition-statement-operator {
|
|
2310
|
+
text-decoration: underline; }
|
|
2311
|
+
.react-autoql-notification-list-item .react-autoql-notification-condition-statement .data-alerts-container,
|
|
2312
|
+
.react-autoql-notification-list-item .react-autoql-notification-condition-statement .notification-rule-outer-container {
|
|
2313
|
+
display: inline; }
|
|
2314
|
+
.react-autoql-notification-list-item:hover:not(.expanded) .react-autoql-notification-item-expand-arrow {
|
|
2315
|
+
opacity: 0.5; }
|
|
2316
|
+
.react-autoql-notification-list-item:hover:not(.expanded) .react-autoql-notification-item-hover-overlay, .react-autoql-notification-list-item.menu-open:not(.expanded) .react-autoql-notification-item-hover-overlay {
|
|
2317
|
+
opacity: 0.05; }
|
|
2318
|
+
.react-autoql-notification-list-item.unread .react-autoql-notification-display-name-container .react-autoql-notification-display-name {
|
|
2319
|
+
font-weight: 500;
|
|
2320
|
+
color: var(--react-autoql-accent-color); }
|
|
2321
|
+
.react-autoql-notification-list-item.unread .react-autoql-notification-display-name-container .react-autoql-notification-display-name .react-autoql-icon svg {
|
|
2322
|
+
stroke-width: 2.5px; }
|
|
2323
|
+
.react-autoql-notification-list-item.unread .react-autoql-notification-alert-strip {
|
|
2024
2324
|
opacity: 1; }
|
|
2025
2325
|
.react-autoql-notification-list-item .react-autoql-notification-expanded-content {
|
|
2026
2326
|
display: flex;
|
|
2027
2327
|
flex-direction: column;
|
|
2028
2328
|
justify-content: stretch;
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2329
|
+
flex-wrap: nowrap;
|
|
2330
|
+
flex: 0 1 auto;
|
|
2331
|
+
transition: max-height 0.3s ease, opacity 0.3s ease;
|
|
2332
|
+
opacity: 1;
|
|
2333
|
+
min-height: 0px;
|
|
2334
|
+
max-height: 0px;
|
|
2335
|
+
overflow: hidden; }
|
|
2336
|
+
.react-autoql-notification-list-item .react-autoql-notification-expanded-content.loading .react-autoql-notification-content-container,
|
|
2337
|
+
.react-autoql-notification-list-item .react-autoql-notification-expanded-content.loading .react-autoql-notification-extra-content {
|
|
2338
|
+
opacity: 0; }
|
|
2339
|
+
.react-autoql-notification-list-item .react-autoql-notification-expanded-content.expanded {
|
|
2340
|
+
position: relative;
|
|
2341
|
+
min-height: 70px;
|
|
2342
|
+
max-height: 500px; }
|
|
2343
|
+
.react-autoql-notification-list-item .react-autoql-notification-expanded-content.expanded .react-autoql-notification-query-data-container {
|
|
2344
|
+
flex: 1;
|
|
2345
|
+
visibility: visible;
|
|
2346
|
+
position: relative;
|
|
2347
|
+
opacity: 1; }
|
|
2348
|
+
.react-autoql-notification-list-item .react-autoql-notification-expanded-content.expanded .react-autoql-notification-query-data-container .react-autoql-response-content-container {
|
|
2349
|
+
max-height: 300px !important; }
|
|
2350
|
+
.react-autoql-notification-list-item .react-autoql-notification-expanded-content.collapsed {
|
|
2351
|
+
visibility: hidden;
|
|
2352
|
+
pointer-events: none;
|
|
2353
|
+
opacity: 0; }
|
|
2035
2354
|
.react-autoql-notification-list-item .react-autoql-notification-extra-content {
|
|
2036
2355
|
flex: 0;
|
|
2037
2356
|
flex-basis: 55px;
|
|
@@ -2064,37 +2383,33 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2064
2383
|
margin: 0 10px;
|
|
2065
2384
|
padding-top: 20px;
|
|
2066
2385
|
padding-bottom: 7px; }
|
|
2067
|
-
.react-autoql-notification-list-item .react-autoql-notification-
|
|
2068
|
-
flex: 1;
|
|
2386
|
+
.react-autoql-notification-list-item .react-autoql-notification-content-container {
|
|
2069
2387
|
display: flex;
|
|
2070
|
-
flex-direction:
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
overflow: hidden; }
|
|
2074
|
-
.react-autoql-notification-list-item .react-autoql-notification-details-container .react-autoql-notification-details {
|
|
2075
|
-
flex: 1 1;
|
|
2076
|
-
padding: 20px;
|
|
2077
|
-
padding-top: 0;
|
|
2078
|
-
opacity: 0.9;
|
|
2079
|
-
border-left: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.05)); }
|
|
2388
|
+
flex-direction: column;
|
|
2389
|
+
overflow: hidden;
|
|
2390
|
+
width: 100%; }
|
|
2080
2391
|
.react-autoql-notification-list-item .react-autoql-notification-data-container {
|
|
2081
2392
|
display: flex;
|
|
2082
|
-
flex-direction:
|
|
2083
|
-
justify-content: stretch;
|
|
2393
|
+
flex-direction: column;
|
|
2084
2394
|
flex: 3 3 0px;
|
|
2085
|
-
overflow: hidden;
|
|
2086
|
-
|
|
2395
|
+
overflow: hidden;
|
|
2396
|
+
border-top: 1px solid var(--react-autoql-background-color-primary); }
|
|
2397
|
+
.react-autoql-notification-list-item .react-autoql-notification-data-container .single-value-response-flex-container {
|
|
2398
|
+
padding: 10px;
|
|
2399
|
+
padding-bottom: 20px; }
|
|
2400
|
+
.react-autoql-notification-list-item .react-autoql-notification-data-container .single-value-response-flex-container .single-value-response {
|
|
2401
|
+
font-size: 17px; }
|
|
2402
|
+
.react-autoql-notification-list-item .react-autoql-notification-data-container .react-autoql-notification-chart-container {
|
|
2087
2403
|
flex: 1;
|
|
2088
|
-
height: 100%;
|
|
2089
|
-
width: 0;
|
|
2090
2404
|
display: flex;
|
|
2091
2405
|
flex-direction: column;
|
|
2092
|
-
padding: 0px
|
|
2406
|
+
padding: 10px 10px 0px 10px;
|
|
2407
|
+
overflow: hidden; }
|
|
2093
2408
|
.react-autoql-notification-list-item .react-autoql-notification-data-container .react-autoql-table-container {
|
|
2094
2409
|
padding: 0 10px; }
|
|
2095
2410
|
.react-autoql-notification-list-item .react-autoql-notification-data-container .react-autoql-table {
|
|
2096
2411
|
color: currentColor;
|
|
2097
|
-
font-size:
|
|
2412
|
+
font-size: 12px; }
|
|
2098
2413
|
.react-autoql-notification-list-item .react-autoql-notification-data-title {
|
|
2099
2414
|
line-height: 22px;
|
|
2100
2415
|
font-size: 12px;
|
|
@@ -2102,39 +2417,26 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2102
2417
|
color: var(--react-autoql-text-color-primary);
|
|
2103
2418
|
opacity: 0.5;
|
|
2104
2419
|
padding: 8px 20px; }
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
margin-right: 3px;
|
|
2126
|
-
opacity: 0;
|
|
2127
|
-
width: 36px;
|
|
2128
|
-
height: 36px;
|
|
2129
|
-
padding: 9px;
|
|
2130
|
-
border-radius: 20px;
|
|
2131
|
-
display: inline-block;
|
|
2132
|
-
line-height: 20px;
|
|
2133
|
-
background-color: transparent;
|
|
2134
|
-
transition: all 0.2s ease;
|
|
2135
|
-
cursor: pointer; }
|
|
2136
|
-
.react-autoql-notification-list-item .react-autoql-notification-delete-icon:hover {
|
|
2137
|
-
background-color: var(--react-autoql-background-color-primary, #ececec); }
|
|
2420
|
+
.react-autoql-notification-list-item .react-autoql-notification-options-btn-container {
|
|
2421
|
+
display: flex;
|
|
2422
|
+
flex-direction: column;
|
|
2423
|
+
justify-content: flex-start;
|
|
2424
|
+
align-items: center;
|
|
2425
|
+
padding: 13px 8px; }
|
|
2426
|
+
.react-autoql-notification-list-item .react-autoql-notification-options-btn-container .react-autoql-notification-options-btn {
|
|
2427
|
+
display: flex;
|
|
2428
|
+
opacity: 0.8;
|
|
2429
|
+
width: 40px;
|
|
2430
|
+
height: 40px;
|
|
2431
|
+
font-size: 24px;
|
|
2432
|
+
line-height: 20px;
|
|
2433
|
+
border-radius: 20px;
|
|
2434
|
+
background-color: transparent;
|
|
2435
|
+
transition: background-color 0.2s ease;
|
|
2436
|
+
cursor: pointer; }
|
|
2437
|
+
.react-autoql-notification-list-item .react-autoql-notification-options-btn-container .react-autoql-notification-options-btn:hover {
|
|
2438
|
+
opacity: 1;
|
|
2439
|
+
background-color: var(--react-autoql-background-color-primary, #ececec); }
|
|
2138
2440
|
.react-autoql-notification-list-item .react-autoql-notification-alert-icon {
|
|
2139
2441
|
position: absolute;
|
|
2140
2442
|
top: -7px;
|
|
@@ -2156,10 +2458,31 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2156
2458
|
transition-property: opacity;
|
|
2157
2459
|
transition-duration: 0.2s;
|
|
2158
2460
|
transition-timing-function: ease; }
|
|
2159
|
-
.react-autoql-notification-list-item .react-autoql-notification-
|
|
2160
|
-
flex: 0 0
|
|
2161
|
-
|
|
2162
|
-
|
|
2461
|
+
.react-autoql-notification-list-item .react-autoql-notification-toolbar-container {
|
|
2462
|
+
flex: 0 0 auto;
|
|
2463
|
+
display: flex;
|
|
2464
|
+
flex-direction: row;
|
|
2465
|
+
justify-content: space-between;
|
|
2466
|
+
align-items: center; }
|
|
2467
|
+
.react-autoql-notification-list-item .react-autoql-notification-toolbar-container .react-autoql-toolbar.viz-toolbar {
|
|
2468
|
+
padding-left: 14px; }
|
|
2469
|
+
.react-autoql-notification-list-item .react-autoql-notification-toolbar-container .react-autoql-toolbar {
|
|
2470
|
+
padding: 8px;
|
|
2471
|
+
padding-top: 5px;
|
|
2472
|
+
box-shadow: none;
|
|
2473
|
+
border: none; }
|
|
2474
|
+
.react-autoql-notification-list-item .react-autoql-notification-toolbar-container .react-autoql-toolbar .react-autoql-toolbar-btn {
|
|
2475
|
+
height: 33px; }
|
|
2476
|
+
.react-autoql-notification-list-item .react-autoql-notification-toolbar-container .react-autoql-notification-toolbar-more-options {
|
|
2477
|
+
padding: 15px 10px;
|
|
2478
|
+
font-size: 18px;
|
|
2479
|
+
width: 48px;
|
|
2480
|
+
display: flex;
|
|
2481
|
+
justify-content: center;
|
|
2482
|
+
align-items: center;
|
|
2483
|
+
cursor: pointer; }
|
|
2484
|
+
.react-autoql-notification-list-item .react-autoql-notification-toolbar-container .react-autoql-notification-toolbar-more-options:hover {
|
|
2485
|
+
opacity: 0.7; }
|
|
2163
2486
|
.react-autoql-notification-list-item .react-autoql-notification-img-container {
|
|
2164
2487
|
flex: 0 0 60px; }
|
|
2165
2488
|
.react-autoql-notification-list-item .react-autoql-notification-img-container .react-autoql-notification-img {
|
|
@@ -2181,259 +2504,592 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2181
2504
|
.react-autoql-notification-list-item .react-autoql-notification-display-name-container .react-autoql-notification-display-name {
|
|
2182
2505
|
font-size: 18px;
|
|
2183
2506
|
color: var(--react-autoql-text-color-primary, rgba(0, 0, 0, 0.7)); }
|
|
2184
|
-
|
|
2507
|
+
.react-autoql-notification-list-item .react-autoql-notification-display-name-container .react-autoql-notification-display-name .react-autoql-icon {
|
|
2508
|
+
font-size: 0.875em; }
|
|
2509
|
+
.react-autoql-notification-list-item .react-autoql-notification-display-name-container .react-autoql-notification-timestamp-container {
|
|
2185
2510
|
font-size: 12px;
|
|
2186
2511
|
opacity: 0.5; }
|
|
2187
|
-
.react-autoql-notification-list-item .react-autoql-notification-display-name-container .react-autoql-notification-timestamp
|
|
2188
|
-
|
|
2512
|
+
.react-autoql-notification-list-item .react-autoql-notification-display-name-container .react-autoql-notification-timestamp-container .react-autoql-notification-timestamp {
|
|
2513
|
+
display: flex;
|
|
2514
|
+
flex-direction: row;
|
|
2515
|
+
align-items: center; }
|
|
2516
|
+
.react-autoql-notification-list-item .react-autoql-notification-display-name-container .react-autoql-notification-timestamp-container .react-autoql-notification-timestamp .react-autoql-icon {
|
|
2517
|
+
margin-right: 3px; }
|
|
2189
2518
|
|
|
2190
|
-
.react-autoql-
|
|
2191
|
-
|
|
2519
|
+
.react-autoql-notification-list-item:nth-of-type(1) {
|
|
2520
|
+
animation-delay: 0s; }
|
|
2192
2521
|
|
|
2193
|
-
.react-autoql-
|
|
2194
|
-
|
|
2195
|
-
border-left: 1px solid var(--react-autoql-text-color-placeholder, lightgray);
|
|
2196
|
-
margin-left: 12px;
|
|
2197
|
-
padding-left: 20px;
|
|
2198
|
-
padding-bottom: 5px;
|
|
2199
|
-
transition: all 0.5s ease; }
|
|
2200
|
-
.react-autoql-step-container.complete {
|
|
2201
|
-
border-color: var(--react-autoql-accent-color, #26a7df); }
|
|
2202
|
-
.react-autoql-step-container.complete .react-autoql-step-dot {
|
|
2203
|
-
border-color: var(--react-autoql-accent-color, #26a7df);
|
|
2204
|
-
background: var(--react-autoql-accent-color, #26a7df);
|
|
2205
|
-
color: var(--react-autoql-text-color-accent); }
|
|
2206
|
-
.react-autoql-step-container.error {
|
|
2207
|
-
border-color: var(--react-autoql-warning-color); }
|
|
2208
|
-
.react-autoql-step-container.error .react-autoql-step-dot {
|
|
2209
|
-
border-color: var(--react-autoql-warning-color);
|
|
2210
|
-
background: var(--react-autoql-warning-color);
|
|
2211
|
-
color: #fff; }
|
|
2212
|
-
.react-autoql-step-container:not(.active) .react-autoql-step-content-container {
|
|
2213
|
-
pointer-events: none;
|
|
2214
|
-
height: 10px;
|
|
2215
|
-
opacity: 0;
|
|
2216
|
-
margin: 0; }
|
|
2522
|
+
.react-autoql-notification-list-item:nth-of-type(2) {
|
|
2523
|
+
animation-delay: 0.1s; }
|
|
2217
2524
|
|
|
2218
|
-
.react-autoql-
|
|
2219
|
-
|
|
2220
|
-
top: 0;
|
|
2221
|
-
left: -10px;
|
|
2222
|
-
height: 20px;
|
|
2223
|
-
width: 20px;
|
|
2224
|
-
border-radius: 15px;
|
|
2225
|
-
background: var(--react-autoql-background-color-secondary, #fff);
|
|
2226
|
-
border: 1px solid var(--react-autoql-text-color-placeholder, lightgray);
|
|
2227
|
-
transition: all 0.5s ease;
|
|
2228
|
-
font-size: 10.5px;
|
|
2229
|
-
color: var(--react-autoql-text-color-placeholder, lightgray);
|
|
2230
|
-
text-align: center; }
|
|
2525
|
+
.react-autoql-notification-list-item:nth-of-type(3) {
|
|
2526
|
+
animation-delay: 0.2s; }
|
|
2231
2527
|
|
|
2232
|
-
.react-autoql-
|
|
2233
|
-
|
|
2234
|
-
transition: color 0.2s ease;
|
|
2235
|
-
color: var(--react-autoql-accent-color, #26a7df); }
|
|
2528
|
+
.react-autoql-notification-list-item:nth-of-type(4) {
|
|
2529
|
+
animation-delay: 0.3s; }
|
|
2236
2530
|
|
|
2237
|
-
.react-autoql-
|
|
2238
|
-
|
|
2239
|
-
font-size: 15px;
|
|
2240
|
-
line-height: 15px;
|
|
2241
|
-
padding-top: 2px; }
|
|
2242
|
-
.react-autoql-step-title.disabled {
|
|
2243
|
-
cursor: default;
|
|
2244
|
-
color: var(--react-autoql-text-color-placeholder, lightgray); }
|
|
2531
|
+
.react-autoql-notification-list-item:nth-of-type(5) {
|
|
2532
|
+
animation-delay: 0.4s; }
|
|
2245
2533
|
|
|
2246
|
-
.react-autoql-
|
|
2247
|
-
|
|
2248
|
-
padding-top: 6px;
|
|
2249
|
-
padding-bottom: 6px;
|
|
2250
|
-
color: var(--react-autoql-text-color-placeholder, rgba(0, 0, 0, 0.4)); }
|
|
2251
|
-
|
|
2252
|
-
.react-autoql-step-content {
|
|
2253
|
-
margin: 15px;
|
|
2254
|
-
margin-top: 0; }
|
|
2255
|
-
|
|
2256
|
-
.react-autoql-step-content-container {
|
|
2257
|
-
transition-timing-function: ease;
|
|
2258
|
-
transition-property: height, opacity, margin;
|
|
2259
|
-
transition-duration: 0.5s;
|
|
2260
|
-
opacity: 1; }
|
|
2534
|
+
.react-autoql-notification-list-item:nth-of-type(6) {
|
|
2535
|
+
animation-delay: 0.5s; }
|
|
2261
2536
|
|
|
2262
|
-
.react-autoql-
|
|
2263
|
-
|
|
2537
|
+
.react-autoql-notification-list-item:nth-of-type(7) {
|
|
2538
|
+
animation-delay: 0.6s; }
|
|
2264
2539
|
|
|
2265
|
-
.react-autoql-
|
|
2266
|
-
|
|
2267
|
-
justify-content: stretch;
|
|
2268
|
-
align-items: stretch;
|
|
2269
|
-
border-radius: 4px; }
|
|
2270
|
-
.react-autoql-radio-btn-container.react-autoql-radio-btn-container-buttons .react-autoql-radio-btn {
|
|
2271
|
-
display: inline-flex;
|
|
2272
|
-
justify-content: center;
|
|
2273
|
-
align-items: center; }
|
|
2540
|
+
.react-autoql-notification-list-item:nth-of-type(8) {
|
|
2541
|
+
animation-delay: 0.7s; }
|
|
2274
2542
|
|
|
2275
|
-
.react-autoql-
|
|
2276
|
-
|
|
2277
|
-
position: absolute;
|
|
2278
|
-
left: -9999px; }
|
|
2543
|
+
.react-autoql-notification-list-item:nth-of-type(9) {
|
|
2544
|
+
animation-delay: 0.8s; }
|
|
2279
2545
|
|
|
2280
|
-
.react-autoql-
|
|
2281
|
-
|
|
2282
|
-
position: relative;
|
|
2283
|
-
padding-left: 28px;
|
|
2284
|
-
cursor: pointer;
|
|
2285
|
-
line-height: 20px;
|
|
2286
|
-
display: inline-block; }
|
|
2546
|
+
.react-autoql-notification-list-item:nth-of-type(10) {
|
|
2547
|
+
animation-delay: 0.9s; }
|
|
2287
2548
|
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
height: 18px;
|
|
2296
|
-
border: 1px solid #ddd;
|
|
2297
|
-
border-radius: 100%;
|
|
2298
|
-
background: var(--react-autoql-text-color-accent); }
|
|
2549
|
+
@keyframes slideIn {
|
|
2550
|
+
0% {
|
|
2551
|
+
opacity: 0;
|
|
2552
|
+
top: 500px; }
|
|
2553
|
+
100% {
|
|
2554
|
+
opacity: 1;
|
|
2555
|
+
top: 0; } }
|
|
2299
2556
|
|
|
2300
|
-
.react-autoql-radio-btn-container [type='radio']:checked + label:after,
|
|
2301
|
-
.react-autoql-radio-btn-container [type='radio']:not(:checked) + label:after {
|
|
2302
|
-
content: '';
|
|
2303
|
-
width: 12px;
|
|
2304
|
-
height: 12px;
|
|
2305
|
-
background: var(--react-autoql-accent-color, #26a7df);
|
|
2306
|
-
position: absolute;
|
|
2307
|
-
top: 4px;
|
|
2308
|
-
left: 4px;
|
|
2309
|
-
border-radius: 100%;
|
|
2310
|
-
transition: all 0.2s ease; }
|
|
2311
2557
|
|
|
2312
|
-
.
|
|
2313
|
-
|
|
2314
|
-
|
|
2558
|
+
.data-alert-schedule-builder-step .schedule-builder-day-of-year-selector {
|
|
2559
|
+
display: inline-flex;
|
|
2560
|
+
align-items: flex-end; }
|
|
2315
2561
|
|
|
2316
|
-
.
|
|
2317
|
-
|
|
2318
|
-
transform: scale(1); }
|
|
2562
|
+
.data-alert-schedule-builder-step .data-alert-condition-statement {
|
|
2563
|
+
font-style: italic; }
|
|
2319
2564
|
|
|
2320
|
-
.
|
|
2565
|
+
.data-alert-schedule-builder-step .schedule-builder-at-connector {
|
|
2566
|
+
padding-bottom: 8px; }
|
|
2567
|
+
|
|
2568
|
+
.data-alert-schedule-builder-step .frequency-category-select {
|
|
2321
2569
|
position: relative;
|
|
2322
|
-
|
|
2323
|
-
padding: 3px 12px;
|
|
2324
|
-
border: 1px solid var(--react-autoql-border-color, #dcdcdc);
|
|
2325
|
-
margin-left: -1px;
|
|
2326
|
-
transition: all 0.2s ease;
|
|
2327
|
-
cursor: pointer; }
|
|
2328
|
-
.react-autoql-radio-btn-container .react-autoql-radio-btn:not(:first-child) {
|
|
2329
|
-
border-left: 1px solid transparent; }
|
|
2330
|
-
.react-autoql-radio-btn-container .react-autoql-radio-btn.active {
|
|
2331
|
-
background-color: var(--react-autoql-accent-color, #26a7df);
|
|
2332
|
-
border-color: var(--react-autoql-accent-color, #26a7df);
|
|
2333
|
-
color: var(--react-autoql-text-color-accent); }
|
|
2334
|
-
.react-autoql-radio-btn-container .react-autoql-radio-btn.active.outlined {
|
|
2335
|
-
background-color: inherit;
|
|
2336
|
-
color: var(--react-autoql-accent-color, #26a7df); }
|
|
2337
|
-
.react-autoql-radio-btn-container .react-autoql-radio-btn:hover:not(.active) {
|
|
2338
|
-
border-color: var(--react-autoql-accent-color, #26a7df);
|
|
2339
|
-
color: var(--react-autoql-accent-color, #26a7df); }
|
|
2340
|
-
.react-autoql-radio-btn-container .react-autoql-radio-btn:first-child {
|
|
2341
|
-
border-top-left-radius: 4px;
|
|
2342
|
-
border-bottom-left-radius: 4px;
|
|
2343
|
-
margin-left: 0; }
|
|
2344
|
-
.react-autoql-radio-btn-container .react-autoql-radio-btn:last-child {
|
|
2345
|
-
border-top-right-radius: 4px;
|
|
2346
|
-
border-bottom-right-radius: 4px; }
|
|
2570
|
+
padding-top: 9px; }
|
|
2347
2571
|
|
|
2348
|
-
.
|
|
2349
|
-
|
|
2572
|
+
.data-alert-schedule-builder-step .notification-frequency-select {
|
|
2573
|
+
margin-left: 8px; }
|
|
2350
2574
|
|
|
2351
|
-
.
|
|
2352
|
-
|
|
2353
|
-
background: var(--react-autoql-background-color-secondary, white);
|
|
2354
|
-
transition: all 0.2s ease;
|
|
2355
|
-
cursor: pointer !important; }
|
|
2356
|
-
.react-autoql-select-with-arrow > div:hover {
|
|
2357
|
-
border-color: var(--react-autoql-accent-color, #26a7df); }
|
|
2358
|
-
.react-autoql-select-with-arrow > div .react-autoql-select-with-arrow__option {
|
|
2359
|
-
cursor: pointer; }
|
|
2360
|
-
.react-autoql-select-with-arrow > div .react-autoql-select-with-arrow__option:hover {
|
|
2361
|
-
background: var(--react-autoql-hover-color, rgba(0, 0, 0, 0.15)); }
|
|
2362
|
-
.react-autoql-select-with-arrow > div .react-autoql-select-with-arrow__option.react-autoql-select-with-arrow__option--is-focused, .react-autoql-select-with-arrow > div .react-autoql-select-with-arrow__option.react-autoql-select-with-arrow__option--is-selected {
|
|
2363
|
-
background: var(--react-autoql-hover-color, rgba(0, 0, 0, 0.1)); }
|
|
2575
|
+
.data-alert-schedule-builder-step .frequency-repeat-checkbox .react-autoql-checkbox-label {
|
|
2576
|
+
line-height: 33px; }
|
|
2364
2577
|
|
|
2365
|
-
.
|
|
2366
|
-
|
|
2578
|
+
.data-alert-schedule-builder-step .frequency-repeat-follow-text {
|
|
2579
|
+
line-height: 32px;
|
|
2580
|
+
vertical-align: top; }
|
|
2581
|
+
|
|
2582
|
+
.data-alert-schedule-builder-step .frequency-type-container {
|
|
2583
|
+
padding: 3px 5px;
|
|
2584
|
+
margin-bottom: 20px; }
|
|
2585
|
+
.data-alert-schedule-builder-step .frequency-type-container .react-autoql-select {
|
|
2586
|
+
padding-left: 2px; }
|
|
2367
2587
|
|
|
2368
|
-
.
|
|
2369
|
-
|
|
2370
|
-
|
|
2588
|
+
.data-alert-schedule-builder-step .frequency-settings-container {
|
|
2589
|
+
font-size: inherit; }
|
|
2590
|
+
.data-alert-schedule-builder-step .frequency-settings-container.continuous-alert .react-autoql-data-alert-frequency-option {
|
|
2591
|
+
margin-bottom: 20px;
|
|
2592
|
+
margin-right: 20px; }
|
|
2593
|
+
.data-alert-schedule-builder-step .frequency-settings-container .react-autoql-select {
|
|
2594
|
+
width: 100%;
|
|
2595
|
+
min-width: -moz-fit-content;
|
|
2596
|
+
min-width: fit-content; }
|
|
2597
|
+
.data-alert-schedule-builder-step .frequency-settings-container .react-autoql-data-alert-frequency-option.check-frequency {
|
|
2598
|
+
display: flex;
|
|
2599
|
+
width: 300px;
|
|
2600
|
+
max-width: 100%; }
|
|
2601
|
+
.data-alert-schedule-builder-step .frequency-settings-container .react-autoql-data-alert-frequency-option.check-frequency .react-autoql-select-and-label {
|
|
2602
|
+
flex: 1; }
|
|
2603
|
+
.data-alert-schedule-builder-step .frequency-settings-container .react-autoql-data-alert-frequency-option.flex-1 {
|
|
2604
|
+
flex: 1; }
|
|
2605
|
+
.data-alert-schedule-builder-step .frequency-settings-container .react-autoql-data-alert-frequency-option.flex-2 {
|
|
2606
|
+
flex: 2; }
|
|
2371
2607
|
|
|
2372
|
-
.react-autoql-
|
|
2373
|
-
|
|
2608
|
+
.data-alert-schedule-builder-step .react-autoql-select {
|
|
2609
|
+
margin: 0;
|
|
2610
|
+
margin-right: 5px; }
|
|
2374
2611
|
|
|
2375
|
-
.frequency-date-select-container {
|
|
2612
|
+
.data-alert-schedule-builder-step .frequency-date-select-container {
|
|
2376
2613
|
margin-top: 10px; }
|
|
2377
2614
|
|
|
2378
|
-
.
|
|
2379
|
-
display: flex;
|
|
2380
|
-
|
|
2615
|
+
.data-alert-schedule-builder-step .react-autoql-data-alert-frequency-options-container {
|
|
2616
|
+
display: flex;
|
|
2617
|
+
align-items: flex-end;
|
|
2618
|
+
flex-wrap: wrap; }
|
|
2619
|
+
|
|
2620
|
+
.react-autoql-steps-hoz-container {
|
|
2621
|
+
display: flex;
|
|
2622
|
+
padding: 20px;
|
|
2623
|
+
align-items: flex-start;
|
|
2624
|
+
font-family: inherit;
|
|
2625
|
+
flex-direction: row; }
|
|
2626
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container {
|
|
2627
|
+
flex: 1;
|
|
2381
2628
|
position: relative;
|
|
2382
|
-
padding-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
.
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2629
|
+
padding-left: 8px;
|
|
2630
|
+
padding-right: 8px; }
|
|
2631
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container .react-autoql-step-hoz {
|
|
2632
|
+
display: flex;
|
|
2633
|
+
align-items: center;
|
|
2634
|
+
flex-direction: column; }
|
|
2635
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container .react-autoql-step-hoz .react-autoql-step-hoz-title-container {
|
|
2636
|
+
width: 100%;
|
|
2637
|
+
font-size: 0.875rem;
|
|
2638
|
+
font-weight: 400;
|
|
2639
|
+
line-height: 1.4; }
|
|
2640
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container .react-autoql-step-hoz .react-autoql-step-hoz-title-container .react-autoql-step-hoz-title {
|
|
2641
|
+
display: block;
|
|
2642
|
+
margin-top: 16px;
|
|
2643
|
+
text-align: center;
|
|
2644
|
+
font-weight: 500;
|
|
2645
|
+
cursor: pointer; }
|
|
2646
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container .react-autoql-step-hoz-dot {
|
|
2647
|
+
width: 2em;
|
|
2648
|
+
border: none;
|
|
2649
|
+
cursor: pointer;
|
|
2650
|
+
height: 2em;
|
|
2651
|
+
margin: 0px;
|
|
2652
|
+
display: flex;
|
|
2653
|
+
padding: 0px;
|
|
2654
|
+
font-size: 1em;
|
|
2655
|
+
align-items: center;
|
|
2656
|
+
border-radius: 50%;
|
|
2657
|
+
justify-content: center;
|
|
2658
|
+
background: var(--react-autoql-background-color-secondary);
|
|
2659
|
+
border: 1px solid var(--react-autoql-text-color-primary);
|
|
2660
|
+
color: var(--react-autoql-text-color-primary);
|
|
2661
|
+
transition: opacity 0.2s ease; }
|
|
2662
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container .react-autoql-step-hoz-dot span {
|
|
2663
|
+
font-size: 1rem;
|
|
2664
|
+
font-variant-numeric: tabular-nums; }
|
|
2665
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.complete, .react-autoql-steps-hoz-container .react-autoql-step-hoz-container.active {
|
|
2666
|
+
color: var(--react-autoql-accent-color); }
|
|
2667
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.complete .react-autoql-step-hoz-dot,
|
|
2668
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.complete .react-autoql-step-connector, .react-autoql-steps-hoz-container .react-autoql-step-hoz-container.active .react-autoql-step-hoz-dot,
|
|
2669
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.active .react-autoql-step-connector {
|
|
2670
|
+
border-color: var(--react-autoql-accent-color);
|
|
2671
|
+
background: var(--react-autoql-accent-color);
|
|
2672
|
+
color: var(--react-autoql-text-color-accent); }
|
|
2673
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.error .react-autoql-step-hoz-dot {
|
|
2674
|
+
border-color: var(--react-autoql-warning-color);
|
|
2675
|
+
background: var(--react-autoql-warning-color);
|
|
2676
|
+
color: var(--react-autoql-text-color-accent); }
|
|
2677
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.disabled .react-autoql-step-hoz-dot,
|
|
2678
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.disabled .react-autoql-step-hoz-title,
|
|
2679
|
+
.react-autoql-steps-hoz-container .react-autoql-step-hoz-container.disabled .react-autoql-step-connector {
|
|
2680
|
+
cursor: default !important;
|
|
2681
|
+
color: var(--react-autoql-text-color-placeholder);
|
|
2682
|
+
border-color: var(--react-autoql-text-color-placeholder); }
|
|
2683
|
+
.react-autoql-steps-hoz-container .react-autoql-step-connector-container {
|
|
2684
|
+
top: calc((2em - 1px) / 2);
|
|
2685
|
+
left: calc((-50% + 2em) - 8px);
|
|
2686
|
+
right: calc((50% + 2em) - 8px);
|
|
2687
|
+
position: absolute; }
|
|
2688
|
+
.react-autoql-steps-hoz-container .react-autoql-step-connector-container .react-autoql-step-connector {
|
|
2689
|
+
display: block;
|
|
2690
|
+
border-color: var(--react-autoql-text-color-primary);
|
|
2691
|
+
border-top-style: solid;
|
|
2692
|
+
border-top-width: 1px; }
|
|
2398
2693
|
|
|
2399
|
-
.
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
padding-left: 8px; }
|
|
2694
|
+
.react-autoql-data-alert-setting-group {
|
|
2695
|
+
display: flex;
|
|
2696
|
+
flex-direction: row; }
|
|
2403
2697
|
|
|
2404
|
-
.
|
|
2405
|
-
|
|
2698
|
+
.react-autoql-settings-vertical-divider {
|
|
2699
|
+
flex: 0 0 0;
|
|
2700
|
+
opacity: 0.3; }
|
|
2701
|
+
.react-autoql-settings-vertical-divider.react-autoql-settings-vertical-divider-horizontal {
|
|
2702
|
+
margin: 5px;
|
|
2703
|
+
margin-top: 0;
|
|
2704
|
+
padding: 0 10px;
|
|
2705
|
+
border-top: 1px solid var(--react-autoql-border-color); }
|
|
2706
|
+
.react-autoql-settings-vertical-divider.react-autoql-settings-vertical-divider-vertical {
|
|
2707
|
+
margin: 5px;
|
|
2708
|
+
margin-left: 0;
|
|
2709
|
+
padding: 10px 0;
|
|
2710
|
+
border-left: 1px solid var(--react-autoql-border-color); }
|
|
2711
|
+
|
|
2712
|
+
.react-autoql-flex-table-container {
|
|
2713
|
+
display: block;
|
|
2714
|
+
width: 100%; }
|
|
2715
|
+
.react-autoql-flex-table-container div {
|
|
2716
|
+
box-sizing: border-box; }
|
|
2717
|
+
.react-autoql-flex-table-container .react-autoql-data-alert-setting {
|
|
2718
|
+
margin-bottom: 10px; }
|
|
2719
|
+
.react-autoql-flex-table-container .react-autoql-data-alert-setting-section {
|
|
2720
|
+
padding: 10px 0; }
|
|
2721
|
+
.react-autoql-flex-table-container .react-autoql-data-alert-setting-section .react-autoql-data-alert-setting-section-title {
|
|
2722
|
+
margin: 5px;
|
|
2723
|
+
margin-bottom: 10px;
|
|
2724
|
+
font-size: 16px;
|
|
2725
|
+
font-weight: 600; }
|
|
2726
|
+
.react-autoql-flex-table-container .react-autoql-data-alert-setting-section .react-autoql-data-alert-setting-input-group {
|
|
2727
|
+
display: flex; }
|
|
2728
|
+
.react-autoql-flex-table-container .react-autoql-data-alert-setting-section .react-autoql-data-alert-setting-input-group .react-autoql-data-alert-setting-input {
|
|
2729
|
+
flex: 1; }
|
|
2730
|
+
.react-autoql-flex-table-container .react-autoql-flex-table {
|
|
2731
|
+
display: grid;
|
|
2732
|
+
grid-template-columns: minmax(0, 150px) 1fr;
|
|
2733
|
+
grid-template-rows: 100% auto;
|
|
2734
|
+
transition: 0.5s; }
|
|
2735
|
+
.react-autoql-flex-table-container .react-autoql-flex-table .react-autoql-cell {
|
|
2736
|
+
display: block;
|
|
2737
|
+
width: 100%;
|
|
2738
|
+
text-align: left;
|
|
2739
|
+
padding: 0.1em 0.5em; }
|
|
2740
|
+
.react-autoql-flex-table-container .react-autoql-flex-table .react-autoql-cell:first-of-type {
|
|
2741
|
+
text-align: right;
|
|
2742
|
+
line-height: 34px;
|
|
2743
|
+
white-space: nowrap; }
|
|
2744
|
+
|
|
2745
|
+
.react-autoql-data-alert-modal-body {
|
|
2746
|
+
padding: 20px; }
|
|
2747
|
+
|
|
2748
|
+
.react-autoql-data-alert-modal-content {
|
|
2749
|
+
height: 400px;
|
|
2750
|
+
max-height: 90vh;
|
|
2751
|
+
padding: 0px 80px;
|
|
2406
2752
|
display: flex;
|
|
2407
|
-
|
|
2753
|
+
flex-direction: column; }
|
|
2754
|
+
.react-autoql-data-alert-modal-content .react-autoql-data-alert-modal-step {
|
|
2755
|
+
font-weight: 400;
|
|
2756
|
+
font-size: 15px;
|
|
2757
|
+
padding-top: 15px; }
|
|
2758
|
+
.react-autoql-data-alert-modal-content .react-autoql-data-alert-modal-step .react-autoql-data-alert-frequency-option {
|
|
2759
|
+
margin-right: 10px; }
|
|
2760
|
+
.react-autoql-data-alert-modal-content .react-autoql-data-alert-modal-step .data-alert-modal-condition-title {
|
|
2761
|
+
margin-top: 20px;
|
|
2762
|
+
margin-bottom: 5px; }
|
|
2763
|
+
.react-autoql-data-alert-modal-content .react-autoql-data-alert-modal-step.hidden {
|
|
2764
|
+
position: absolute;
|
|
2765
|
+
display: none; }
|
|
2766
|
+
.react-autoql-data-alert-modal-content .data-alert-name-input-section {
|
|
2767
|
+
margin-bottom: 20px; }
|
|
2768
|
+
.react-autoql-data-alert-modal-content .data-alert-name-input-section .react-autoql-data-alert-modal-tooltip-icon {
|
|
2769
|
+
flex: 0 0 auto;
|
|
2770
|
+
font-size: 1.1em;
|
|
2771
|
+
vertical-align: text-top; }
|
|
2772
|
+
.react-autoql-data-alert-modal-content .data-alert-name-input-section .react-autoql-notification-display-name-input {
|
|
2773
|
+
width: 100%; }
|
|
2774
|
+
.react-autoql-data-alert-modal-content .react-autoql-input-container {
|
|
2775
|
+
flex: 1; }
|
|
2776
|
+
.react-autoql-data-alert-modal-content .react-autoql-input-container textarea {
|
|
2777
|
+
resize: none;
|
|
2778
|
+
flex: 1; }
|
|
2779
|
+
.react-autoql-data-alert-modal-content .compose-message-section-condition-statement {
|
|
2780
|
+
padding: 3px 5px;
|
|
2781
|
+
margin-bottom: 20px; }
|
|
2782
|
+
.react-autoql-data-alert-modal-content .compose-message-section {
|
|
2783
|
+
display: flex;
|
|
2784
|
+
flex-wrap: wrap; }
|
|
2785
|
+
.react-autoql-data-alert-modal-content .compose-message-section .form-section,
|
|
2786
|
+
.react-autoql-data-alert-modal-content .compose-message-section .preview-section {
|
|
2787
|
+
display: flex;
|
|
2788
|
+
flex-direction: column;
|
|
2789
|
+
flex: 1; }
|
|
2790
|
+
.react-autoql-data-alert-modal-content .compose-message-section .react-autoql-notification-message-input {
|
|
2791
|
+
flex: 1;
|
|
2792
|
+
margin-top: 10px; }
|
|
2793
|
+
.react-autoql-data-alert-modal-content .compose-message-section .react-autoql-notification-message-input .react-autoql-input {
|
|
2794
|
+
flex: 1 0 70px; }
|
|
2795
|
+
.react-autoql-data-alert-modal-content .compose-message-section .preview-section {
|
|
2796
|
+
display: flex;
|
|
2797
|
+
flex-direction: column;
|
|
2798
|
+
margin-left: 14px; }
|
|
2799
|
+
.react-autoql-data-alert-modal-content .compose-message-section .preview-section .data-alert-preview {
|
|
2800
|
+
flex: 1;
|
|
2801
|
+
padding: 20px;
|
|
2802
|
+
border: 1px solid var(--react-autoql-border-color);
|
|
2803
|
+
border-radius: 2px;
|
|
2804
|
+
background: var(--react-autoql-background-color-primary);
|
|
2805
|
+
overflow: auto;
|
|
2806
|
+
pointer-events: none !important; }
|
|
2807
|
+
.react-autoql-data-alert-modal-content .compose-message-section .preview-section .data-alert-preview .react-autoql-notification-list-item {
|
|
2808
|
+
transition: none;
|
|
2809
|
+
animation: none; }
|
|
2810
|
+
.react-autoql-data-alert-modal-content .compose-message-section .preview-section .data-alert-preview .react-autoql-notification-extra-content {
|
|
2811
|
+
display: none !important; }
|
|
2812
|
+
.react-autoql-data-alert-modal-content .react-autoql-step-content p {
|
|
2813
|
+
margin-bottom: 0.5em;
|
|
2814
|
+
margin-top: 0.5em;
|
|
2815
|
+
padding-left: 8px; }
|
|
2816
|
+
.react-autoql-data-alert-modal-content .step-btn-container {
|
|
2817
|
+
text-align: right;
|
|
2818
|
+
display: flex;
|
|
2819
|
+
min-height: 30px; }
|
|
2820
|
+
.react-autoql-data-alert-modal-content .data-alert-chunked-rt {
|
|
2821
|
+
color: var(--react-autoql-text-color-primary); }
|
|
2408
2822
|
|
|
2409
|
-
.
|
|
2410
|
-
|
|
2823
|
+
.react-autoql-data-alert-modal-footer {
|
|
2824
|
+
width: 100%;
|
|
2825
|
+
display: flex;
|
|
2826
|
+
justify-content: space-between; }
|
|
2411
2827
|
|
|
2412
|
-
.
|
|
2413
|
-
max-width: 75%;
|
|
2414
|
-
float: left;
|
|
2415
|
-
text-align: left !important;
|
|
2828
|
+
.modal-footer-button-container {
|
|
2416
2829
|
display: flex;
|
|
2417
|
-
flex-direction: row;
|
|
2418
|
-
|
|
2419
|
-
|
|
2830
|
+
flex-direction: row; }
|
|
2831
|
+
.modal-footer-button-container.left {
|
|
2832
|
+
justify-content: flex-start; }
|
|
2833
|
+
.modal-footer-button-container.right {
|
|
2834
|
+
justify-content: flex-end; }
|
|
2420
2835
|
|
|
2421
|
-
.
|
|
2422
|
-
|
|
2423
|
-
display:
|
|
2836
|
+
.react-autoql-switch-container {
|
|
2837
|
+
position: relative;
|
|
2838
|
+
display: inline-flex;
|
|
2839
|
+
justify-content: center;
|
|
2840
|
+
align-items: center; }
|
|
2841
|
+
.react-autoql-switch-container .toggle-switch-text-ruler {
|
|
2842
|
+
opacity: 0;
|
|
2843
|
+
display: block;
|
|
2844
|
+
visibility: hidden;
|
|
2845
|
+
padding: 0px 22px;
|
|
2846
|
+
height: 26px;
|
|
2847
|
+
line-height: 26px;
|
|
2848
|
+
min-width: 42px;
|
|
2849
|
+
font-size: 12px; }
|
|
2850
|
+
.react-autoql-switch-container .react-autoql-toggle-switch {
|
|
2851
|
+
position: absolute;
|
|
2852
|
+
height: 26px;
|
|
2853
|
+
width: 100%;
|
|
2854
|
+
cursor: pointer; }
|
|
2855
|
+
.react-autoql-switch-container .react-autoql-toggle-switch input {
|
|
2856
|
+
display: none; }
|
|
2857
|
+
.react-autoql-switch-container .react-autoql-toggle-switch .toggle-switch-slider {
|
|
2858
|
+
background-color: var(--react-autoql-background-color-switch-input);
|
|
2859
|
+
border-radius: 34px;
|
|
2860
|
+
cursor: pointer;
|
|
2861
|
+
display: flex;
|
|
2862
|
+
align-items: center;
|
|
2863
|
+
justify-content: center;
|
|
2864
|
+
position: absolute;
|
|
2865
|
+
top: 0;
|
|
2866
|
+
left: 0;
|
|
2867
|
+
right: 0;
|
|
2868
|
+
bottom: 0;
|
|
2869
|
+
transition: 0.4s; }
|
|
2870
|
+
.react-autoql-switch-container .react-autoql-toggle-switch .toggle-switch-slider .toggle-switch-text {
|
|
2871
|
+
position: absolute;
|
|
2872
|
+
display: flex;
|
|
2873
|
+
align-items: center;
|
|
2874
|
+
height: 100%;
|
|
2875
|
+
font-size: 12px;
|
|
2876
|
+
font-weight: bold;
|
|
2877
|
+
color: #ffffff;
|
|
2878
|
+
right: 15px; }
|
|
2879
|
+
.react-autoql-switch-container .react-autoql-toggle-switch .toggle-switch-slider:before {
|
|
2880
|
+
position: absolute;
|
|
2881
|
+
content: '';
|
|
2882
|
+
height: 18px;
|
|
2883
|
+
width: 18px;
|
|
2884
|
+
bottom: 4px;
|
|
2885
|
+
background-color: #ffffff;
|
|
2886
|
+
border-radius: 50%;
|
|
2887
|
+
transition: 0.4s;
|
|
2888
|
+
left: 4px; }
|
|
2889
|
+
.react-autoql-switch-container .react-autoql-toggle-switch input:checked + .toggle-switch-slider {
|
|
2890
|
+
background-color: var(--react-autoql-accent-color); }
|
|
2891
|
+
.react-autoql-switch-container .react-autoql-toggle-switch input:checked + .toggle-switch-slider:before {
|
|
2892
|
+
left: calc(100% - 22px); }
|
|
2893
|
+
.react-autoql-switch-container .react-autoql-toggle-switch input:checked + .toggle-switch-slider .toggle-switch-text {
|
|
2894
|
+
left: 15px;
|
|
2895
|
+
color: var(--react-autoql-text-color-accent); }
|
|
2896
|
+
.react-autoql-switch-container .react-autoql-toggle-switch input:focus + .toggle-switch-slider {
|
|
2897
|
+
box-shadow: 0 0 1px var(--react-autoql-accent-color); }
|
|
2424
2898
|
|
|
2425
|
-
.react-autoql-
|
|
2426
|
-
color:
|
|
2899
|
+
.react-autoql-notification-settings {
|
|
2900
|
+
background-color: transparent;
|
|
2901
|
+
color: var(--react-autoql-text-color-primary);
|
|
2902
|
+
padding-top: 20px;
|
|
2903
|
+
padding-bottom: 100px;
|
|
2904
|
+
height: 100%; }
|
|
2905
|
+
.react-autoql-notification-settings .data-alerts-list-container {
|
|
2906
|
+
padding-bottom: 20px; }
|
|
2907
|
+
.react-autoql-notification-settings .react-autoql-notification-setting-item.data-alert-disabled .data-alert-section-cycle,
|
|
2908
|
+
.react-autoql-notification-settings .react-autoql-notification-setting-item.data-alert-disabled .data-alert-state,
|
|
2909
|
+
.react-autoql-notification-settings .react-autoql-notification-setting-item.data-alert-disabled .data-alert-section-cycle-start {
|
|
2910
|
+
opacity: 0.7; }
|
|
2911
|
+
.react-autoql-notification-settings .react-autoql-data-alert-list-item-section {
|
|
2912
|
+
flex: 1 0 50px;
|
|
2913
|
+
display: flex;
|
|
2914
|
+
flex-direction: row;
|
|
2915
|
+
justify-content: center;
|
|
2916
|
+
align-items: center;
|
|
2917
|
+
flex-wrap: nowrap;
|
|
2918
|
+
text-align: center;
|
|
2919
|
+
overflow: hidden; }
|
|
2920
|
+
.react-autoql-notification-settings .react-autoql-data-alert-list-item-section .react-autoql-notification-setting-display-name-title {
|
|
2921
|
+
width: 100%;
|
|
2922
|
+
text-overflow: ellipsis;
|
|
2923
|
+
overflow: hidden; }
|
|
2924
|
+
.react-autoql-notification-settings .react-autoql-data-alert-list-item-section .data-alert-section-content,
|
|
2925
|
+
.react-autoql-notification-settings .react-autoql-data-alert-list-item-section .data-alert-header-item {
|
|
2926
|
+
display: flex;
|
|
2927
|
+
justify-content: center;
|
|
2928
|
+
align-items: center;
|
|
2929
|
+
font-size: 13px; }
|
|
2930
|
+
.react-autoql-notification-settings .react-autoql-data-alert-list-item-section .data-alert-section-content {
|
|
2931
|
+
padding: 8px 12px; }
|
|
2932
|
+
.react-autoql-notification-settings .react-autoql-data-alert-list-item-section .data-alert-header-item {
|
|
2933
|
+
padding: 0 12px; }
|
|
2934
|
+
.react-autoql-notification-settings .react-autoql-data-alert-list-item-section:first-child {
|
|
2935
|
+
flex: 3 0 50px;
|
|
2936
|
+
padding-left: 12px;
|
|
2937
|
+
justify-content: flex-start; }
|
|
2938
|
+
.react-autoql-notification-settings .react-autoql-data-alert-list-item-section:last-child {
|
|
2939
|
+
flex: 0 0 auto;
|
|
2940
|
+
padding-right: 12px;
|
|
2941
|
+
justify-content: flex-end; }
|
|
2942
|
+
.react-autoql-notification-settings .empty-list-message {
|
|
2943
|
+
color: var(--react-autoql-text-color-primary);
|
|
2944
|
+
text-align: center;
|
|
2945
|
+
margin-top: 75px; }
|
|
2946
|
+
.react-autoql-notification-settings .empty-list-message .empty-list-img {
|
|
2947
|
+
width: 250px;
|
|
2948
|
+
height: 250px; }
|
|
2949
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container {
|
|
2950
|
+
margin: 20px;
|
|
2951
|
+
margin-top: 10px; }
|
|
2952
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item {
|
|
2953
|
+
display: block;
|
|
2954
|
+
min-height: 55px;
|
|
2955
|
+
transition: height 0.3s cubic-bezier(0.26, 0.26, 0, 1);
|
|
2956
|
+
background-color: var(--react-autoql-background-color-secondary);
|
|
2957
|
+
box-shadow: var(--react-autoql-box-shadow-1);
|
|
2958
|
+
position: relative; }
|
|
2959
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item.react-autoql-dataalert-show-header {
|
|
2960
|
+
margin-top: 38px; }
|
|
2961
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item:not(.react-autoql-dataalert-show-header) .data-alert-header-item {
|
|
2962
|
+
display: none; }
|
|
2963
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item:not(:last-child) {
|
|
2964
|
+
border-bottom: 1px solid var(--react-autoql-box-shadow-color); }
|
|
2965
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item:first-child, .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item.react-autoql-dataalert-show-header {
|
|
2966
|
+
border-top-left-radius: 4px;
|
|
2967
|
+
border-top-right-radius: 4px; }
|
|
2968
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item:last-child {
|
|
2969
|
+
border-bottom-left-radius: 4px;
|
|
2970
|
+
border-bottom-right-radius: 4px; }
|
|
2971
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-header-item {
|
|
2972
|
+
position: absolute;
|
|
2973
|
+
line-height: 33px;
|
|
2974
|
+
white-space: nowrap;
|
|
2975
|
+
bottom: 100%;
|
|
2976
|
+
font-size: 0.875em;
|
|
2977
|
+
color: var(--react-autoql-text-color-primary);
|
|
2978
|
+
opacity: 0.7; }
|
|
2979
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .react-autoql-notification-action-hidden {
|
|
2980
|
+
pointer-events: none;
|
|
2981
|
+
visibility: hidden;
|
|
2982
|
+
opacity: 0; }
|
|
2983
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-state {
|
|
2984
|
+
display: flex;
|
|
2985
|
+
align-items: center;
|
|
2986
|
+
justify-content: center;
|
|
2987
|
+
font-size: 13px;
|
|
2988
|
+
padding: 2px 5px;
|
|
2989
|
+
border-radius: 6px;
|
|
2990
|
+
white-space: nowrap;
|
|
2991
|
+
cursor: default; }
|
|
2992
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-state .react-autoql-icon {
|
|
2993
|
+
margin-right: 5px; }
|
|
2994
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-state.data-alert-off.data-alert-ready {
|
|
2995
|
+
color: var(--react-autoql-text-color-primary); }
|
|
2996
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-state.data-alert-off.data-alert-paused {
|
|
2997
|
+
color: var(--react-autoql-text-color-primary); }
|
|
2998
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-state.data-alert-off.data-alert-triggered {
|
|
2999
|
+
color: var(--react-autoql-text-color-primary); }
|
|
3000
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-state.data-alert-off.data-alert-error {
|
|
3001
|
+
color: var(--react-autoql-warning-color);
|
|
3002
|
+
opacity: 1; }
|
|
3003
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-state.data-alert-on.data-alert-active {
|
|
3004
|
+
color: var(--react-autoql-success-color); }
|
|
3005
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-state.data-alert-on.data-alert-active .react-autoql-icon {
|
|
3006
|
+
background-color: var(--react-autoql-success-color); }
|
|
3007
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-state.data-alert-on.data-alert-scheduled {
|
|
3008
|
+
color: var(--react-autoql-success-color); }
|
|
3009
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-state.data-alert-on.data-alert-triggered {
|
|
3010
|
+
color: var(--react-autoql-info-color); }
|
|
3011
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-state.data-alert-on.data-alert-triggered .react-autoql-icon-filled {
|
|
3012
|
+
background-color: var(--react-autoql-info-color); }
|
|
3013
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-state.data-alert-on.data-alert-error {
|
|
3014
|
+
cursor: pointer;
|
|
3015
|
+
color: var(--react-autoql-warning-color); }
|
|
3016
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .data-alert-state .react-autoql-icon-filled {
|
|
3017
|
+
border-radius: 20px;
|
|
3018
|
+
color: #fff;
|
|
3019
|
+
padding: 3px;
|
|
3020
|
+
font-size: 1.1em;
|
|
3021
|
+
box-sizing: content-box; }
|
|
3022
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .react-autoql-notification-state-action-btn {
|
|
3023
|
+
display: flex;
|
|
3024
|
+
transition: background-color 0.2s ease;
|
|
3025
|
+
padding: 4px;
|
|
3026
|
+
margin-left: 7px;
|
|
3027
|
+
margin-right: 0;
|
|
3028
|
+
box-sizing: content-box;
|
|
3029
|
+
font-size: 11px;
|
|
3030
|
+
border-radius: 20px;
|
|
3031
|
+
color: var(--react-autoql-info-color);
|
|
3032
|
+
border: 1px solid var(--react-autoql-info-color);
|
|
3033
|
+
cursor: pointer; }
|
|
3034
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .react-autoql-notification-state-action-btn:hover {
|
|
3035
|
+
background-color: var(--react-autoql-hover-color); }
|
|
3036
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .react-autoql-notification-action-btn {
|
|
3037
|
+
display: flex;
|
|
3038
|
+
font-size: 18px;
|
|
3039
|
+
transition: all 0.2s ease;
|
|
3040
|
+
padding: 0 10px;
|
|
3041
|
+
color: var(--react-autoql-text-color-primary);
|
|
3042
|
+
cursor: pointer; }
|
|
3043
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .react-autoql-notification-action-btn:first-child {
|
|
3044
|
+
padding-left: 0px; }
|
|
3045
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .react-autoql-notification-action-btn:last-child {
|
|
3046
|
+
padding-right: 0px; }
|
|
3047
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .react-autoql-notification-action-btn:hover {
|
|
3048
|
+
color: var(--react-autoql-accent-color); }
|
|
3049
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .react-autoql-notification-action-btn:hover.react-autoql-notification-action-btn-delete {
|
|
3050
|
+
color: var(--react-autoql-danger-color); }
|
|
3051
|
+
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item-header {
|
|
3052
|
+
min-height: 55px;
|
|
3053
|
+
display: flex;
|
|
3054
|
+
align-items: center;
|
|
3055
|
+
justify-content: space-between; }
|
|
3056
|
+
.react-autoql-notification-settings .react-autoql-data-alert-section-title-container {
|
|
3057
|
+
display: flex;
|
|
3058
|
+
justify-content: space-between;
|
|
3059
|
+
align-items: center;
|
|
3060
|
+
padding: 5px 20px;
|
|
3061
|
+
padding-bottom: 0;
|
|
3062
|
+
color: var(--react-autoql-text-color-primary); }
|
|
3063
|
+
.react-autoql-notification-settings .react-autoql-data-alert-section-title-container .react-autoql-data-alert-section-title {
|
|
3064
|
+
font-size: 19px;
|
|
3065
|
+
font-weight: 500; }
|
|
3066
|
+
.react-autoql-notification-settings .react-autoql-data-alert-section-title-container .react-autoql-data-alert-section-subtitle {
|
|
3067
|
+
padding-top: 3px;
|
|
3068
|
+
padding-bottom: 5px;
|
|
3069
|
+
font-size: 13px; }
|
|
3070
|
+
.react-autoql-notification-settings .react-autoql-notification-setting-display-name {
|
|
3071
|
+
white-space: nowrap;
|
|
3072
|
+
overflow: hidden;
|
|
3073
|
+
text-overflow: ellipsis; }
|
|
3074
|
+
.react-autoql-notification-settings .react-autoql-notification-setting-display-name .data-alert-section-content {
|
|
3075
|
+
font-size: 14px;
|
|
3076
|
+
overflow: hidden;
|
|
3077
|
+
cursor: default; }
|
|
3078
|
+
.react-autoql-notification-settings .react-autoql-re-initialize-btn {
|
|
3079
|
+
margin-left: 6px; }
|
|
2427
3080
|
|
|
2428
3081
|
.notification-list-loading-container {
|
|
3082
|
+
display: flex;
|
|
3083
|
+
flex-direction: column;
|
|
3084
|
+
align-items: center;
|
|
2429
3085
|
text-align: center;
|
|
2430
3086
|
padding-top: 100px;
|
|
2431
|
-
color:
|
|
3087
|
+
color: inherit;
|
|
2432
3088
|
height: 100%;
|
|
2433
3089
|
background: var(--react-autoql-background-color-primary); }
|
|
2434
3090
|
|
|
2435
3091
|
.empty-notifications-message {
|
|
2436
|
-
color:
|
|
3092
|
+
color: inherit;
|
|
2437
3093
|
text-align: center;
|
|
2438
3094
|
margin-top: 75px; }
|
|
2439
3095
|
.empty-notifications-message div {
|
|
@@ -2449,163 +3105,125 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2449
3105
|
.react-autoql-notification-list-container {
|
|
2450
3106
|
display: flex;
|
|
2451
3107
|
flex-direction: column;
|
|
3108
|
+
height: 100%;
|
|
2452
3109
|
background: var(--react-autoql-background-color-primary);
|
|
2453
|
-
|
|
3110
|
+
font-family: var(--react-autoql-font-family), sans-serif;
|
|
3111
|
+
color: var(--react-autoql-text-color-primary); }
|
|
2454
3112
|
.react-autoql-notification-list-container .notification-feed-list {
|
|
2455
3113
|
padding: 0 20px;
|
|
2456
|
-
padding-
|
|
3114
|
+
padding-bottom: 10px; }
|
|
2457
3115
|
|
|
2458
|
-
.
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
3116
|
+
.notification-feed-top-options-container {
|
|
3117
|
+
display: flex;
|
|
3118
|
+
flex-direction: row;
|
|
3119
|
+
justify-content: space-between;
|
|
3120
|
+
align-items: flex-end;
|
|
3121
|
+
padding: 15px 22px 8px 22px;
|
|
3122
|
+
flex: 0; }
|
|
3123
|
+
.notification-feed-top-options-container .react-autoql-notification-delete-all,
|
|
3124
|
+
.notification-feed-top-options-container .react-autoql-notification-mark-all {
|
|
3125
|
+
flex: 0 0 auto;
|
|
3126
|
+
display: flex;
|
|
3127
|
+
align-items: center;
|
|
3128
|
+
color: inherit;
|
|
3129
|
+
transition: color 0.1s ease;
|
|
2465
3130
|
opacity: 0.8;
|
|
2466
3131
|
cursor: pointer; }
|
|
2467
|
-
.react-autoql-notification-
|
|
3132
|
+
.notification-feed-top-options-container .react-autoql-notification-delete-all .react-autoql-icon,
|
|
3133
|
+
.notification-feed-top-options-container .react-autoql-notification-mark-all .react-autoql-icon {
|
|
3134
|
+
margin-right: 6px;
|
|
3135
|
+
margin-bottom: 3px; }
|
|
3136
|
+
.notification-feed-top-options-container .react-autoql-notification-delete-all:hover,
|
|
3137
|
+
.notification-feed-top-options-container .react-autoql-notification-mark-all:hover {
|
|
2468
3138
|
opacity: 1; }
|
|
2469
3139
|
|
|
2470
|
-
.react-autoql-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
.react-autoql-notification-message-input {
|
|
2474
|
-
width: 100%; }
|
|
2475
|
-
.react-autoql-notification-message-input textarea {
|
|
2476
|
-
width: 100% !important; }
|
|
2477
|
-
|
|
2478
|
-
.react-autoql-notification-list-item:nth-of-type(1) {
|
|
2479
|
-
animation-delay: 0s; }
|
|
2480
|
-
|
|
2481
|
-
.react-autoql-notification-list-item:nth-of-type(2) {
|
|
2482
|
-
animation-delay: 0.1s; }
|
|
2483
|
-
|
|
2484
|
-
.react-autoql-notification-list-item:nth-of-type(3) {
|
|
2485
|
-
animation-delay: 0.2s; }
|
|
3140
|
+
.react-autoql-radio-btn-container.react-autoql-radio-btn-container-list {
|
|
3141
|
+
display: inline-block; }
|
|
2486
3142
|
|
|
2487
|
-
.react-autoql-
|
|
2488
|
-
|
|
3143
|
+
.react-autoql-radio-btn-container.react-autoql-radio-btn-container-buttons {
|
|
3144
|
+
display: inline-flex;
|
|
3145
|
+
justify-content: stretch;
|
|
3146
|
+
align-items: stretch;
|
|
3147
|
+
border-radius: 4px; }
|
|
3148
|
+
.react-autoql-radio-btn-container.react-autoql-radio-btn-container-buttons .react-autoql-radio-btn {
|
|
3149
|
+
display: inline-flex;
|
|
3150
|
+
justify-content: center;
|
|
3151
|
+
align-items: center; }
|
|
3152
|
+
.react-autoql-radio-btn-container.react-autoql-radio-btn-container-buttons .react-autoql-radio-btn.active {
|
|
3153
|
+
font-weight: 500; }
|
|
2489
3154
|
|
|
2490
|
-
.react-autoql-
|
|
2491
|
-
|
|
3155
|
+
.react-autoql-radio-btn-container [type='radio']:checked,
|
|
3156
|
+
.react-autoql-radio-btn-container [type='radio']:not(:checked) {
|
|
3157
|
+
position: absolute;
|
|
3158
|
+
left: -9999px; }
|
|
2492
3159
|
|
|
2493
|
-
.react-autoql-
|
|
2494
|
-
|
|
3160
|
+
.react-autoql-radio-btn-container [type='radio']:checked + label,
|
|
3161
|
+
.react-autoql-radio-btn-container [type='radio']:not(:checked) + label {
|
|
3162
|
+
position: relative;
|
|
3163
|
+
padding-left: 28px;
|
|
3164
|
+
cursor: pointer;
|
|
3165
|
+
line-height: 20px;
|
|
3166
|
+
display: inline-block; }
|
|
2495
3167
|
|
|
2496
|
-
.react-autoql-
|
|
2497
|
-
|
|
3168
|
+
.react-autoql-radio-btn-container [type='radio']:checked + label:before,
|
|
3169
|
+
.react-autoql-radio-btn-container [type='radio']:not(:checked) + label:before {
|
|
3170
|
+
content: '';
|
|
3171
|
+
position: absolute;
|
|
3172
|
+
left: 1px;
|
|
3173
|
+
top: 1px;
|
|
3174
|
+
width: 18px;
|
|
3175
|
+
height: 18px;
|
|
3176
|
+
border: 1px solid #ddd;
|
|
3177
|
+
border-radius: 100%;
|
|
3178
|
+
background: var(--react-autoql-text-color-accent); }
|
|
2498
3179
|
|
|
2499
|
-
.react-autoql-
|
|
2500
|
-
|
|
3180
|
+
.react-autoql-radio-btn-container [type='radio']:checked + label:after,
|
|
3181
|
+
.react-autoql-radio-btn-container [type='radio']:not(:checked) + label:after {
|
|
3182
|
+
content: '';
|
|
3183
|
+
width: 12px;
|
|
3184
|
+
height: 12px;
|
|
3185
|
+
background: var(--react-autoql-accent-color, #26a7df);
|
|
3186
|
+
position: absolute;
|
|
3187
|
+
top: 4px;
|
|
3188
|
+
left: 4px;
|
|
3189
|
+
border-radius: 100%;
|
|
3190
|
+
transition: all 0.2s ease; }
|
|
2501
3191
|
|
|
2502
|
-
.react-autoql-
|
|
2503
|
-
|
|
3192
|
+
.react-autoql-radio-btn-container [type='radio']:not(:checked) + label:after {
|
|
3193
|
+
opacity: 0;
|
|
3194
|
+
transform: scale(0); }
|
|
2504
3195
|
|
|
2505
|
-
.react-autoql-
|
|
2506
|
-
|
|
3196
|
+
.react-autoql-radio-btn-container [type='radio']:checked + label:after {
|
|
3197
|
+
opacity: 1;
|
|
3198
|
+
transform: scale(1); }
|
|
2507
3199
|
|
|
2508
|
-
.react-autoql-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
padding
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item #react-autoql-notification-error-status-icon-PROJECT {
|
|
2536
|
-
margin-right: 10px; }
|
|
2537
|
-
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .reset-period-info-icon {
|
|
2538
|
-
padding-right: 20px;
|
|
2539
|
-
font-size: 17px;
|
|
2540
|
-
opacity: 1;
|
|
2541
|
-
cursor: pointer;
|
|
2542
|
-
color: var(--react-autoql-accent-color); }
|
|
2543
|
-
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item.CUSTOM:hover {
|
|
2544
|
-
background: rgba(0, 0, 0, 0.01); }
|
|
2545
|
-
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .react-autoql-notification-action-btn {
|
|
2546
|
-
opacity: 0;
|
|
2547
|
-
margin-right: 20px;
|
|
2548
|
-
font-size: 16px;
|
|
2549
|
-
transition: all 0.2s ease;
|
|
2550
|
-
color: var(--react-autoql-text-color-primary);
|
|
2551
|
-
cursor: pointer; }
|
|
2552
|
-
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .react-autoql-notification-action-btn:hover {
|
|
2553
|
-
color: var(--react-autoql-accent-color);
|
|
2554
|
-
opacity: 1 !important; }
|
|
2555
|
-
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item:hover .react-autoql-notification-action-btn {
|
|
2556
|
-
opacity: 0.5; }
|
|
2557
|
-
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item-header {
|
|
2558
|
-
display: flex;
|
|
2559
|
-
justify-content: space-between;
|
|
2560
|
-
height: 56px;
|
|
2561
|
-
padding-left: 25px;
|
|
2562
|
-
padding-right: 8px;
|
|
2563
|
-
border-bottom: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.05)); }
|
|
2564
|
-
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-enable-checkbox {
|
|
2565
|
-
margin-bottom: 4px;
|
|
2566
|
-
margin-right: 8px; }
|
|
2567
|
-
.react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-disable-checkbox {
|
|
2568
|
-
margin-bottom: 4px;
|
|
2569
|
-
margin-right: 8px;
|
|
2570
|
-
opacity: 0.5;
|
|
2571
|
-
pointer-events: none; }
|
|
2572
|
-
.react-autoql-notification-settings .react-autoql-notification-title-container {
|
|
2573
|
-
display: flex;
|
|
2574
|
-
justify-content: space-between;
|
|
2575
|
-
align-items: center;
|
|
2576
|
-
padding: 5px 20px;
|
|
2577
|
-
padding-bottom: 0;
|
|
2578
|
-
color: var(--react-autoql-text-color-primary); }
|
|
2579
|
-
.react-autoql-notification-settings .react-autoql-notification-title-container .react-autoql-notification-add-btn {
|
|
2580
|
-
display: inline-block;
|
|
2581
|
-
height: 35px;
|
|
2582
|
-
width: 35px;
|
|
2583
|
-
border-radius: 20px;
|
|
2584
|
-
background: var(--react-autoql-accent-color, #26a7df);
|
|
2585
|
-
color: var(--react-autoql-text-color-accent);
|
|
2586
|
-
line-height: 38px;
|
|
2587
|
-
text-align: center;
|
|
2588
|
-
font-size: 20px;
|
|
2589
|
-
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13);
|
|
2590
|
-
transition: all 0.2s ease;
|
|
2591
|
-
margin-right: 5px;
|
|
2592
|
-
cursor: pointer; }
|
|
2593
|
-
.react-autoql-notification-settings .react-autoql-notification-title-container .react-autoql-notification-add-btn:hover {
|
|
2594
|
-
box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.32); }
|
|
2595
|
-
.react-autoql-notification-settings .react-autoql-notification-setting-display-name {
|
|
2596
|
-
white-space: nowrap;
|
|
2597
|
-
overflow: hidden;
|
|
2598
|
-
text-overflow: ellipsis;
|
|
2599
|
-
padding-right: 10px; }
|
|
2600
|
-
.react-autoql-notification-settings .react-autoql-notification-setting-display-name .react-autoql-notification-setting-display-name-message {
|
|
2601
|
-
opacity: 0.5; }
|
|
2602
|
-
.react-autoql-notification-settings .react-autoql-re-initialize-btn {
|
|
2603
|
-
vertical-align: middle;
|
|
2604
|
-
height: 18px; }
|
|
2605
|
-
.react-autoql-notification-settings .react-autoql-re-initialize-btn-text {
|
|
2606
|
-
display: flex;
|
|
2607
|
-
align-items: center;
|
|
2608
|
-
margin-top: -25px; }
|
|
3200
|
+
.react-autoql-radio-btn-container .react-autoql-radio-btn {
|
|
3201
|
+
position: relative;
|
|
3202
|
+
display: inline-block;
|
|
3203
|
+
padding: 3px 12px;
|
|
3204
|
+
border: 1px solid var(--react-autoql-border-color, #dcdcdc);
|
|
3205
|
+
margin-left: -1px;
|
|
3206
|
+
transition: all 0.2s ease;
|
|
3207
|
+
cursor: pointer; }
|
|
3208
|
+
.react-autoql-radio-btn-container .react-autoql-radio-btn:not(:first-child) {
|
|
3209
|
+
border-left: 1px solid transparent; }
|
|
3210
|
+
.react-autoql-radio-btn-container .react-autoql-radio-btn.active {
|
|
3211
|
+
background-color: var(--react-autoql-accent-color, #26a7df);
|
|
3212
|
+
border-color: var(--react-autoql-accent-color, #26a7df);
|
|
3213
|
+
color: var(--react-autoql-text-color-accent); }
|
|
3214
|
+
.react-autoql-radio-btn-container .react-autoql-radio-btn.active.outlined {
|
|
3215
|
+
background-color: inherit;
|
|
3216
|
+
color: var(--react-autoql-accent-color, #26a7df); }
|
|
3217
|
+
.react-autoql-radio-btn-container .react-autoql-radio-btn:hover:not(.active) {
|
|
3218
|
+
border-color: var(--react-autoql-accent-color, #26a7df);
|
|
3219
|
+
color: var(--react-autoql-accent-color, #26a7df); }
|
|
3220
|
+
.react-autoql-radio-btn-container .react-autoql-radio-btn:first-child {
|
|
3221
|
+
border-top-left-radius: 4px;
|
|
3222
|
+
border-bottom-left-radius: 4px;
|
|
3223
|
+
margin-left: 0; }
|
|
3224
|
+
.react-autoql-radio-btn-container .react-autoql-radio-btn:last-child {
|
|
3225
|
+
border-top-right-radius: 4px;
|
|
3226
|
+
border-bottom-right-radius: 4px; }
|
|
2609
3227
|
|
|
2610
3228
|
|
|
2611
3229
|
.notification-read-only-group {
|
|
@@ -2674,10 +3292,6 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2674
3292
|
color: var(--react-autoql-text-color-placeholder, rgba(0, 0, 0, 0.2));
|
|
2675
3293
|
transition: all 0.3s ease;
|
|
2676
3294
|
cursor: pointer; }
|
|
2677
|
-
.notification-group-wrapper .react-autoql-notification-group-container .react-autoql-notification-group-add-btn span.react-autoql-icon svg,
|
|
2678
|
-
.notification-group-wrapper .react-autoql-notification-group-container .react-autoql-notification-group-delete-btn span.react-autoql-icon svg {
|
|
2679
|
-
width: 15px;
|
|
2680
|
-
height: 15px; }
|
|
2681
3295
|
.notification-group-wrapper .react-autoql-notification-group-container .react-autoql-notification-group-add-btn:hover,
|
|
2682
3296
|
.notification-group-wrapper .react-autoql-notification-group-container .react-autoql-notification-group-delete-btn:hover {
|
|
2683
3297
|
color: var(--react-autoql-text-color-primary, rgba(0, 0, 0, 0.6)); }
|
|
@@ -2757,7 +3371,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2757
3371
|
border: none; }
|
|
2758
3372
|
|
|
2759
3373
|
.options-toolbar {
|
|
2760
|
-
display:
|
|
3374
|
+
display: flex;
|
|
3375
|
+
flex-wrap: nowrap;
|
|
3376
|
+
flex-direction: row;
|
|
2761
3377
|
background: inherit;
|
|
2762
3378
|
padding: 5px;
|
|
2763
3379
|
border-radius: 6px;
|
|
@@ -2766,17 +3382,23 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2766
3382
|
border: 1px solid var(--react-autoql-border-color);
|
|
2767
3383
|
box-shadow: 0px 2px 3px -2px var(--react-autoql-box-shadow-color); }
|
|
2768
3384
|
.options-toolbar.vertical .react-autoql-toolbar-btn {
|
|
2769
|
-
|
|
3385
|
+
flex-direction: column; }
|
|
2770
3386
|
.options-toolbar .react-autoql-toolbar-btn {
|
|
2771
3387
|
color: var(--react-autoql-text-color-primary); }
|
|
2772
3388
|
|
|
2773
|
-
.more-options-menu
|
|
2774
|
-
|
|
3389
|
+
.more-options-menu {
|
|
3390
|
+
white-space: nowrap;
|
|
3391
|
+
overflow: hidden;
|
|
3392
|
+
text-overflow: ellipsis; }
|
|
3393
|
+
.more-options-menu li {
|
|
3394
|
+
display: flex;
|
|
3395
|
+
align-items: center; }
|
|
3396
|
+
|
|
3397
|
+
.more-options-menu {
|
|
2775
3398
|
background: var(--react-autoql-background-color-secondary);
|
|
2776
3399
|
padding: 10px 0; }
|
|
2777
|
-
.more-options-menu span.react-autoql-icon
|
|
2778
|
-
|
|
2779
|
-
margin-right: 3px; }
|
|
3400
|
+
.more-options-menu span.react-autoql-icon {
|
|
3401
|
+
margin-right: 10px; }
|
|
2780
3402
|
|
|
2781
3403
|
.report-problem-modal-body h3 {
|
|
2782
3404
|
margin-top: 0;
|
|
@@ -2787,8 +3409,10 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2787
3409
|
margin-bottom: 30px; }
|
|
2788
3410
|
|
|
2789
3411
|
.report-problem-modal-body .report-problem-text-area {
|
|
2790
|
-
width: 100
|
|
3412
|
+
width: 100% !important;
|
|
3413
|
+
max-width: 100% !important;
|
|
2791
3414
|
min-height: 80px;
|
|
3415
|
+
max-height: 35vh;
|
|
2792
3416
|
border-radius: 4px;
|
|
2793
3417
|
border: 1px solid var(--react-autoql-border-color);
|
|
2794
3418
|
margin-top: 15px;
|
|
@@ -2849,6 +3473,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2849
3473
|
.chat-single-message-container .spinner-loader:after {
|
|
2850
3474
|
border: 1px solid var(--react-autoql-accent-color);
|
|
2851
3475
|
border-color: var(--react-autoql-accent-color) transparent var(--react-autoql-accent-color) transparent; }
|
|
3476
|
+
.chat-single-message-container .chat-message-bubble {
|
|
3477
|
+
box-shadow: var(--react-autoql-box-shadow-1); }
|
|
2852
3478
|
.chat-single-message-container.response {
|
|
2853
3479
|
display: flex;
|
|
2854
3480
|
min-height: 0;
|
|
@@ -2857,8 +3483,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2857
3483
|
animation: scale-up-bl 0.5s ease; }
|
|
2858
3484
|
.chat-single-message-container.response .chat-message-bubble {
|
|
2859
3485
|
background: var(--react-autoql-background-color-secondary);
|
|
2860
|
-
color: var(--react-autoql-text-color-primary);
|
|
2861
|
-
box-shadow: 0 1px 3px 0 var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15)); }
|
|
3486
|
+
color: var(--react-autoql-text-color-primary); }
|
|
2862
3487
|
.chat-single-message-container.response .chat-message-bubble:not(.text) {
|
|
2863
3488
|
min-width: 125px; }
|
|
2864
3489
|
.chat-single-message-container.request {
|
|
@@ -2868,12 +3493,11 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2868
3493
|
animation: scale-up-br 0.5s ease; }
|
|
2869
3494
|
.chat-single-message-container.request .chat-message-bubble {
|
|
2870
3495
|
background: var(--react-autoql-accent-color);
|
|
2871
|
-
color: var(--react-autoql-text-color-accent);
|
|
2872
|
-
box-shadow: 0 1px 3px 0 var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15)); }
|
|
3496
|
+
color: var(--react-autoql-text-color-accent); }
|
|
2873
3497
|
.chat-single-message-container .chat-message-bubble {
|
|
2874
3498
|
position: relative;
|
|
2875
3499
|
padding: 13px;
|
|
2876
|
-
border-radius:
|
|
3500
|
+
border-radius: 6px;
|
|
2877
3501
|
max-width: calc(100% - 20px);
|
|
2878
3502
|
word-wrap: break-word;
|
|
2879
3503
|
font-family: inherit;
|
|
@@ -2902,7 +3526,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2902
3526
|
.chat-single-message-container .chat-message-bubble .chat-message-toolbars-container .chat-message-toolbar.right {
|
|
2903
3527
|
margin-right: -5px; }
|
|
2904
3528
|
.chat-single-message-container .chat-message-bubble .react-autoql-toolbar {
|
|
2905
|
-
|
|
3529
|
+
display: flex;
|
|
3530
|
+
flex-wrap: nowrap;
|
|
3531
|
+
flex-direction: row; }
|
|
2906
3532
|
.chat-single-message-container .chat-message-bubble .react-autoql-toolbar:not(.active) {
|
|
2907
3533
|
pointer-events: none;
|
|
2908
3534
|
visibility: hidden;
|
|
@@ -2921,7 +3547,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2921
3547
|
padding: 0 20px 15px 20px;
|
|
2922
3548
|
animation: scale-up-bl 0.5s ease; }
|
|
2923
3549
|
.chat-message-rt-container .react-autoql-reverse-translation {
|
|
2924
|
-
padding-top: 0;
|
|
3550
|
+
padding-top: 0;
|
|
3551
|
+
background: transparent; }
|
|
2925
3552
|
|
|
2926
3553
|
/* animations */
|
|
2927
3554
|
@keyframes scale-up-br {
|
|
@@ -2944,7 +3571,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2944
3571
|
position: absolute;
|
|
2945
3572
|
height: 100%;
|
|
2946
3573
|
width: 100%;
|
|
2947
|
-
padding-bottom: 158px;
|
|
3574
|
+
padding-bottom: 158px;
|
|
3575
|
+
background-color: var(--react-autoql-background-color-primary);
|
|
3576
|
+
background-image: linear-gradient(0deg, var(--react-autoql-background-color-tertiary) 0%, var(--react-autoql-background-color-primary) 100%); }
|
|
2948
3577
|
|
|
2949
3578
|
.react-autoql-drawer .response-loading-container {
|
|
2950
3579
|
position: absolute;
|
|
@@ -2959,18 +3588,20 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2959
3588
|
padding-top: 0;
|
|
2960
3589
|
height: 92px;
|
|
2961
3590
|
width: 100%;
|
|
2962
|
-
background:
|
|
2963
|
-
-webkit-clip-path: inset(-200px 0px 0px 0px);
|
|
2964
|
-
clip-path: inset(-200px 0px 0px 0px);
|
|
2965
|
-
box-shadow: 0 0px 3px 10px var(--react-autoql-background-color-primary); }
|
|
3591
|
+
background: transparent; }
|
|
2966
3592
|
|
|
2967
3593
|
.react-autoql-drawer .watermark {
|
|
2968
|
-
|
|
3594
|
+
display: flex;
|
|
3595
|
+
justify-content: center;
|
|
3596
|
+
align-items: center;
|
|
2969
3597
|
text-align: center;
|
|
3598
|
+
color: var(--react-autoql-text-color-placeholder);
|
|
2970
3599
|
opacity: 0.7;
|
|
2971
3600
|
top: 6px;
|
|
2972
3601
|
width: calc(100% - 10px);
|
|
2973
3602
|
font-size: 13px; }
|
|
3603
|
+
.react-autoql-drawer .watermark .react-autoql-icon {
|
|
3604
|
+
margin-right: 5px; }
|
|
2974
3605
|
|
|
2975
3606
|
.react-autoql-drawer .chat-drawer-chat-bar {
|
|
2976
3607
|
flex-shrink: 0;
|
|
@@ -3000,6 +3631,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3000
3631
|
margin-inline-start: 0px;
|
|
3001
3632
|
-webkit-margin-end: 0px;
|
|
3002
3633
|
margin-inline-end: 0px; }
|
|
3634
|
+
.query-tips-page-container h2 .react-autoql-icon {
|
|
3635
|
+
margin-left: 7px;
|
|
3636
|
+
margin-right: 2px; }
|
|
3003
3637
|
.query-tips-page-container .react-autoql-chatbar-input-container {
|
|
3004
3638
|
flex: 0;
|
|
3005
3639
|
padding: 10px; }
|
|
@@ -3151,6 +3785,12 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3151
3785
|
padding-left: 18px;
|
|
3152
3786
|
letter-spacing: 0.05em;
|
|
3153
3787
|
line-height: 22.5px; }
|
|
3788
|
+
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestion > span {
|
|
3789
|
+
display: flex;
|
|
3790
|
+
flex-wrap: nowrap;
|
|
3791
|
+
align-items: center; }
|
|
3792
|
+
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestion > span .react-autoql-icon {
|
|
3793
|
+
margin-right: 5px; }
|
|
3154
3794
|
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestion--highlighted {
|
|
3155
3795
|
background-color: rgba(0, 0, 0, 0.1) !important; }
|
|
3156
3796
|
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__section-title {
|
|
@@ -3161,7 +3801,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3161
3801
|
.react-autoql-card {
|
|
3162
3802
|
background: var(--react-autoql-background-color-secondary);
|
|
3163
3803
|
border-radius: 6px;
|
|
3164
|
-
box-shadow:
|
|
3804
|
+
box-shadow: var(--react-autoql-box-shadow-1);
|
|
3165
3805
|
padding: 15px;
|
|
3166
3806
|
margin: 10px;
|
|
3167
3807
|
overflow: hidden;
|
|
@@ -3292,7 +3932,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3292
3932
|
background: var(--bg-color);
|
|
3293
3933
|
border: 2px solid var(--border-color);
|
|
3294
3934
|
color: var(--react-autoql-text-color);
|
|
3295
|
-
box-shadow: var(--react-autoql-box-shadow-
|
|
3935
|
+
box-shadow: var(--react-autoql-box-shadow-1); }
|
|
3296
3936
|
.data-explorer-page-container .data-preview-tooltip.place-bottom::after, .data-explorer-page-container .data-preview-tooltip.place-top::after, .data-explorer-page-container .data-preview-tooltip.place-left::after, .data-explorer-page-container .data-preview-tooltip.place-right::after {
|
|
3297
3937
|
border-right: 2px solid var(--react-autoql-border-color);
|
|
3298
3938
|
border-top: 2px solid var(--react-autoql-border-color);
|
|
@@ -3342,7 +3982,10 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3342
3982
|
font-size: 15px;
|
|
3343
3983
|
flex: 1; }
|
|
3344
3984
|
.data-explorer-page-container .data-explorer-intro-message h2 {
|
|
3345
|
-
display:
|
|
3985
|
+
display: flex;
|
|
3986
|
+
flex-direction: row;
|
|
3987
|
+
align-items: center;
|
|
3988
|
+
justify-content: center;
|
|
3346
3989
|
font-size: 1.5em;
|
|
3347
3990
|
-webkit-margin-before: 0.83em;
|
|
3348
3991
|
margin-block-start: 0.83em;
|
|
@@ -3353,11 +3996,20 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3353
3996
|
-webkit-margin-end: 0px;
|
|
3354
3997
|
margin-inline-end: 0px;
|
|
3355
3998
|
color: var(--react-autoql-text-color-primary); }
|
|
3999
|
+
.data-explorer-page-container .data-explorer-intro-message h2 .react-autoql-icon {
|
|
4000
|
+
margin-left: 7px;
|
|
4001
|
+
margin-right: 2px; }
|
|
3356
4002
|
.data-explorer-page-container .data-explorer-intro-message .intro-message-list-container {
|
|
3357
4003
|
display: flex;
|
|
3358
4004
|
justify-content: center;
|
|
3359
4005
|
align-items: center;
|
|
3360
4006
|
text-align: left; }
|
|
4007
|
+
.data-explorer-page-container .data-explorer-intro-message .intro-message-list-container p {
|
|
4008
|
+
display: flex;
|
|
4009
|
+
flex-wrap: nowrap;
|
|
4010
|
+
align-items: center; }
|
|
4011
|
+
.data-explorer-page-container .data-explorer-intro-message .intro-message-list-container p .react-autoql-icon {
|
|
4012
|
+
margin-right: 5px; }
|
|
3361
4013
|
.data-explorer-page-container .data-explorer-topic-icon {
|
|
3362
4014
|
margin-right: 5px; }
|
|
3363
4015
|
.data-explorer-page-container .data-explorer-result-container {
|
|
@@ -3389,6 +4041,12 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3389
4041
|
padding-left: 8px; }
|
|
3390
4042
|
.data-explorer-page-container .data-preview-scroll-component {
|
|
3391
4043
|
flex: 1; }
|
|
4044
|
+
.data-explorer-page-container .react-autoql-card-title-text {
|
|
4045
|
+
display: flex;
|
|
4046
|
+
flex-wrap: nowrap;
|
|
4047
|
+
align-items: center; }
|
|
4048
|
+
.data-explorer-page-container .react-autoql-card-title-text .react-autoql-icon {
|
|
4049
|
+
margin-right: 5px; }
|
|
3392
4050
|
.data-explorer-page-container .data-explorer-card-placeholder {
|
|
3393
4051
|
min-height: 90px;
|
|
3394
4052
|
width: 100%;
|
|
@@ -3414,9 +4072,15 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3414
4072
|
font-weight: 600; }
|
|
3415
4073
|
.data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item:hover {
|
|
3416
4074
|
text-decoration: underline; }
|
|
3417
|
-
.data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .query-suggestion-text
|
|
3418
|
-
|
|
3419
|
-
|
|
4075
|
+
.data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .query-suggestion-text {
|
|
4076
|
+
display: flex;
|
|
4077
|
+
align-items: center;
|
|
4078
|
+
flex-wrap: nowrap; }
|
|
4079
|
+
.data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .query-suggestion-text .react-autoql-icon {
|
|
4080
|
+
margin-right: 5px; }
|
|
4081
|
+
.data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .query-suggestion-text .react-autoql-icon svg {
|
|
4082
|
+
stroke-width: 1px;
|
|
4083
|
+
stroke: currentColor; }
|
|
3420
4084
|
.data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .animated-item {
|
|
3421
4085
|
animation: fadeIn 0.3s linear;
|
|
3422
4086
|
animation-fill-mode: both; }
|
|
@@ -3499,7 +4163,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3499
4163
|
.filter-lock-menu .include-exclude-toggle-group {
|
|
3500
4164
|
height: 23px;
|
|
3501
4165
|
font-size: 12px;
|
|
3502
|
-
font-weight:
|
|
4166
|
+
font-weight: 400; }
|
|
3503
4167
|
.filter-lock-menu .include-exclude-toggle-group .react-autoql-radio-btn.active {
|
|
3504
4168
|
background-color: var(--react-autoql-border-color); }
|
|
3505
4169
|
.filter-lock-menu .include-exclude-toggle-group :first-child.react-autoql-radio-btn:hover, .filter-lock-menu .include-exclude-toggle-group :first-child.react-autoql-radio-btn.active {
|
|
@@ -3576,14 +4240,12 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3576
4240
|
box-sizing: border-box; }
|
|
3577
4241
|
.filter-lock-menu-content.closed {
|
|
3578
4242
|
opacity: 0; }
|
|
3579
|
-
.filter-lock-menu-content h3
|
|
3580
|
-
margin-top: 0px;
|
|
3581
|
-
margin-bottom: 0px;
|
|
3582
|
-
color: var(--react-autoql-text-color-primary); }
|
|
4243
|
+
.filter-lock-menu-content h3,
|
|
3583
4244
|
.filter-lock-menu-content h4 {
|
|
3584
|
-
margin
|
|
3585
|
-
margin-bottom: 5px;
|
|
4245
|
+
margin: 0px;
|
|
3586
4246
|
color: var(--react-autoql-text-color-primary); }
|
|
4247
|
+
.filter-lock-menu-content h4 {
|
|
4248
|
+
font-weight: 500; }
|
|
3587
4249
|
.filter-lock-menu-content .react-autoql-filter-lock-list-loading-container,
|
|
3588
4250
|
.filter-lock-menu-content .react-autoql-empty-filter-list {
|
|
3589
4251
|
display: flex;
|
|
@@ -3596,6 +4258,17 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3596
4258
|
.filter-lock-menu-content .react-autoql-empty-filter-list,
|
|
3597
4259
|
.filter-lock-menu-content .react-autoql-filter-list-container {
|
|
3598
4260
|
flex: 1; }
|
|
4261
|
+
.filter-lock-menu-content .react-autoql-filter-locking-title h3,
|
|
4262
|
+
.filter-lock-menu-content .persist-toggle-column,
|
|
4263
|
+
.filter-lock-menu-content .filter-name-column {
|
|
4264
|
+
display: flex;
|
|
4265
|
+
align-items: center;
|
|
4266
|
+
flex-direction: row;
|
|
4267
|
+
justify-content: flex-start; }
|
|
4268
|
+
.filter-lock-menu-content .react-autoql-filter-locking-title h3 .react-autoql-icon,
|
|
4269
|
+
.filter-lock-menu-content .persist-toggle-column .react-autoql-icon,
|
|
4270
|
+
.filter-lock-menu-content .filter-name-column .react-autoql-icon {
|
|
4271
|
+
margin: 0 5px; }
|
|
3599
4272
|
.filter-lock-menu-content .filter-lock-menu-header {
|
|
3600
4273
|
flex: 0;
|
|
3601
4274
|
width: 100%;
|
|
@@ -3606,17 +4279,25 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3606
4279
|
padding-bottom: 15px;
|
|
3607
4280
|
box-sizing: border-box;
|
|
3608
4281
|
padding-right: 15px; }
|
|
3609
|
-
.filter-lock-menu-content .filter-lock-menu-header .filter-locking-close-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
4282
|
+
.filter-lock-menu-content .filter-lock-menu-header .filter-locking-close-and-saving-container {
|
|
4283
|
+
display: flex;
|
|
4284
|
+
justify-content: flex-end; }
|
|
4285
|
+
.filter-lock-menu-content .filter-lock-menu-header .filter-locking-close-and-saving-container .filter-locking-close-btn {
|
|
4286
|
+
border-radius: 20px;
|
|
4287
|
+
margin: 0;
|
|
4288
|
+
padding: 3px;
|
|
4289
|
+
font-size: 20px;
|
|
4290
|
+
color: var(--react-autoql-text-color-primary); }
|
|
4291
|
+
.filter-lock-menu-content .filter-lock-menu-header .filter-locking-close-and-saving-container .filter-locking-saving-indicator {
|
|
4292
|
+
display: inline-block;
|
|
4293
|
+
font-weight: 400;
|
|
4294
|
+
font-size: 14px;
|
|
4295
|
+
padding-right: 20px;
|
|
4296
|
+
color: var(--react-autoql-accent-color);
|
|
4297
|
+
transition: opacity 0.2s ease; }
|
|
4298
|
+
.filter-lock-menu-content .filter-lock-menu-header .filter-locking-close-and-saving-container .filter-locking-saving-indicator.hidden {
|
|
4299
|
+
opacity: 0;
|
|
4300
|
+
visibility: hidden; }
|
|
3620
4301
|
.filter-lock-menu-content .filter-lock-menu-footer {
|
|
3621
4302
|
width: 100%;
|
|
3622
4303
|
display: flex;
|
|
@@ -3628,9 +4309,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3628
4309
|
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title {
|
|
3629
4310
|
width: 100%;
|
|
3630
4311
|
display: flex;
|
|
3631
|
-
flex-wrap: nowrap;
|
|
3632
4312
|
flex-direction: row;
|
|
3633
|
-
|
|
4313
|
+
flex-wrap: nowrap;
|
|
3634
4314
|
justify-content: space-between;
|
|
3635
4315
|
margin-bottom: 4px; }
|
|
3636
4316
|
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title .filter-lock-category-title {
|
|
@@ -3639,11 +4319,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3639
4319
|
overflow: hidden;
|
|
3640
4320
|
text-overflow: ellipsis; }
|
|
3641
4321
|
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title .filter-name-column {
|
|
3642
|
-
display: flex;
|
|
3643
4322
|
flex-wrap: wrap;
|
|
3644
|
-
flex-direction: row;
|
|
3645
|
-
align-items: center;
|
|
3646
|
-
justify-content: flex-start;
|
|
3647
4323
|
max-width: calc(100% - 100px);
|
|
3648
4324
|
flex: 1; }
|
|
3649
4325
|
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title .persist-toggle-column {
|
|
@@ -3654,8 +4330,6 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3654
4330
|
justify-content: flex-end;
|
|
3655
4331
|
flex: 0 0 auto;
|
|
3656
4332
|
margin-right: 40px; }
|
|
3657
|
-
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title .persist-toggle-column .react-autoql-icon {
|
|
3658
|
-
margin-left: 3px; }
|
|
3659
4333
|
.filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-item-container {
|
|
3660
4334
|
margin-bottom: 10px;
|
|
3661
4335
|
margin-right: 0px; }
|
|
@@ -3732,7 +4406,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3732
4406
|
font-size: 15px;
|
|
3733
4407
|
font-weight: normal;
|
|
3734
4408
|
z-index: 2;
|
|
3735
|
-
box-shadow:
|
|
4409
|
+
box-shadow: var(--react-autoql-box-shadow-1);
|
|
3736
4410
|
text-align: left;
|
|
3737
4411
|
border-radius: 4px;
|
|
3738
4412
|
width: 100%;
|
|
@@ -3911,66 +4585,64 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3911
4585
|
animation: fadeIn 0.3s;
|
|
3912
4586
|
text-align: center; }
|
|
3913
4587
|
|
|
3914
|
-
.react-autoql-drawer .react-autoql-drawer-header-btn {
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
.react-autoql-drawer .react-autoql-drawer-header-btn.screen-mode span.react-autoql-icon svg {
|
|
3925
|
-
width: 22px;
|
|
3926
|
-
height: 22px; }
|
|
3927
|
-
.react-autoql-drawer .react-autoql-drawer-header-btn.clear-all span.react-autoql-icon svg {
|
|
3928
|
-
width: 22px;
|
|
3929
|
-
height: 22px; }
|
|
3930
|
-
.react-autoql-drawer .react-autoql-drawer-header-btn.filter-locking span.react-autoql-icon svg {
|
|
3931
|
-
width: 22px;
|
|
3932
|
-
height: 22px; }
|
|
3933
|
-
.react-autoql-drawer .react-autoql-drawer-header-btn .react-autoql-filter-lock-icon-container {
|
|
4588
|
+
.react-autoql-drawer .react-autoql-drawer-header-btn.hidden {
|
|
4589
|
+
display: none; }
|
|
4590
|
+
|
|
4591
|
+
.react-autoql-drawer .react-autoql-drawer-header-btn .react-autoql-filter-lock-icon-container {
|
|
4592
|
+
display: inline-flex;
|
|
4593
|
+
position: relative;
|
|
4594
|
+
margin-right: 4px;
|
|
4595
|
+
margin-top: 3px; }
|
|
4596
|
+
.react-autoql-drawer .react-autoql-drawer-header-btn .react-autoql-filter-lock-icon-container .react-autoql-filter-lock-icon-badge {
|
|
4597
|
+
position: absolute;
|
|
3934
4598
|
display: inline-block;
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
height: 14px;
|
|
3943
|
-
width: 14px;
|
|
3944
|
-
right: -5px;
|
|
3945
|
-
top: -4px; }
|
|
4599
|
+
border: 2px solid var(--react-autoql-accent-color);
|
|
4600
|
+
background: var(--react-autoql-warning-color);
|
|
4601
|
+
border-radius: 50%;
|
|
4602
|
+
height: 14px;
|
|
4603
|
+
width: 14px;
|
|
4604
|
+
right: -5px;
|
|
4605
|
+
top: -4px; }
|
|
3946
4606
|
|
|
3947
4607
|
.react-autoql-drawer .react-autoql-drawer:focus {
|
|
3948
4608
|
outline: none; }
|
|
3949
4609
|
|
|
4610
|
+
.react-autoql-drawer .chat-header-container .react-autoql-drawer-header-btn {
|
|
4611
|
+
display: flex;
|
|
4612
|
+
justify-content: center;
|
|
4613
|
+
align-items: center;
|
|
4614
|
+
position: relative;
|
|
4615
|
+
margin: 10px 0px 10px 0px;
|
|
4616
|
+
margin-right: 0; }
|
|
4617
|
+
.react-autoql-drawer .chat-header-container .react-autoql-drawer-header-btn .react-autoql-icon-close {
|
|
4618
|
+
font-size: 1.2em; }
|
|
4619
|
+
|
|
3950
4620
|
.react-autoql-drawer .chat-header-container button {
|
|
4621
|
+
display: flex;
|
|
4622
|
+
justify-content: center;
|
|
4623
|
+
align-items: center;
|
|
3951
4624
|
position: relative;
|
|
3952
4625
|
background: transparent;
|
|
3953
4626
|
border: none;
|
|
3954
4627
|
color: var(--react-autoql-text-color-accent);
|
|
3955
|
-
margin:
|
|
3956
|
-
|
|
3957
|
-
font-size: 20px;
|
|
4628
|
+
margin: 0;
|
|
4629
|
+
font-size: 24px;
|
|
3958
4630
|
cursor: pointer;
|
|
3959
4631
|
outline: none !important; }
|
|
3960
4632
|
|
|
3961
4633
|
.react-autoql-drawer .chat-header-container button:hover {
|
|
3962
4634
|
opacity: 0.7; }
|
|
3963
4635
|
|
|
3964
|
-
.react-autoql-drawer .chat-header-container button svg {
|
|
3965
|
-
width: 35px;
|
|
3966
|
-
height: 35px; }
|
|
3967
|
-
|
|
3968
4636
|
.topics-container {
|
|
3969
4637
|
margin: 5px 0; }
|
|
3970
4638
|
|
|
3971
4639
|
.intro-qi-link {
|
|
3972
4640
|
cursor: pointer;
|
|
3973
4641
|
color: var(--react-autoql-accent-color); }
|
|
4642
|
+
.intro-qi-link .react-autoql-icon {
|
|
4643
|
+
margin-right: -3px;
|
|
4644
|
+
vertical-align: middle;
|
|
4645
|
+
padding-bottom: 2px; }
|
|
3974
4646
|
|
|
3975
4647
|
/* rc-drawer */
|
|
3976
4648
|
.react-autoql-drawer .drawer-content {
|
|
@@ -4359,8 +5031,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4359
5031
|
font-family: var(--react-autoql-font-family), sans-serif;
|
|
4360
5032
|
height: 100%;
|
|
4361
5033
|
overflow: hidden;
|
|
4362
|
-
border-radius:
|
|
4363
|
-
box-shadow:
|
|
5034
|
+
border-radius: 6px;
|
|
5035
|
+
box-shadow: var(--react-autoql-box-shadow-1); }
|
|
4364
5036
|
|
|
4365
5037
|
.react-autoql-dashboard-tile-inner-div {
|
|
4366
5038
|
height: 100%;
|
|
@@ -4419,6 +5091,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4419
5091
|
opacity: 0; }
|
|
4420
5092
|
.dashboard-tile-toolbars-container .dashboard-tile-toolbars-right-container,
|
|
4421
5093
|
.dashboard-tile-toolbars-container .dashboard-tile-toolbars-left-container {
|
|
5094
|
+
display: flex;
|
|
4422
5095
|
pointer-events: auto; }
|
|
4423
5096
|
.dashboard-tile-toolbars-container.left-padding {
|
|
4424
5097
|
width: calc(100% - 40px); }
|
|
@@ -4538,8 +5211,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4538
5211
|
color: var(--react-autoql-dashboard-title-color); }
|
|
4539
5212
|
|
|
4540
5213
|
.dashboard-tile-title-container .dashboard-tile-title {
|
|
4541
|
-
font-weight:
|
|
4542
|
-
font-size:
|
|
5214
|
+
font-weight: 600;
|
|
5215
|
+
font-size: 15px; }
|
|
4543
5216
|
|
|
4544
5217
|
.dashboard-tile-edit-wrapper {
|
|
4545
5218
|
display: flex;
|
|
@@ -4551,14 +5224,15 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4551
5224
|
|
|
4552
5225
|
.dashboard-tile-play-button {
|
|
4553
5226
|
cursor: default;
|
|
4554
|
-
flex
|
|
4555
|
-
|
|
5227
|
+
flex: 0 0 auto;
|
|
5228
|
+
font-size: 25px;
|
|
5229
|
+
margin-left: 6px;
|
|
5230
|
+
margin-bottom: 3px;
|
|
5231
|
+
display: flex;
|
|
5232
|
+
align-items: center; }
|
|
4556
5233
|
|
|
4557
5234
|
.dashboard-tile-play-button span.react-autoql-icon svg {
|
|
4558
5235
|
cursor: pointer;
|
|
4559
|
-
width: 25px;
|
|
4560
|
-
height: 33px;
|
|
4561
|
-
margin-left: 10px;
|
|
4562
5236
|
color: var(--react-autoql-accent-color); }
|
|
4563
5237
|
|
|
4564
5238
|
.dashboard-tile-play-button.disabled svg {
|
|
@@ -4635,16 +5309,12 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4635
5309
|
position: absolute;
|
|
4636
5310
|
pointer-events: none;
|
|
4637
5311
|
z-index: 1; }
|
|
4638
|
-
.dashboard-tile-right-input-container .
|
|
4639
|
-
.dashboard-tile-left-input-container .
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
.dashboard-tile-left-input-container .title-input-icon {
|
|
4645
|
-
font-size: 16px;
|
|
4646
|
-
top: 6px;
|
|
4647
|
-
left: 11px; }
|
|
5312
|
+
.dashboard-tile-right-input-container .react-autoql-icon,
|
|
5313
|
+
.dashboard-tile-left-input-container .react-autoql-icon {
|
|
5314
|
+
display: flex;
|
|
5315
|
+
height: 100%;
|
|
5316
|
+
font-size: 17px;
|
|
5317
|
+
margin-left: 10px; }
|
|
4648
5318
|
|
|
4649
5319
|
.dashboard-tile-input.second.query {
|
|
4650
5320
|
transition: all 0.3s ease;
|
|
@@ -4712,12 +5382,6 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4712
5382
|
.dashboard-tile-input-container input::placeholder {
|
|
4713
5383
|
opacity: 0.5; }
|
|
4714
5384
|
|
|
4715
|
-
.react-autoql-dashboard .edit-mode-placeholder-icon {
|
|
4716
|
-
display: inline-block;
|
|
4717
|
-
line-height: 22px;
|
|
4718
|
-
vertical-align: middle;
|
|
4719
|
-
height: 23px; }
|
|
4720
|
-
|
|
4721
5385
|
.dashboard-tile-input-container .react-autosuggest__suggestions-container--open {
|
|
4722
5386
|
position: absolute;
|
|
4723
5387
|
bottom: unset;
|
|
@@ -4725,13 +5389,12 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4725
5389
|
padding-bottom: 5px;
|
|
4726
5390
|
display: block;
|
|
4727
5391
|
height: unset;
|
|
4728
|
-
border-radius: 15px;
|
|
4729
5392
|
font-family: inherit;
|
|
4730
5393
|
font-size: 15px;
|
|
4731
5394
|
font-weight: normal;
|
|
4732
5395
|
z-index: 2;
|
|
4733
5396
|
overflow: hidden;
|
|
4734
|
-
box-shadow:
|
|
5397
|
+
box-shadow: var(--react-autoql-box-shadow-1);
|
|
4735
5398
|
text-align: left;
|
|
4736
5399
|
width: 100%;
|
|
4737
5400
|
top: 35px;
|
|
@@ -4759,14 +5422,17 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
4759
5422
|
color: var(--react-autoql-text-color-placeholder); }
|
|
4760
5423
|
|
|
4761
5424
|
.dashboard-tile-placeholder-text {
|
|
5425
|
+
display: flex;
|
|
5426
|
+
justify-content: center;
|
|
5427
|
+
align-items: center;
|
|
4762
5428
|
font-size: 15px;
|
|
5429
|
+
font-style: italic;
|
|
4763
5430
|
color: var(--react-autoql-text-color-placeholder, rgba(0, 0, 0, 0.3));
|
|
4764
5431
|
padding: 0 20px;
|
|
4765
5432
|
margin-bottom: 30px;
|
|
4766
5433
|
font-style: italic; }
|
|
4767
|
-
.dashboard-tile-placeholder-text .
|
|
4768
|
-
|
|
4769
|
-
line-height: 20px; }
|
|
5434
|
+
.dashboard-tile-placeholder-text .react-autoql-icon {
|
|
5435
|
+
margin: 0px 5px; }
|
|
4770
5436
|
|
|
4771
5437
|
/* React Grid Layout overrides */
|
|
4772
5438
|
.react-grid-item .react-resizable-handle {
|