react-autoql 7.3.3-alpha.3 → 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.
@@ -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
- .react-autoql-icon.warning {
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
- span.react-autoql-icon {
18
- vertical-align: unset;
19
- text-align: left;
20
- margin: 0;
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
- box-sizing: content-box; }
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: 14px;
278
- height: 14px;
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: 16px;
285
- height: 16px;
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
- width: auto;
510
- display: inline-block; }
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.large {
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.default {
526
- color: inherit;
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.default:hover {
530
- border-color: var(--react-autoql-accent-color);
531
- color: var(--react-autoql-accent-color); }
558
+ .react-autoql-btn.btn-no-border:hover {
559
+ background: var(--react-autoql-mask-color); }
560
+
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); }
532
567
 
533
- .react-autoql-btn.primary {
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-color: var(--react-autoql-danger-color, #ca0b00);
546
- color: var(--react-autoql-text-color-accent); }
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: rgba(0, 0, 0, 0.06) !important; }
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-table-date-picker {
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-table-date-picker h3 {
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-color, rgba(0, 0, 0, 0.15)) 0px 8px 24px;
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
- left: 3px;
853
- line-height: 20px;
854
- pointer-events: none; }
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-tertiary);
898
- border: 1px solid var(--react-autoql-background-color-tertiary); }
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-select {
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
- justify-content: space-between;
973
- line-height: 36px;
974
- height: 38px;
975
- transition: color 0.2s ease, border-color 0.2s ease;
976
- white-space: nowrap;
977
- font-size: inherit;
978
- cursor: pointer; }
979
- .react-autoql-select:hover {
980
- color: var(--react-autoql-accent-color, #26a7df); }
981
- .react-autoql-select:hover .react-autoql-select-arrow {
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
- .react-autoql-select:not(.outlined) {
984
- font-weight: 600;
985
- padding: 0 10px;
986
- margin: 0; }
987
- .react-autoql-select.outlined {
988
- margin: 0 3px;
989
- padding: 0px 16px;
990
- color: var(--react-autoql-text-color-primary);
991
- border: 1px solid var(--react-autoql-border-color);
992
- border-radius: 4px;
993
- background: var(--react-autoql-background-color-secondary, white); }
994
- .react-autoql-select.outlined:hover {
995
- color: var(--react-autoql-accent-color);
996
- border-color: var(--react-autoql-accent-color); }
997
- .react-autoql-select .react-autoql-select-text {
998
- display: block;
999
- height: 100%; }
1000
- .react-autoql-select .react-autoql-select-text .react-autoql-select-text-placeholder {
1001
- color: var(--react-autoql-text-color-placeholder);
1002
- font-style: italic; }
1003
- .react-autoql-select .react-autoql-select-arrow {
1004
- display: flex;
1005
- align-items: center;
1006
- padding-left: 8px;
1007
- font-size: 0.875em;
1008
- color: var(--react-autoql-text-color-placeholder); }
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 .react-autoql-select.agg-type-symbol {
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-popup-container.query-validation-select {
1503
- padding: 5px 0;
1569
+ .react-autoql-select-popover-container.query-validation-select {
1504
1570
  letter-spacing: 0.03em;
1505
- font-family: var(--react-autoql-font-family), sans-serif; }
1506
- .react-autoql-select-popup-container.query-validation-select .react-autoql-select-option {
1507
- height: unset;
1508
- font-size: 14px;
1509
- line-height: 24px;
1510
- padding: 0 15px; }
1511
- .react-autoql-select-popup-container.query-validation-select .react-autoql-select-option:last-of-type {
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
- background: var(--react-autoql-background-color-secondary);
1519
- border: 1px solid var(--react-autoql-border-color);
1520
- border-radius: 4px;
1521
- height: 38px;
1522
- width: calc(100% - 15px);
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
- position: relative;
1548
- display: inline-block;
1549
- height: 2em;
1550
- background: none;
1551
- outline: none !important;
1552
- border: none;
1553
- letter-spacing: 0.05em;
1554
- font-family: inherit;
1555
- font-size: inherit;
1556
- margin: 0;
1557
- padding: 0;
1558
- border-radius: 0;
1559
- border-bottom: 1px dashed;
1560
- color: var(--react-autoql-accent-color); }
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: inline-block;
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 .react-autoql-toolbar-btn {
1677
- display: block; }
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: auto auto;
1769
- margin-top: 5vh;
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
- text-align: center;
1801
- flex: 0 0 52px;
1802
- border-bottom: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.05));
1803
- padding: 14px 60px;
1804
- font-size: 16px; }
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,33 +1893,39 @@ g.legendOrdinal .legendTitle tspan {
1813
1893
  .react-autoql-modal-body {
1814
1894
  display: flex;
1815
1895
  flex-direction: column;
1816
- padding: 10px 20px;
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
- position: absolute !important;
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
- width: 1em; }
1921
+ width: 1em;
1922
+ height: 1em; }
1839
1923
  .react-autoql-notifications-button-container .react-autoql-notifications-button {
1840
1924
  font-size: 1em;
1841
- line-height: 0;
1842
- vertical-align: bottom; }
1925
+ height: 1em;
1926
+ width: 1em;
1927
+ padding: 0;
1928
+ margin: 0; }
1843
1929
  .react-autoql-notifications-button-container .react-autoql-notifications-badge {
1844
1930
  position: absolute;
1845
1931
  border: 2px solid #fff;
@@ -1856,97 +1942,259 @@ g.legendOrdinal .legendTitle tspan {
1856
1942
  position: absolute;
1857
1943
  display: inline-block;
1858
1944
  border: 1px solid currentColor;
1859
- background: #f5222d;
1945
+ background: var(--react-autoql-badge-color);
1860
1946
  border-radius: 50%;
1861
1947
  height: 0.6em;
1862
1948
  width: 0.6em;
1863
- left: 0.5em;
1864
- top: -2px; }
1949
+ top: -0.2em;
1950
+ right: -0.2em; }
1865
1951
 
1866
- .react-autoql-input-container {
1952
+ .react-autoql-input-and-label-container {
1867
1953
  position: relative;
1868
- margin: 2px 5px;
1869
- display: inline-block; }
1870
- .react-autoql-input-container .react-autoql-input {
1871
- border: 1px solid rgba(0, 0, 0, 0.1);
1872
- border-radius: 4px;
1873
- line-height: 32px;
1874
- min-height: 34px;
1875
- padding: 0 10px;
1876
- width: 100%;
1877
- outline: none !important;
1878
- transition: all 0.2s ease;
1879
- transition-property: border-color, color, opacity; }
1880
- .react-autoql-input-container .react-autoql-input.with-icon {
1881
- padding-left: 38px; }
1882
- .react-autoql-input-container .react-autoql-input::-moz-placeholder {
1883
- /* Chrome, Firefox, Opera, Safari 10.1+ */
1884
- color: rgba(0, 0, 0, 0.2);
1885
- opacity: 1;
1886
- /* Firefox */
1887
- font-style: italic; }
1888
- .react-autoql-input-container .react-autoql-input::placeholder {
1889
- /* Chrome, Firefox, Opera, Safari 10.1+ */
1890
- color: rgba(0, 0, 0, 0.2);
1891
- opacity: 1;
1892
- /* Firefox */
1893
- font-style: italic; }
1894
- .react-autoql-input-container .react-autoql-input-icon {
1895
- position: absolute;
1896
- left: 12px;
1897
- top: 8px;
1898
- opacity: 0.4;
1899
- transition: all 0.2s ease; }
1900
- .react-autoql-input-container .react-autoql-input-icon span.react-autoql-icon svg {
1901
- height: 17px;
1902
- width: 17px; }
1903
- .react-autoql-input-container:hover .react-autoql-input,
1904
- .react-autoql-input-container .react-autoql-input:focus {
1905
- border-color: var(--react-autoql-accent-color, #26a7df); }
1906
- .react-autoql-input-container:hover .react-autoql-input-icon,
1907
- .react-autoql-input-container .react-autoql-input-icon.focus {
1908
- opacity: 1;
1909
- color: var(--react-autoql-accent-color, #26a7df); }
1910
-
1911
- .react-autoql-notification-rule-container {
1912
- display: flex; }
1913
- .react-autoql-notification-rule-container .react-autoql-rule-input {
1914
- display: flex;
1915
- flex-direction: column;
1916
- flex: 1;
1917
- width: 100%; }
1918
- .react-autoql-notification-rule-container .react-autoql-rule-input input {
1919
- line-height: 37px; }
1920
- .react-autoql-notification-rule-container .react-autoql-rule-first-input-container {
1921
- display: flex;
1922
- flex: 1; }
1923
- .react-autoql-notification-rule-container .react-autoql-rule-second-input-container {
1924
- display: flex;
1925
- padding: 2px 0;
1926
- border-radius: 4px;
1927
- transition: all 0.3s ease;
1928
- flex: 1; }
1929
- .react-autoql-notification-rule-container .react-autoql-rule-second-input-container .react-autoql-rule-condition-select {
1930
- flex: 0;
1931
- flex-basis: 33px;
1932
- height: 39px; }
1933
- .react-autoql-notification-rule-container .react-autoql-rule-second-input-container .react-autoql-rule-input {
1934
- flex: 1;
1935
- margin-left: 4px; }
1936
- .react-autoql-notification-rule-container .react-autoql-rule-second-input-container .react-autoql-delete-compare-btn {
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;
2170
+ height: 39px; }
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 {
1937
2174
  cursor: pointer;
1938
2175
  opacity: 0.6;
1939
2176
  padding: 6px; }
1940
- .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 {
1941
2178
  opacity: 1; }
1942
- .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 {
1943
2180
  display: none; }
1944
- .react-autoql-notification-rule-container .react-autoql-rule-second-input-container .react-autoql-input-container {
1945
- margin: 0; }
1946
- .react-autoql-notification-rule-container .react-autoql-rule-second-input-container .react-autoql-input-container:hover + .react-autoql-rule-term-type-selector,
1947
- .react-autoql-notification-rule-container .react-autoql-rule-second-input-container .react-autoql-input-container.focus + .react-autoql-rule-term-type-selector {
1948
- color: var(--react-autoql-accent-color, #26a7df);
1949
- border-color: var(--react-autoql-accent-color, #26a7df); }
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; }
1950
2198
 
1951
2199
  .read-only-rule-term {
1952
2200
  display: inline-block;
@@ -1959,22 +2207,31 @@ g.legendOrdinal .legendTitle tspan {
1959
2207
  margin-top: 2px;
1960
2208
  border-radius: 4px; }
1961
2209
 
1962
- .expression-term-validation-error {
1963
- padding: 0 10px;
1964
- color: var(--react-autoql-warning-color); }
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); }
1965
2230
 
1966
2231
  .notification-rule-outer-container {
1967
2232
  position: relative;
1968
- border: 1px solid transparent;
1969
- border-radius: 4px;
1970
2233
  padding-bottom: 5px; }
1971
2234
 
1972
- .expression-error-message {
1973
- padding-left: 5px; }
1974
-
1975
- .data-alerts-container.read-only .react-autoql-notification-group-container {
1976
- border: none; }
1977
-
1978
2235
  .react-autoql-notification-list-item {
1979
2236
  display: flex;
1980
2237
  flex-direction: column;
@@ -1983,54 +2240,117 @@ g.legendOrdinal .legendTitle tspan {
1983
2240
  overflow: hidden;
1984
2241
  background: var(--react-autoql-background-color-secondary, #fff);
1985
2242
  border-radius: 4px;
1986
- box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13);
2243
+ box-shadow: var(--react-autoql-box-shadow-1);
1987
2244
  margin-bottom: 8px;
1988
2245
  color: var(--react-autoql-text-color-primary, rgba(0, 0, 0, 0.6));
1989
2246
  font-family: var(--react-autoql-font-family), sans-serif;
1990
2247
  transition: all 1s ease;
1991
2248
  transition: height 0.3s cubic-bezier(0.26, 0.26, 0, 1);
1992
2249
  animation: slideIn 0.5s cubic-bezier(0.26, 0.26, 0, 1);
1993
- animation-fill-mode: both;
1994
- animation-delay: 0s; }
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; }
1995
2277
  .react-autoql-notification-list-item .single-value-response {
1996
2278
  font-size: 32px;
1997
2279
  margin-top: -6px;
1998
2280
  opacity: 0.9; }
1999
- .react-autoql-notification-list-item .viz-toolbar {
2000
- border: none; }
2001
- .react-autoql-notification-list-item .viz-toolbar .react-autoql-toolbar-btn {
2002
- height: 33px; }
2003
- .react-autoql-notification-list-item .react-autoql-notification-details-title {
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 {
2004
2297
  font-weight: 600;
2005
2298
  padding-top: 20px;
2006
2299
  padding-bottom: 5px; }
2007
- .react-autoql-notification-list-item.expanded .react-autoql-notification-list-item-header {
2008
- border-bottom: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.04)); }
2009
- .react-autoql-notification-list-item .react-autoql-notification-details {
2010
- overflow: hidden; }
2011
- .react-autoql-notification-list-item.animation-complete .react-autoql-notification-details {
2012
- overflow: auto; }
2013
- .react-autoql-notification-list-item:hover:not(.expanded) {
2014
- background-color: var(--react-autoql-hover-color, rgba(0, 0, 0, 0.01)); }
2015
- .react-autoql-notification-list-item:hover .react-autoql-notification-delete-icon {
2016
- opacity: 1; }
2017
- .react-autoql-notification-list-item.triggered .react-autoql-notification-display-name {
2018
- color: var(--react-autoql-accent-color, #26a7df) !important; }
2019
- .react-autoql-notification-list-item.triggered .react-autoql-notification-dismiss-btn {
2020
- margin-top: 3px;
2021
- color: var(--react-autoql-accent-color, #26a7df); }
2022
- .react-autoql-notification-list-item.triggered .react-autoql-notification-alert-strip {
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 {
2023
2324
  opacity: 1; }
2024
2325
  .react-autoql-notification-list-item .react-autoql-notification-expanded-content {
2025
2326
  display: flex;
2026
2327
  flex-direction: column;
2027
2328
  justify-content: stretch;
2028
- transition: height 0.2s ease;
2029
- height: 0;
2030
- opacity: 0; }
2031
- .react-autoql-notification-list-item .react-autoql-notification-expanded-content.visible {
2032
- height: 400px;
2033
- opacity: 1; }
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; }
2034
2354
  .react-autoql-notification-list-item .react-autoql-notification-extra-content {
2035
2355
  flex: 0;
2036
2356
  flex-basis: 55px;
@@ -2063,37 +2383,33 @@ g.legendOrdinal .legendTitle tspan {
2063
2383
  margin: 0 10px;
2064
2384
  padding-top: 20px;
2065
2385
  padding-bottom: 7px; }
2066
- .react-autoql-notification-list-item .react-autoql-notification-details-container {
2067
- flex: 1;
2386
+ .react-autoql-notification-list-item .react-autoql-notification-content-container {
2068
2387
  display: flex;
2069
- flex-direction: row;
2070
- align-items: stretch;
2071
- justify-content: stretch;
2072
- overflow: hidden; }
2073
- .react-autoql-notification-list-item .react-autoql-notification-details-container .react-autoql-notification-details {
2074
- flex: 1 1;
2075
- padding: 20px;
2076
- padding-top: 0;
2077
- opacity: 0.9;
2078
- 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%; }
2079
2391
  .react-autoql-notification-list-item .react-autoql-notification-data-container {
2080
2392
  display: flex;
2081
- flex-direction: row;
2082
- justify-content: stretch;
2393
+ flex-direction: column;
2083
2394
  flex: 3 3 0px;
2084
- overflow: hidden; }
2085
- .react-autoql-notification-list-item .react-autoql-notification-data-container .react-autoql-notificaton-chart-container {
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 {
2086
2403
  flex: 1;
2087
- height: 100%;
2088
- width: 0;
2089
2404
  display: flex;
2090
2405
  flex-direction: column;
2091
- padding: 0px 20px 10px 20px; }
2406
+ padding: 10px 10px 0px 10px;
2407
+ overflow: hidden; }
2092
2408
  .react-autoql-notification-list-item .react-autoql-notification-data-container .react-autoql-table-container {
2093
2409
  padding: 0 10px; }
2094
2410
  .react-autoql-notification-list-item .react-autoql-notification-data-container .react-autoql-table {
2095
2411
  color: currentColor;
2096
- font-size: 11px; }
2412
+ font-size: 12px; }
2097
2413
  .react-autoql-notification-list-item .react-autoql-notification-data-title {
2098
2414
  line-height: 22px;
2099
2415
  font-size: 12px;
@@ -2101,39 +2417,26 @@ g.legendOrdinal .legendTitle tspan {
2101
2417
  color: var(--react-autoql-text-color-primary);
2102
2418
  opacity: 0.5;
2103
2419
  padding: 8px 20px; }
2104
- .react-autoql-notification-list-item .react-autoql-notification-data-title span.react-autoql-icon svg {
2105
- margin-top: -3px;
2106
- vertical-align: middle; }
2107
- .react-autoql-notification-list-item .react-autoql-notification-dismiss-icon {
2108
- font-size: 21px;
2109
- margin: 11px;
2110
- width: 40px;
2111
- height: 40px;
2112
- padding: 10px;
2113
- border-radius: 26px;
2114
- display: inline-block;
2115
- line-height: 20px;
2116
- background-color: transparent;
2117
- transition: background-color 0.2s ease;
2118
- cursor: pointer; }
2119
- .react-autoql-notification-list-item .react-autoql-notification-dismiss-icon:hover {
2120
- background-color: var(--react-autoql-background-color-primary, #ececec); }
2121
- .react-autoql-notification-list-item .react-autoql-notification-delete-icon {
2122
- font-size: 18px;
2123
- margin-top: 3px;
2124
- margin-right: 3px;
2125
- opacity: 0;
2126
- width: 36px;
2127
- height: 36px;
2128
- padding: 9px;
2129
- border-radius: 20px;
2130
- display: inline-block;
2131
- line-height: 20px;
2132
- background-color: transparent;
2133
- transition: all 0.2s ease;
2134
- cursor: pointer; }
2135
- .react-autoql-notification-list-item .react-autoql-notification-delete-icon:hover {
2136
- 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); }
2137
2440
  .react-autoql-notification-list-item .react-autoql-notification-alert-icon {
2138
2441
  position: absolute;
2139
2442
  top: -7px;
@@ -2155,10 +2458,31 @@ g.legendOrdinal .legendTitle tspan {
2155
2458
  transition-property: opacity;
2156
2459
  transition-duration: 0.2s;
2157
2460
  transition-timing-function: ease; }
2158
- .react-autoql-notification-list-item .react-autoql-notification-viz-switcher {
2159
- flex: 0 0 50px;
2160
- padding: 10px;
2161
- border-left: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.05)); }
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; }
2162
2486
  .react-autoql-notification-list-item .react-autoql-notification-img-container {
2163
2487
  flex: 0 0 60px; }
2164
2488
  .react-autoql-notification-list-item .react-autoql-notification-img-container .react-autoql-notification-img {
@@ -2180,259 +2504,592 @@ g.legendOrdinal .legendTitle tspan {
2180
2504
  .react-autoql-notification-list-item .react-autoql-notification-display-name-container .react-autoql-notification-display-name {
2181
2505
  font-size: 18px;
2182
2506
  color: var(--react-autoql-text-color-primary, rgba(0, 0, 0, 0.7)); }
2183
- .react-autoql-notification-list-item .react-autoql-notification-display-name-container .react-autoql-notification-timestamp {
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 {
2184
2510
  font-size: 12px;
2185
2511
  opacity: 0.5; }
2186
- .react-autoql-notification-list-item .react-autoql-notification-display-name-container .react-autoql-notification-timestamp span.react-autoql-icon svg {
2187
- margin-bottom: -1px; }
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; }
2188
2518
 
2189
- .react-autoql-steps-container {
2190
- margin: 10px; }
2519
+ .react-autoql-notification-list-item:nth-of-type(1) {
2520
+ animation-delay: 0s; }
2191
2521
 
2192
- .react-autoql-step-container {
2193
- position: relative;
2194
- border-left: 1px solid var(--react-autoql-text-color-placeholder, lightgray);
2195
- margin-left: 12px;
2196
- padding-left: 20px;
2197
- padding-bottom: 5px;
2198
- transition: all 0.5s ease; }
2199
- .react-autoql-step-container.complete {
2200
- border-color: var(--react-autoql-accent-color, #26a7df); }
2201
- .react-autoql-step-container.complete .react-autoql-step-dot {
2202
- border-color: var(--react-autoql-accent-color, #26a7df);
2203
- background: var(--react-autoql-accent-color, #26a7df);
2204
- color: var(--react-autoql-text-color-accent); }
2205
- .react-autoql-step-container.error {
2206
- border-color: var(--react-autoql-warning-color); }
2207
- .react-autoql-step-container.error .react-autoql-step-dot {
2208
- border-color: var(--react-autoql-warning-color);
2209
- background: var(--react-autoql-warning-color);
2210
- color: #fff; }
2211
- .react-autoql-step-container:not(.active) .react-autoql-step-content-container {
2212
- pointer-events: none;
2213
- height: 10px;
2214
- opacity: 0;
2215
- margin: 0; }
2522
+ .react-autoql-notification-list-item:nth-of-type(2) {
2523
+ animation-delay: 0.1s; }
2216
2524
 
2217
- .react-autoql-step-dot {
2218
- position: absolute;
2219
- top: 0;
2220
- left: -10px;
2221
- height: 20px;
2222
- width: 20px;
2223
- border-radius: 15px;
2224
- background: var(--react-autoql-background-color-secondary, #fff);
2225
- border: 1px solid var(--react-autoql-text-color-placeholder, lightgray);
2226
- transition: all 0.5s ease;
2227
- font-size: 10.5px;
2228
- color: var(--react-autoql-text-color-placeholder, lightgray);
2229
- text-align: center; }
2525
+ .react-autoql-notification-list-item:nth-of-type(3) {
2526
+ animation-delay: 0.2s; }
2230
2527
 
2231
- .react-autoql-step-title-container:hover {
2232
- cursor: pointer;
2233
- transition: color 0.2s ease;
2234
- color: var(--react-autoql-accent-color, #26a7df); }
2528
+ .react-autoql-notification-list-item:nth-of-type(4) {
2529
+ animation-delay: 0.3s; }
2235
2530
 
2236
- .react-autoql-step-title {
2237
- font-weight: 500;
2238
- font-size: 15px;
2239
- line-height: 15px;
2240
- padding-top: 2px; }
2241
- .react-autoql-step-title.disabled {
2242
- cursor: default;
2243
- color: var(--react-autoql-text-color-placeholder, lightgray); }
2531
+ .react-autoql-notification-list-item:nth-of-type(5) {
2532
+ animation-delay: 0.4s; }
2244
2533
 
2245
- .react-autoql-step-subtitle {
2246
- font-size: 13px;
2247
- padding-top: 6px;
2248
- padding-bottom: 6px;
2249
- color: var(--react-autoql-text-color-placeholder, rgba(0, 0, 0, 0.4)); }
2250
-
2251
- .react-autoql-step-content {
2252
- margin: 15px;
2253
- margin-top: 0; }
2254
-
2255
- .react-autoql-step-content-container {
2256
- transition-timing-function: ease;
2257
- transition-property: height, opacity, margin;
2258
- transition-duration: 0.5s;
2259
- opacity: 1; }
2534
+ .react-autoql-notification-list-item:nth-of-type(6) {
2535
+ animation-delay: 0.5s; }
2260
2536
 
2261
- .react-autoql-radio-btn-container.react-autoql-radio-btn-container-list {
2262
- display: inline-block; }
2537
+ .react-autoql-notification-list-item:nth-of-type(7) {
2538
+ animation-delay: 0.6s; }
2263
2539
 
2264
- .react-autoql-radio-btn-container.react-autoql-radio-btn-container-buttons {
2265
- display: inline-flex;
2266
- justify-content: stretch;
2267
- align-items: stretch;
2268
- border-radius: 4px; }
2269
- .react-autoql-radio-btn-container.react-autoql-radio-btn-container-buttons .react-autoql-radio-btn {
2270
- display: inline-flex;
2271
- justify-content: center;
2272
- align-items: center; }
2540
+ .react-autoql-notification-list-item:nth-of-type(8) {
2541
+ animation-delay: 0.7s; }
2273
2542
 
2274
- .react-autoql-radio-btn-container [type='radio']:checked,
2275
- .react-autoql-radio-btn-container [type='radio']:not(:checked) {
2276
- position: absolute;
2277
- left: -9999px; }
2543
+ .react-autoql-notification-list-item:nth-of-type(9) {
2544
+ animation-delay: 0.8s; }
2278
2545
 
2279
- .react-autoql-radio-btn-container [type='radio']:checked + label,
2280
- .react-autoql-radio-btn-container [type='radio']:not(:checked) + label {
2281
- position: relative;
2282
- padding-left: 28px;
2283
- cursor: pointer;
2284
- line-height: 20px;
2285
- display: inline-block; }
2546
+ .react-autoql-notification-list-item:nth-of-type(10) {
2547
+ animation-delay: 0.9s; }
2286
2548
 
2287
- .react-autoql-radio-btn-container [type='radio']:checked + label:before,
2288
- .react-autoql-radio-btn-container [type='radio']:not(:checked) + label:before {
2289
- content: '';
2290
- position: absolute;
2291
- left: 1px;
2292
- top: 1px;
2293
- width: 18px;
2294
- height: 18px;
2295
- border: 1px solid #ddd;
2296
- border-radius: 100%;
2297
- 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; } }
2298
2556
 
2299
- .react-autoql-radio-btn-container [type='radio']:checked + label:after,
2300
- .react-autoql-radio-btn-container [type='radio']:not(:checked) + label:after {
2301
- content: '';
2302
- width: 12px;
2303
- height: 12px;
2304
- background: var(--react-autoql-accent-color, #26a7df);
2305
- position: absolute;
2306
- top: 4px;
2307
- left: 4px;
2308
- border-radius: 100%;
2309
- transition: all 0.2s ease; }
2310
2557
 
2311
- .react-autoql-radio-btn-container [type='radio']:not(:checked) + label:after {
2312
- opacity: 0;
2313
- transform: scale(0); }
2558
+ .data-alert-schedule-builder-step .schedule-builder-day-of-year-selector {
2559
+ display: inline-flex;
2560
+ align-items: flex-end; }
2314
2561
 
2315
- .react-autoql-radio-btn-container [type='radio']:checked + label:after {
2316
- opacity: 1;
2317
- transform: scale(1); }
2562
+ .data-alert-schedule-builder-step .data-alert-condition-statement {
2563
+ font-style: italic; }
2318
2564
 
2319
- .react-autoql-radio-btn-container .react-autoql-radio-btn {
2565
+ .data-alert-schedule-builder-step .schedule-builder-at-connector {
2566
+ padding-bottom: 8px; }
2567
+
2568
+ .data-alert-schedule-builder-step .frequency-category-select {
2320
2569
  position: relative;
2321
- display: inline-block;
2322
- padding: 3px 12px;
2323
- border: 1px solid var(--react-autoql-border-color, #dcdcdc);
2324
- margin-left: -1px;
2325
- transition: all 0.2s ease;
2326
- cursor: pointer; }
2327
- .react-autoql-radio-btn-container .react-autoql-radio-btn:not(:first-child) {
2328
- border-left: 1px solid transparent; }
2329
- .react-autoql-radio-btn-container .react-autoql-radio-btn.active {
2330
- background-color: var(--react-autoql-accent-color, #26a7df);
2331
- border-color: var(--react-autoql-accent-color, #26a7df);
2332
- color: var(--react-autoql-text-color-accent); }
2333
- .react-autoql-radio-btn-container .react-autoql-radio-btn.active.outlined {
2334
- background-color: inherit;
2335
- color: var(--react-autoql-accent-color, #26a7df); }
2336
- .react-autoql-radio-btn-container .react-autoql-radio-btn:hover:not(.active) {
2337
- border-color: var(--react-autoql-accent-color, #26a7df);
2338
- color: var(--react-autoql-accent-color, #26a7df); }
2339
- .react-autoql-radio-btn-container .react-autoql-radio-btn:first-child {
2340
- border-top-left-radius: 4px;
2341
- border-bottom-left-radius: 4px;
2342
- margin-left: 0; }
2343
- .react-autoql-radio-btn-container .react-autoql-radio-btn:last-child {
2344
- border-top-right-radius: 4px;
2345
- border-bottom-right-radius: 4px; }
2570
+ padding-top: 9px; }
2346
2571
 
2347
- .react-autoql-select-with-arrow div {
2348
- color: inherit; }
2572
+ .data-alert-schedule-builder-step .notification-frequency-select {
2573
+ margin-left: 8px; }
2349
2574
 
2350
- .react-autoql-select-with-arrow > div {
2351
- border-color: var(--react-autoql-border-color, rgba(0, 0, 0, 0.1));
2352
- background: var(--react-autoql-background-color-secondary, white);
2353
- transition: all 0.2s ease;
2354
- cursor: pointer !important; }
2355
- .react-autoql-select-with-arrow > div:hover {
2356
- border-color: var(--react-autoql-accent-color, #26a7df); }
2357
- .react-autoql-select-with-arrow > div .react-autoql-select-with-arrow__option {
2358
- cursor: pointer; }
2359
- .react-autoql-select-with-arrow > div .react-autoql-select-with-arrow__option:hover {
2360
- background: var(--react-autoql-hover-color, rgba(0, 0, 0, 0.15)); }
2361
- .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 {
2362
- 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; }
2363
2577
 
2364
- .react-autoql-select-with-arrow:focus {
2365
- outline: none !important; }
2578
+ .data-alert-schedule-builder-step .frequency-repeat-follow-text {
2579
+ line-height: 32px;
2580
+ vertical-align: top; }
2366
2581
 
2367
- .react-autoql-select-with-arrow__control--is-focused {
2368
- border: 1px solid var(--react-autoql-accent-color, #26a7df) !important;
2369
- box-shadow: none !important; }
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; }
2370
2587
 
2371
- .react-autoql-step-container a {
2372
- color: var(--react-autoql-accent-color, #26a7df); }
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; }
2373
2607
 
2374
- .frequency-date-select-container {
2608
+ .data-alert-schedule-builder-step .react-autoql-select {
2609
+ margin: 0;
2610
+ margin-right: 5px; }
2611
+
2612
+ .data-alert-schedule-builder-step .frequency-date-select-container {
2375
2613
  margin-top: 10px; }
2376
2614
 
2377
- .notification-frequency-step {
2378
- display: flex; }
2379
- .notification-frequency-step .frequency-category-select {
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;
2380
2628
  position: relative;
2381
- padding-top: 9px; }
2382
- .notification-frequency-step .notification-frequency-select {
2383
- margin-left: 8px; }
2384
- .notification-frequency-step .frequency-repeat-checkbox .react-autoql-checkbox-label {
2385
- line-height: 33px; }
2386
- .notification-frequency-step .frequency-repeat-follow-text {
2387
- line-height: 32px;
2388
- vertical-align: top; }
2389
- .notification-frequency-step .frequency-settings-container {
2390
- flex: 0 1 400px; }
2391
-
2392
- .schedule-builder-timezone-section {
2393
- margin: 10px 5px; }
2394
- .schedule-builder-timezone-section .react-autoql-timezone-select {
2395
- display: inline-block;
2396
- width: 300px; }
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; }
2397
2693
 
2398
- .notification-modal-content .react-autoql-step-content p {
2399
- margin-bottom: 0.5em;
2400
- margin-top: 0.5em;
2401
- padding-left: 8px; }
2694
+ .react-autoql-data-alert-setting-group {
2695
+ display: flex;
2696
+ flex-direction: row; }
2402
2697
 
2403
- .notification-modal-content .step-btn-container {
2404
- text-align: right;
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;
2405
2752
  display: flex;
2406
- min-height: 30px; }
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); }
2407
2822
 
2408
- .expression-valid-checkmark.react-autoql-icon svg {
2409
- color: var(--react-autoql-success-color); }
2823
+ .react-autoql-data-alert-modal-footer {
2824
+ width: 100%;
2825
+ display: flex;
2826
+ justify-content: space-between; }
2410
2827
 
2411
- .expression-invalid-message-container {
2412
- max-width: 75%;
2413
- float: left;
2414
- text-align: left !important;
2828
+ .modal-footer-button-container {
2415
2829
  display: flex;
2416
- flex-direction: row;
2417
- align-items: left;
2418
- justify-content: left; }
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; }
2419
2835
 
2420
- .expression-invalid-message {
2421
- color: var(--react-autoql-danger-color);
2422
- display: 'inline-block'; }
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); }
2423
2898
 
2424
- .react-autoql-data-alert-query-name-tooltip-icon {
2425
- color: var(--react-autoql-info-color) !important; }
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; }
2426
3080
 
2427
3081
  .notification-list-loading-container {
3082
+ display: flex;
3083
+ flex-direction: column;
3084
+ align-items: center;
2428
3085
  text-align: center;
2429
3086
  padding-top: 100px;
2430
- color: var(--react-autoql-text-color-primary);
3087
+ color: inherit;
2431
3088
  height: 100%;
2432
3089
  background: var(--react-autoql-background-color-primary); }
2433
3090
 
2434
3091
  .empty-notifications-message {
2435
- color: var(--react-autoql-text-color-primary);
3092
+ color: inherit;
2436
3093
  text-align: center;
2437
3094
  margin-top: 75px; }
2438
3095
  .empty-notifications-message div {
@@ -2448,163 +3105,125 @@ g.legendOrdinal .legendTitle tspan {
2448
3105
  .react-autoql-notification-list-container {
2449
3106
  display: flex;
2450
3107
  flex-direction: column;
3108
+ height: 100%;
2451
3109
  background: var(--react-autoql-background-color-primary);
2452
- height: 100%; }
3110
+ font-family: var(--react-autoql-font-family), sans-serif;
3111
+ color: var(--react-autoql-text-color-primary); }
2453
3112
  .react-autoql-notification-list-container .notification-feed-list {
2454
3113
  padding: 0 20px;
2455
- padding-top: 0; }
3114
+ padding-bottom: 10px; }
2456
3115
 
2457
- .react-autoql-notification-dismiss-all {
2458
- flex: 0;
2459
- text-align: right;
2460
- margin: 12px;
2461
- color: var(--react-autoql-text-color-primary, rgba(0, 0, 0, 0.4));
2462
- transition: color 0.1s ease; }
2463
- .react-autoql-notification-dismiss-all span {
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;
2464
3130
  opacity: 0.8;
2465
3131
  cursor: pointer; }
2466
- .react-autoql-notification-dismiss-all span:hover {
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 {
2467
3138
  opacity: 1; }
2468
3139
 
2469
- .react-autoql-notification-display-name-input {
2470
- width: 100%; }
2471
-
2472
- .react-autoql-notification-message-input {
2473
- width: 100%; }
2474
- .react-autoql-notification-message-input textarea {
2475
- width: 100% !important; }
2476
-
2477
- .react-autoql-notification-list-item:nth-of-type(1) {
2478
- animation-delay: 0s; }
2479
-
2480
- .react-autoql-notification-list-item:nth-of-type(2) {
2481
- animation-delay: 0.1s; }
2482
-
2483
- .react-autoql-notification-list-item:nth-of-type(3) {
2484
- animation-delay: 0.2s; }
3140
+ .react-autoql-radio-btn-container.react-autoql-radio-btn-container-list {
3141
+ display: inline-block; }
2485
3142
 
2486
- .react-autoql-notification-list-item:nth-of-type(4) {
2487
- animation-delay: 0.3s; }
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; }
2488
3154
 
2489
- .react-autoql-notification-list-item:nth-of-type(5) {
2490
- animation-delay: 0.4s; }
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; }
2491
3159
 
2492
- .react-autoql-notification-list-item:nth-of-type(6) {
2493
- animation-delay: 0.5s; }
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; }
2494
3167
 
2495
- .react-autoql-notification-list-item:nth-of-type(7) {
2496
- animation-delay: 0.6s; }
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); }
2497
3179
 
2498
- .react-autoql-notification-list-item:nth-of-type(8) {
2499
- animation-delay: 0.7s; }
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; }
2500
3191
 
2501
- .react-autoql-notification-list-item:nth-of-type(9) {
2502
- animation-delay: 0.8s; }
3192
+ .react-autoql-radio-btn-container [type='radio']:not(:checked) + label:after {
3193
+ opacity: 0;
3194
+ transform: scale(0); }
2503
3195
 
2504
- .react-autoql-notification-list-item:nth-of-type(10) {
2505
- animation-delay: 0.9s; }
3196
+ .react-autoql-radio-btn-container [type='radio']:checked + label:after {
3197
+ opacity: 1;
3198
+ transform: scale(1); }
2506
3199
 
2507
- .react-autoql-notification-settings {
2508
- background-color: var(--react-autoql-background-color-primary);
2509
- color: var(--react-autoql-text-color-primary);
2510
- padding-top: 20px;
2511
- padding-bottom: 100px;
2512
- height: 100%; }
2513
- .react-autoql-notification-settings .empty-list-message {
2514
- color: var(--react-autoql-text-color-primary);
2515
- text-align: center;
2516
- margin-top: 75px; }
2517
- .react-autoql-notification-settings .empty-list-message .empty-list-img {
2518
- width: 250px;
2519
- height: 250px; }
2520
- .react-autoql-notification-settings .react-autoql-notification-settings-container {
2521
- margin: 20px;
2522
- margin-top: 10px;
2523
- border-radius: 4px;
2524
- box-shadow: 0 1px 3px 0 var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15));
2525
- background-color: var(--react-autoql-background-color-secondary);
2526
- overflow: hidden; }
2527
- .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item {
2528
- height: 55px;
2529
- line-height: 55px;
2530
- transition: height 0.3s cubic-bezier(0.26, 0.26, 0, 1); }
2531
- .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .react-autoql-notification-error-status-icon {
2532
- margin-right: 10px;
2533
- cursor: pointer; }
2534
- .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item #react-autoql-notification-error-status-icon-PROJECT {
2535
- margin-right: 10px; }
2536
- .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .reset-period-info-icon {
2537
- padding-right: 20px;
2538
- font-size: 17px;
2539
- opacity: 1;
2540
- cursor: pointer;
2541
- color: var(--react-autoql-accent-color); }
2542
- .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item.CUSTOM:hover {
2543
- background: rgba(0, 0, 0, 0.01); }
2544
- .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .react-autoql-notification-action-btn {
2545
- opacity: 0;
2546
- margin-right: 20px;
2547
- font-size: 16px;
2548
- transition: all 0.2s ease;
2549
- color: var(--react-autoql-text-color-primary);
2550
- cursor: pointer; }
2551
- .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item .react-autoql-notification-action-btn:hover {
2552
- color: var(--react-autoql-accent-color);
2553
- opacity: 1 !important; }
2554
- .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item:hover .react-autoql-notification-action-btn {
2555
- opacity: 0.5; }
2556
- .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-setting-item-header {
2557
- display: flex;
2558
- justify-content: space-between;
2559
- height: 56px;
2560
- padding-left: 25px;
2561
- padding-right: 8px;
2562
- border-bottom: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.05)); }
2563
- .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-enable-checkbox {
2564
- margin-bottom: 4px;
2565
- margin-right: 8px; }
2566
- .react-autoql-notification-settings .react-autoql-notification-settings-container .react-autoql-notification-disable-checkbox {
2567
- margin-bottom: 4px;
2568
- margin-right: 8px;
2569
- opacity: 0.5;
2570
- pointer-events: none; }
2571
- .react-autoql-notification-settings .react-autoql-notification-title-container {
2572
- display: flex;
2573
- justify-content: space-between;
2574
- align-items: center;
2575
- padding: 5px 20px;
2576
- padding-bottom: 0;
2577
- color: var(--react-autoql-text-color-primary); }
2578
- .react-autoql-notification-settings .react-autoql-notification-title-container .react-autoql-notification-add-btn {
2579
- display: inline-block;
2580
- height: 35px;
2581
- width: 35px;
2582
- border-radius: 20px;
2583
- background: var(--react-autoql-accent-color, #26a7df);
2584
- color: var(--react-autoql-text-color-accent);
2585
- line-height: 38px;
2586
- text-align: center;
2587
- font-size: 20px;
2588
- box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13);
2589
- transition: all 0.2s ease;
2590
- margin-right: 5px;
2591
- cursor: pointer; }
2592
- .react-autoql-notification-settings .react-autoql-notification-title-container .react-autoql-notification-add-btn:hover {
2593
- box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.32); }
2594
- .react-autoql-notification-settings .react-autoql-notification-setting-display-name {
2595
- white-space: nowrap;
2596
- overflow: hidden;
2597
- text-overflow: ellipsis;
2598
- padding-right: 10px; }
2599
- .react-autoql-notification-settings .react-autoql-notification-setting-display-name .react-autoql-notification-setting-display-name-message {
2600
- opacity: 0.5; }
2601
- .react-autoql-notification-settings .react-autoql-re-initialize-btn {
2602
- vertical-align: middle;
2603
- height: 18px; }
2604
- .react-autoql-notification-settings .react-autoql-re-initialize-btn-text {
2605
- display: flex;
2606
- align-items: center;
2607
- 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; }
2608
3227
 
2609
3228
 
2610
3229
  .notification-read-only-group {
@@ -2673,10 +3292,6 @@ g.legendOrdinal .legendTitle tspan {
2673
3292
  color: var(--react-autoql-text-color-placeholder, rgba(0, 0, 0, 0.2));
2674
3293
  transition: all 0.3s ease;
2675
3294
  cursor: pointer; }
2676
- .notification-group-wrapper .react-autoql-notification-group-container .react-autoql-notification-group-add-btn span.react-autoql-icon svg,
2677
- .notification-group-wrapper .react-autoql-notification-group-container .react-autoql-notification-group-delete-btn span.react-autoql-icon svg {
2678
- width: 15px;
2679
- height: 15px; }
2680
3295
  .notification-group-wrapper .react-autoql-notification-group-container .react-autoql-notification-group-add-btn:hover,
2681
3296
  .notification-group-wrapper .react-autoql-notification-group-container .react-autoql-notification-group-delete-btn:hover {
2682
3297
  color: var(--react-autoql-text-color-primary, rgba(0, 0, 0, 0.6)); }
@@ -2756,7 +3371,9 @@ g.legendOrdinal .legendTitle tspan {
2756
3371
  border: none; }
2757
3372
 
2758
3373
  .options-toolbar {
2759
- display: inline-block;
3374
+ display: flex;
3375
+ flex-wrap: nowrap;
3376
+ flex-direction: row;
2760
3377
  background: inherit;
2761
3378
  padding: 5px;
2762
3379
  border-radius: 6px;
@@ -2765,17 +3382,23 @@ g.legendOrdinal .legendTitle tspan {
2765
3382
  border: 1px solid var(--react-autoql-border-color);
2766
3383
  box-shadow: 0px 2px 3px -2px var(--react-autoql-box-shadow-color); }
2767
3384
  .options-toolbar.vertical .react-autoql-toolbar-btn {
2768
- display: block; }
3385
+ flex-direction: column; }
2769
3386
  .options-toolbar .react-autoql-toolbar-btn {
2770
3387
  color: var(--react-autoql-text-color-primary); }
2771
3388
 
2772
- .more-options-menu,
2773
- .report-problem-menu {
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 {
2774
3398
  background: var(--react-autoql-background-color-secondary);
2775
3399
  padding: 10px 0; }
2776
- .more-options-menu span.react-autoql-icon svg,
2777
- .report-problem-menu span.react-autoql-icon svg {
2778
- margin-right: 3px; }
3400
+ .more-options-menu span.react-autoql-icon {
3401
+ margin-right: 10px; }
2779
3402
 
2780
3403
  .report-problem-modal-body h3 {
2781
3404
  margin-top: 0;
@@ -2786,8 +3409,10 @@ g.legendOrdinal .legendTitle tspan {
2786
3409
  margin-bottom: 30px; }
2787
3410
 
2788
3411
  .report-problem-modal-body .report-problem-text-area {
2789
- width: 100%;
3412
+ width: 100% !important;
3413
+ max-width: 100% !important;
2790
3414
  min-height: 80px;
3415
+ max-height: 35vh;
2791
3416
  border-radius: 4px;
2792
3417
  border: 1px solid var(--react-autoql-border-color);
2793
3418
  margin-top: 15px;
@@ -2848,6 +3473,8 @@ g.legendOrdinal .legendTitle tspan {
2848
3473
  .chat-single-message-container .spinner-loader:after {
2849
3474
  border: 1px solid var(--react-autoql-accent-color);
2850
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); }
2851
3478
  .chat-single-message-container.response {
2852
3479
  display: flex;
2853
3480
  min-height: 0;
@@ -2856,8 +3483,7 @@ g.legendOrdinal .legendTitle tspan {
2856
3483
  animation: scale-up-bl 0.5s ease; }
2857
3484
  .chat-single-message-container.response .chat-message-bubble {
2858
3485
  background: var(--react-autoql-background-color-secondary);
2859
- color: var(--react-autoql-text-color-primary);
2860
- 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); }
2861
3487
  .chat-single-message-container.response .chat-message-bubble:not(.text) {
2862
3488
  min-width: 125px; }
2863
3489
  .chat-single-message-container.request {
@@ -2867,12 +3493,11 @@ g.legendOrdinal .legendTitle tspan {
2867
3493
  animation: scale-up-br 0.5s ease; }
2868
3494
  .chat-single-message-container.request .chat-message-bubble {
2869
3495
  background: var(--react-autoql-accent-color);
2870
- color: var(--react-autoql-text-color-accent);
2871
- 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); }
2872
3497
  .chat-single-message-container .chat-message-bubble {
2873
3498
  position: relative;
2874
3499
  padding: 13px;
2875
- border-radius: 10px;
3500
+ border-radius: 6px;
2876
3501
  max-width: calc(100% - 20px);
2877
3502
  word-wrap: break-word;
2878
3503
  font-family: inherit;
@@ -2901,7 +3526,9 @@ g.legendOrdinal .legendTitle tspan {
2901
3526
  .chat-single-message-container .chat-message-bubble .chat-message-toolbars-container .chat-message-toolbar.right {
2902
3527
  margin-right: -5px; }
2903
3528
  .chat-single-message-container .chat-message-bubble .react-autoql-toolbar {
2904
- white-space: nowrap; }
3529
+ display: flex;
3530
+ flex-wrap: nowrap;
3531
+ flex-direction: row; }
2905
3532
  .chat-single-message-container .chat-message-bubble .react-autoql-toolbar:not(.active) {
2906
3533
  pointer-events: none;
2907
3534
  visibility: hidden;
@@ -2911,12 +3538,17 @@ g.legendOrdinal .legendTitle tspan {
2911
3538
  pointer-events: auto;
2912
3539
  visibility: visible;
2913
3540
  opacity: 1; }
3541
+ .chat-single-message-container .chat-message-bubble .react-autoql-toolbar-mobile {
3542
+ pointer-events: auto;
3543
+ visibility: visible;
3544
+ opacity: 1; }
2914
3545
 
2915
3546
  .chat-message-rt-container {
2916
3547
  padding: 0 20px 15px 20px;
2917
3548
  animation: scale-up-bl 0.5s ease; }
2918
3549
  .chat-message-rt-container .react-autoql-reverse-translation {
2919
- padding-top: 0; }
3550
+ padding-top: 0;
3551
+ background: transparent; }
2920
3552
 
2921
3553
  /* animations */
2922
3554
  @keyframes scale-up-br {
@@ -2939,7 +3571,9 @@ g.legendOrdinal .legendTitle tspan {
2939
3571
  position: absolute;
2940
3572
  height: 100%;
2941
3573
  width: 100%;
2942
- 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%); }
2943
3577
 
2944
3578
  .react-autoql-drawer .response-loading-container {
2945
3579
  position: absolute;
@@ -2954,18 +3588,20 @@ g.legendOrdinal .legendTitle tspan {
2954
3588
  padding-top: 0;
2955
3589
  height: 92px;
2956
3590
  width: 100%;
2957
- background: var(--react-autoql-background-color-primary);
2958
- -webkit-clip-path: inset(-200px 0px 0px 0px);
2959
- clip-path: inset(-200px 0px 0px 0px);
2960
- box-shadow: 0 0px 3px 10px var(--react-autoql-background-color-primary); }
3591
+ background: transparent; }
2961
3592
 
2962
3593
  .react-autoql-drawer .watermark {
2963
- color: var(--react-autoql-text-color-placeholder);
3594
+ display: flex;
3595
+ justify-content: center;
3596
+ align-items: center;
2964
3597
  text-align: center;
3598
+ color: var(--react-autoql-text-color-placeholder);
2965
3599
  opacity: 0.7;
2966
3600
  top: 6px;
2967
3601
  width: calc(100% - 10px);
2968
3602
  font-size: 13px; }
3603
+ .react-autoql-drawer .watermark .react-autoql-icon {
3604
+ margin-right: 5px; }
2969
3605
 
2970
3606
  .react-autoql-drawer .chat-drawer-chat-bar {
2971
3607
  flex-shrink: 0;
@@ -2995,6 +3631,9 @@ g.legendOrdinal .legendTitle tspan {
2995
3631
  margin-inline-start: 0px;
2996
3632
  -webkit-margin-end: 0px;
2997
3633
  margin-inline-end: 0px; }
3634
+ .query-tips-page-container h2 .react-autoql-icon {
3635
+ margin-left: 7px;
3636
+ margin-right: 2px; }
2998
3637
  .query-tips-page-container .react-autoql-chatbar-input-container {
2999
3638
  flex: 0;
3000
3639
  padding: 10px; }
@@ -3146,6 +3785,12 @@ g.legendOrdinal .legendTitle tspan {
3146
3785
  padding-left: 18px;
3147
3786
  letter-spacing: 0.05em;
3148
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; }
3149
3794
  .react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestion--highlighted {
3150
3795
  background-color: rgba(0, 0, 0, 0.1) !important; }
3151
3796
  .react-autoql-chatbar-input-container.data-explorer .react-autosuggest__section-title {
@@ -3156,7 +3801,7 @@ g.legendOrdinal .legendTitle tspan {
3156
3801
  .react-autoql-card {
3157
3802
  background: var(--react-autoql-background-color-secondary);
3158
3803
  border-radius: 6px;
3159
- box-shadow: 0 1px 3px 0 var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15));
3804
+ box-shadow: var(--react-autoql-box-shadow-1);
3160
3805
  padding: 15px;
3161
3806
  margin: 10px;
3162
3807
  overflow: hidden;
@@ -3287,7 +3932,7 @@ g.legendOrdinal .legendTitle tspan {
3287
3932
  background: var(--bg-color);
3288
3933
  border: 2px solid var(--border-color);
3289
3934
  color: var(--react-autoql-text-color);
3290
- box-shadow: var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15)) 0px 8px 24px; }
3935
+ box-shadow: var(--react-autoql-box-shadow-1); }
3291
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 {
3292
3937
  border-right: 2px solid var(--react-autoql-border-color);
3293
3938
  border-top: 2px solid var(--react-autoql-border-color);
@@ -3337,7 +3982,10 @@ g.legendOrdinal .legendTitle tspan {
3337
3982
  font-size: 15px;
3338
3983
  flex: 1; }
3339
3984
  .data-explorer-page-container .data-explorer-intro-message h2 {
3340
- display: block;
3985
+ display: flex;
3986
+ flex-direction: row;
3987
+ align-items: center;
3988
+ justify-content: center;
3341
3989
  font-size: 1.5em;
3342
3990
  -webkit-margin-before: 0.83em;
3343
3991
  margin-block-start: 0.83em;
@@ -3348,11 +3996,20 @@ g.legendOrdinal .legendTitle tspan {
3348
3996
  -webkit-margin-end: 0px;
3349
3997
  margin-inline-end: 0px;
3350
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; }
3351
4002
  .data-explorer-page-container .data-explorer-intro-message .intro-message-list-container {
3352
4003
  display: flex;
3353
4004
  justify-content: center;
3354
4005
  align-items: center;
3355
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; }
3356
4013
  .data-explorer-page-container .data-explorer-topic-icon {
3357
4014
  margin-right: 5px; }
3358
4015
  .data-explorer-page-container .data-explorer-result-container {
@@ -3384,6 +4041,12 @@ g.legendOrdinal .legendTitle tspan {
3384
4041
  padding-left: 8px; }
3385
4042
  .data-explorer-page-container .data-preview-scroll-component {
3386
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; }
3387
4050
  .data-explorer-page-container .data-explorer-card-placeholder {
3388
4051
  min-height: 90px;
3389
4052
  width: 100%;
@@ -3409,9 +4072,15 @@ g.legendOrdinal .legendTitle tspan {
3409
4072
  font-weight: 600; }
3410
4073
  .data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item:hover {
3411
4074
  text-decoration: underline; }
3412
- .data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .query-suggestion-text svg {
3413
- stroke-width: 1px;
3414
- stroke: currentColor; }
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; }
3415
4084
  .data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .animated-item {
3416
4085
  animation: fadeIn 0.3s linear;
3417
4086
  animation-fill-mode: both; }
@@ -3494,7 +4163,7 @@ g.legendOrdinal .legendTitle tspan {
3494
4163
  .filter-lock-menu .include-exclude-toggle-group {
3495
4164
  height: 23px;
3496
4165
  font-size: 12px;
3497
- font-weight: 200; }
4166
+ font-weight: 400; }
3498
4167
  .filter-lock-menu .include-exclude-toggle-group .react-autoql-radio-btn.active {
3499
4168
  background-color: var(--react-autoql-border-color); }
3500
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 {
@@ -3571,14 +4240,12 @@ g.legendOrdinal .legendTitle tspan {
3571
4240
  box-sizing: border-box; }
3572
4241
  .filter-lock-menu-content.closed {
3573
4242
  opacity: 0; }
3574
- .filter-lock-menu-content h3 {
3575
- margin-top: 0px;
3576
- margin-bottom: 0px;
3577
- color: var(--react-autoql-text-color-primary); }
4243
+ .filter-lock-menu-content h3,
3578
4244
  .filter-lock-menu-content h4 {
3579
- margin-top: 3px;
3580
- margin-bottom: 5px;
4245
+ margin: 0px;
3581
4246
  color: var(--react-autoql-text-color-primary); }
4247
+ .filter-lock-menu-content h4 {
4248
+ font-weight: 500; }
3582
4249
  .filter-lock-menu-content .react-autoql-filter-lock-list-loading-container,
3583
4250
  .filter-lock-menu-content .react-autoql-empty-filter-list {
3584
4251
  display: flex;
@@ -3591,6 +4258,17 @@ g.legendOrdinal .legendTitle tspan {
3591
4258
  .filter-lock-menu-content .react-autoql-empty-filter-list,
3592
4259
  .filter-lock-menu-content .react-autoql-filter-list-container {
3593
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; }
3594
4272
  .filter-lock-menu-content .filter-lock-menu-header {
3595
4273
  flex: 0;
3596
4274
  width: 100%;
@@ -3601,17 +4279,25 @@ g.legendOrdinal .legendTitle tspan {
3601
4279
  padding-bottom: 15px;
3602
4280
  box-sizing: border-box;
3603
4281
  padding-right: 15px; }
3604
- .filter-lock-menu-content .filter-lock-menu-header .filter-locking-close-btn {
3605
- border: none;
3606
- margin: 0;
3607
- padding: 0;
3608
- font-size: 20px; }
3609
- .filter-lock-menu-content .filter-lock-menu-header .filter-locking-saving-indicator {
3610
- display: inline-block;
3611
- font-weight: 400;
3612
- font-size: 14px;
3613
- padding-right: 20px;
3614
- color: var(--react-autoql-accent-color); }
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; }
3615
4301
  .filter-lock-menu-content .filter-lock-menu-footer {
3616
4302
  width: 100%;
3617
4303
  display: flex;
@@ -3623,9 +4309,8 @@ g.legendOrdinal .legendTitle tspan {
3623
4309
  .filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title {
3624
4310
  width: 100%;
3625
4311
  display: flex;
3626
- flex-wrap: nowrap;
3627
4312
  flex-direction: row;
3628
- align-items: flex-start;
4313
+ flex-wrap: nowrap;
3629
4314
  justify-content: space-between;
3630
4315
  margin-bottom: 4px; }
3631
4316
  .filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title .filter-lock-category-title {
@@ -3634,11 +4319,7 @@ g.legendOrdinal .legendTitle tspan {
3634
4319
  overflow: hidden;
3635
4320
  text-overflow: ellipsis; }
3636
4321
  .filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title .filter-name-column {
3637
- display: flex;
3638
4322
  flex-wrap: wrap;
3639
- flex-direction: row;
3640
- align-items: center;
3641
- justify-content: flex-start;
3642
4323
  max-width: calc(100% - 100px);
3643
4324
  flex: 1; }
3644
4325
  .filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title .persist-toggle-column {
@@ -3649,8 +4330,6 @@ g.legendOrdinal .legendTitle tspan {
3649
4330
  justify-content: flex-end;
3650
4331
  flex: 0 0 auto;
3651
4332
  margin-right: 40px; }
3652
- .filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-title .persist-toggle-column .react-autoql-icon {
3653
- margin-left: 3px; }
3654
4333
  .filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-filter-list-item-container {
3655
4334
  margin-bottom: 10px;
3656
4335
  margin-right: 0px; }
@@ -3727,7 +4406,7 @@ g.legendOrdinal .legendTitle tspan {
3727
4406
  font-size: 15px;
3728
4407
  font-weight: normal;
3729
4408
  z-index: 2;
3730
- box-shadow: 0 1px 3px 0 var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15));
4409
+ box-shadow: var(--react-autoql-box-shadow-1);
3731
4410
  text-align: left;
3732
4411
  border-radius: 4px;
3733
4412
  width: 100%;
@@ -3891,7 +4570,9 @@ g.legendOrdinal .legendTitle tspan {
3891
4570
  @media (max-width: 479px) {
3892
4571
  .react-autoql-drawer .react-autoql-header-center-container {
3893
4572
  font-size: 18px;
3894
- letter-spacing: 0.05em; } }
4573
+ letter-spacing: 0.05em; }
4574
+ .react-autoql-drawer .drawer-content-wrapper {
4575
+ transform: unset !important; } }
3895
4576
 
3896
4577
  @media (min-width: 480px) {
3897
4578
  .react-autoql-drawer .react-autoql-header-center-container {
@@ -3904,66 +4585,64 @@ g.legendOrdinal .legendTitle tspan {
3904
4585
  animation: fadeIn 0.3s;
3905
4586
  text-align: center; }
3906
4587
 
3907
- .react-autoql-drawer .react-autoql-drawer-header-btn {
3908
- line-height: 1em;
3909
- font-weight: normal;
3910
- float: none;
3911
- opacity: 1; }
3912
- .react-autoql-drawer .react-autoql-drawer-header-btn.hidden {
3913
- display: none; }
3914
- .react-autoql-drawer .react-autoql-drawer-header-btn.close span.react-autoql-icon svg {
3915
- width: 27px;
3916
- height: 27px; }
3917
- .react-autoql-drawer .react-autoql-drawer-header-btn.screen-mode span.react-autoql-icon svg {
3918
- width: 22px;
3919
- height: 22px; }
3920
- .react-autoql-drawer .react-autoql-drawer-header-btn.clear-all span.react-autoql-icon svg {
3921
- width: 22px;
3922
- height: 22px; }
3923
- .react-autoql-drawer .react-autoql-drawer-header-btn.filter-locking span.react-autoql-icon svg {
3924
- width: 22px;
3925
- height: 22px; }
3926
- .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;
3927
4598
  display: inline-block;
3928
- position: relative; }
3929
- .react-autoql-drawer .react-autoql-drawer-header-btn .react-autoql-filter-lock-icon-container .react-autoql-filter-lock-icon-badge {
3930
- position: absolute;
3931
- display: inline-block;
3932
- border: 2px solid var(--react-autoql-accent-color);
3933
- background: var(--react-autoql-warning-color);
3934
- border-radius: 50%;
3935
- height: 14px;
3936
- width: 14px;
3937
- right: -5px;
3938
- 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; }
3939
4606
 
3940
4607
  .react-autoql-drawer .react-autoql-drawer:focus {
3941
4608
  outline: none; }
3942
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
+
3943
4620
  .react-autoql-drawer .chat-header-container button {
4621
+ display: flex;
4622
+ justify-content: center;
4623
+ align-items: center;
3944
4624
  position: relative;
3945
4625
  background: transparent;
3946
4626
  border: none;
3947
4627
  color: var(--react-autoql-text-color-accent);
3948
- margin: 10px 0px 10px 0px;
3949
- margin-right: 0;
3950
- font-size: 20px;
4628
+ margin: 0;
4629
+ font-size: 24px;
3951
4630
  cursor: pointer;
3952
4631
  outline: none !important; }
3953
4632
 
3954
4633
  .react-autoql-drawer .chat-header-container button:hover {
3955
4634
  opacity: 0.7; }
3956
4635
 
3957
- .react-autoql-drawer .chat-header-container button svg {
3958
- width: 35px;
3959
- height: 35px; }
3960
-
3961
4636
  .topics-container {
3962
4637
  margin: 5px 0; }
3963
4638
 
3964
4639
  .intro-qi-link {
3965
4640
  cursor: pointer;
3966
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; }
3967
4646
 
3968
4647
  /* rc-drawer */
3969
4648
  .react-autoql-drawer .drawer-content {
@@ -4352,8 +5031,8 @@ g.legendOrdinal .legendTitle tspan {
4352
5031
  font-family: var(--react-autoql-font-family), sans-serif;
4353
5032
  height: 100%;
4354
5033
  overflow: hidden;
4355
- border-radius: 4px;
4356
- box-shadow: 0 1px 3px 0 var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15)); }
5034
+ border-radius: 6px;
5035
+ box-shadow: var(--react-autoql-box-shadow-1); }
4357
5036
 
4358
5037
  .react-autoql-dashboard-tile-inner-div {
4359
5038
  height: 100%;
@@ -4412,6 +5091,7 @@ g.legendOrdinal .legendTitle tspan {
4412
5091
  opacity: 0; }
4413
5092
  .dashboard-tile-toolbars-container .dashboard-tile-toolbars-right-container,
4414
5093
  .dashboard-tile-toolbars-container .dashboard-tile-toolbars-left-container {
5094
+ display: flex;
4415
5095
  pointer-events: auto; }
4416
5096
  .dashboard-tile-toolbars-container.left-padding {
4417
5097
  width: calc(100% - 40px); }
@@ -4438,10 +5118,11 @@ g.legendOrdinal .legendTitle tspan {
4438
5118
  visibility: hidden;
4439
5119
  opacity: 0; }
4440
5120
 
4441
- .react-autoql-dashboard-tile-inner-div .single-value-response {
4442
- font-size: 32px;
4443
- margin-top: -6px;
4444
- opacity: 0.9; }
5121
+ .react-autoql-dashboard-tile-inner-div .single-value-response-flex-container {
5122
+ display: flex;
5123
+ align-items: center; }
5124
+ .react-autoql-dashboard-tile-inner-div .single-value-response-flex-container .single-value-response {
5125
+ font-size: 32px; }
4445
5126
 
4446
5127
  .react-autoql-dashboard-tile-inner-div .tabulator-header-contents {
4447
5128
  height: 32px !important; }
@@ -4530,8 +5211,8 @@ g.legendOrdinal .legendTitle tspan {
4530
5211
  color: var(--react-autoql-dashboard-title-color); }
4531
5212
 
4532
5213
  .dashboard-tile-title-container .dashboard-tile-title {
4533
- font-weight: bold;
4534
- font-size: 14px; }
5214
+ font-weight: 600;
5215
+ font-size: 15px; }
4535
5216
 
4536
5217
  .dashboard-tile-edit-wrapper {
4537
5218
  display: flex;
@@ -4543,14 +5224,15 @@ g.legendOrdinal .legendTitle tspan {
4543
5224
 
4544
5225
  .dashboard-tile-play-button {
4545
5226
  cursor: default;
4546
- flex-grow: 0;
4547
- flex-shrink: 0; }
5227
+ flex: 0 0 auto;
5228
+ font-size: 25px;
5229
+ margin-left: 6px;
5230
+ margin-bottom: 3px;
5231
+ display: flex;
5232
+ align-items: center; }
4548
5233
 
4549
5234
  .dashboard-tile-play-button span.react-autoql-icon svg {
4550
5235
  cursor: pointer;
4551
- width: 25px;
4552
- height: 33px;
4553
- margin-left: 10px;
4554
5236
  color: var(--react-autoql-accent-color); }
4555
5237
 
4556
5238
  .dashboard-tile-play-button.disabled svg {
@@ -4627,16 +5309,12 @@ g.legendOrdinal .legendTitle tspan {
4627
5309
  position: absolute;
4628
5310
  pointer-events: none;
4629
5311
  z-index: 1; }
4630
- .dashboard-tile-right-input-container .query-input-icon,
4631
- .dashboard-tile-left-input-container .query-input-icon {
4632
- font-size: 18px;
4633
- top: 4px;
4634
- left: 10px; }
4635
- .dashboard-tile-right-input-container .title-input-icon,
4636
- .dashboard-tile-left-input-container .title-input-icon {
4637
- font-size: 16px;
4638
- top: 6px;
4639
- 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; }
4640
5318
 
4641
5319
  .dashboard-tile-input.second.query {
4642
5320
  transition: all 0.3s ease;
@@ -4704,12 +5382,6 @@ g.legendOrdinal .legendTitle tspan {
4704
5382
  .dashboard-tile-input-container input::placeholder {
4705
5383
  opacity: 0.5; }
4706
5384
 
4707
- .react-autoql-dashboard .edit-mode-placeholder-icon {
4708
- display: inline-block;
4709
- line-height: 22px;
4710
- vertical-align: middle;
4711
- height: 23px; }
4712
-
4713
5385
  .dashboard-tile-input-container .react-autosuggest__suggestions-container--open {
4714
5386
  position: absolute;
4715
5387
  bottom: unset;
@@ -4717,13 +5389,12 @@ g.legendOrdinal .legendTitle tspan {
4717
5389
  padding-bottom: 5px;
4718
5390
  display: block;
4719
5391
  height: unset;
4720
- border-radius: 15px;
4721
5392
  font-family: inherit;
4722
5393
  font-size: 15px;
4723
5394
  font-weight: normal;
4724
5395
  z-index: 2;
4725
5396
  overflow: hidden;
4726
- box-shadow: 0 1px 3px 0 var(--react-autoql-box-shadow-color, rgba(0, 0, 0, 0.15));
5397
+ box-shadow: var(--react-autoql-box-shadow-1);
4727
5398
  text-align: left;
4728
5399
  width: 100%;
4729
5400
  top: 35px;
@@ -4751,12 +5422,17 @@ g.legendOrdinal .legendTitle tspan {
4751
5422
  color: var(--react-autoql-text-color-placeholder); }
4752
5423
 
4753
5424
  .dashboard-tile-placeholder-text {
5425
+ display: flex;
5426
+ justify-content: center;
5427
+ align-items: center;
4754
5428
  font-size: 15px;
5429
+ font-style: italic;
4755
5430
  color: var(--react-autoql-text-color-placeholder, rgba(0, 0, 0, 0.3));
4756
- padding: 0 10px; }
4757
- .dashboard-tile-placeholder-text .play-icon {
4758
- vertical-align: bottom;
4759
- line-height: 20px; }
5431
+ padding: 0 20px;
5432
+ margin-bottom: 30px;
5433
+ font-style: italic; }
5434
+ .dashboard-tile-placeholder-text .react-autoql-icon {
5435
+ margin: 0px 5px; }
4760
5436
 
4761
5437
  /* React Grid Layout overrides */
4762
5438
  .react-grid-item .react-resizable-handle {