react-autoql 4.2.0 → 4.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,77 @@
1
1
 
2
+ .chat-voice-record-button {
3
+ width: 40px;
4
+ height: 40px;
5
+ border-radius: 24px;
6
+ margin: 10px;
7
+ margin-left: 0;
8
+ font-size: 18px;
9
+ line-height: 24px;
10
+ outline: none !important;
11
+ position: relative;
12
+ cursor: pointer;
13
+ overflow: hidden;
14
+ background: var(--react-autoql-accent-color);
15
+ color: var(--react-autoql-accent-text-color);
16
+ border: none;
17
+ flex-shrink: 0;
18
+ flex-grow: 0; }
19
+
20
+ .chat-voice-record-button:hover {
21
+ box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.15); }
22
+
23
+ .chat-voice-record-button.listening {
24
+ background: #ff471a; }
25
+
26
+ .chat-voice-record-icon {
27
+ vertical-align: top; }
28
+
29
+ .react-autoql-tooltip {
30
+ font-family: inherit;
31
+ letter-spacing: 0.04em;
32
+ text-align: left;
33
+ padding: 7px 15px;
34
+ opacity: 1 !important;
35
+ z-index: 99999 !important; }
36
+
37
+ @-webkit-keyframes slide {
38
+ 0% {
39
+ transform: translateX(-100%); }
40
+ 100% {
41
+ transform: translateX(100%); } }
42
+
43
+ @keyframes slide {
44
+ 0% {
45
+ transform: translateX(-100%); }
46
+ 100% {
47
+ transform: translateX(100%); } }
48
+
49
+ @-webkit-keyframes move {
50
+ 0% {
51
+ left: 0;
52
+ opacity: 0; }
53
+ 5% {
54
+ opacity: 0; }
55
+ 48% {
56
+ opacity: 0.2; }
57
+ 80% {
58
+ opacity: 0; }
59
+ 100% {
60
+ left: 82%; } }
61
+
62
+ @keyframes move {
63
+ 0% {
64
+ left: 0;
65
+ opacity: 0; }
66
+ 5% {
67
+ opacity: 0; }
68
+ 48% {
69
+ opacity: 0.2; }
70
+ 80% {
71
+ opacity: 0; }
72
+ 100% {
73
+ left: 82%; } }
74
+
2
75
  .react-autoql-bar-container {
3
76
  position: relative;
4
77
  display: flex;
@@ -145,79 +218,6 @@
145
218
  left: 30px;
146
219
  top: 15px; }
147
220
 
148
- .chat-voice-record-button {
149
- width: 40px;
150
- height: 40px;
151
- border-radius: 24px;
152
- margin: 10px;
153
- margin-left: 0;
154
- font-size: 18px;
155
- line-height: 24px;
156
- outline: none !important;
157
- position: relative;
158
- cursor: pointer;
159
- overflow: hidden;
160
- background: var(--react-autoql-accent-color);
161
- color: var(--react-autoql-accent-text-color);
162
- border: none;
163
- flex-shrink: 0;
164
- flex-grow: 0; }
165
-
166
- .chat-voice-record-button:hover {
167
- box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.15); }
168
-
169
- .chat-voice-record-button.listening {
170
- background: #ff471a; }
171
-
172
- .chat-voice-record-icon {
173
- vertical-align: top; }
174
-
175
- .react-autoql-tooltip {
176
- font-family: inherit;
177
- letter-spacing: 0.04em;
178
- text-align: left;
179
- padding: 7px 15px;
180
- opacity: 1 !important;
181
- z-index: 99999 !important; }
182
-
183
- @-webkit-keyframes slide {
184
- 0% {
185
- transform: translateX(-100%); }
186
- 100% {
187
- transform: translateX(100%); } }
188
-
189
- @keyframes slide {
190
- 0% {
191
- transform: translateX(-100%); }
192
- 100% {
193
- transform: translateX(100%); } }
194
-
195
- @-webkit-keyframes move {
196
- 0% {
197
- left: 0;
198
- opacity: 0; }
199
- 5% {
200
- opacity: 0; }
201
- 48% {
202
- opacity: 0.2; }
203
- 80% {
204
- opacity: 0; }
205
- 100% {
206
- left: 82%; } }
207
-
208
- @keyframes move {
209
- 0% {
210
- left: 0;
211
- opacity: 0; }
212
- 5% {
213
- opacity: 0; }
214
- 48% {
215
- opacity: 0.2; }
216
- 80% {
217
- opacity: 0; }
218
- 100% {
219
- left: 82%; } }
220
-
221
221
  .react-autoql-icon {
222
222
  position: relative;
223
223
  opacity: 1; }
@@ -264,50 +264,6 @@ span.react-autoql-icon {
264
264
  border-radius: 50%;
265
265
  box-sizing: content-box; }
266
266
 
267
- .loading-container-centered {
268
- height: 100%;
269
- width: 100%;
270
- display: flex;
271
- flex-direction: column;
272
- justify-content: center;
273
- align-items: center; }
274
-
275
- .response-loading {
276
- display: inline-block;
277
- position: relative;
278
- width: 64px;
279
- height: 64px; }
280
-
281
- .response-loading div {
282
- position: absolute;
283
- top: 27px;
284
- width: 11px;
285
- height: 11px;
286
- border-radius: 50%;
287
- background: #e2e2e2;
288
- -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
289
- animation-timing-function: cubic-bezier(0, 1, 1, 0); }
290
-
291
- .response-loading div:nth-child(1) {
292
- left: 6px;
293
- -webkit-animation: response-loading1 0.6s infinite;
294
- animation: response-loading1 0.6s infinite; }
295
-
296
- .response-loading div:nth-child(2) {
297
- left: 6px;
298
- -webkit-animation: response-loading2 0.6s infinite;
299
- animation: response-loading2 0.6s infinite; }
300
-
301
- .response-loading div:nth-child(3) {
302
- left: 26px;
303
- -webkit-animation: response-loading2 0.6s infinite;
304
- animation: response-loading2 0.6s infinite; }
305
-
306
- .response-loading div:nth-child(4) {
307
- left: 45px;
308
- -webkit-animation: response-loading3 0.6s infinite;
309
- animation: response-loading3 0.6s infinite; }
310
-
311
267
  .react-autoql-dashboard-container {
312
268
  background: var(--react-autoql-background-color-secondary);
313
269
  height: 100%;
@@ -370,6 +326,50 @@ span.react-autoql-icon {
370
326
  font-weight: bold;
371
327
  cursor: pointer; }
372
328
 
329
+ .loading-container-centered {
330
+ height: 100%;
331
+ width: 100%;
332
+ display: flex;
333
+ flex-direction: column;
334
+ justify-content: center;
335
+ align-items: center; }
336
+
337
+ .response-loading {
338
+ display: inline-block;
339
+ position: relative;
340
+ width: 64px;
341
+ height: 64px; }
342
+
343
+ .response-loading div {
344
+ position: absolute;
345
+ top: 27px;
346
+ width: 11px;
347
+ height: 11px;
348
+ border-radius: 50%;
349
+ background: #e2e2e2;
350
+ -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
351
+ animation-timing-function: cubic-bezier(0, 1, 1, 0); }
352
+
353
+ .response-loading div:nth-child(1) {
354
+ left: 6px;
355
+ -webkit-animation: response-loading1 0.6s infinite;
356
+ animation: response-loading1 0.6s infinite; }
357
+
358
+ .response-loading div:nth-child(2) {
359
+ left: 6px;
360
+ -webkit-animation: response-loading2 0.6s infinite;
361
+ animation: response-loading2 0.6s infinite; }
362
+
363
+ .response-loading div:nth-child(3) {
364
+ left: 26px;
365
+ -webkit-animation: response-loading2 0.6s infinite;
366
+ animation: response-loading2 0.6s infinite; }
367
+
368
+ .response-loading div:nth-child(4) {
369
+ left: 45px;
370
+ -webkit-animation: response-loading3 0.6s infinite;
371
+ animation: response-loading3 0.6s infinite; }
372
+
373
373
  .filter-lock-menu {
374
374
  z-index: 99999 !important;
375
375
  transition: opacity 0.1s ease 0s !important;
@@ -1420,35 +1420,103 @@ span.react-autoql-icon {
1420
1420
  left: 0.5em;
1421
1421
  top: -2px; }
1422
1422
 
1423
- .notification-rule-add-btn-outer,
1424
- .notification-rule-validate-btn-outer {
1423
+ .notification-list-loading-container {
1425
1424
  text-align: center;
1426
- border-style: dashed !important;
1427
- height: 38px;
1428
- line-height: 25px;
1429
- margin: 0 !important;
1430
- overflow: hidden; }
1431
-
1432
- .notification-rule-outer-container {
1433
- position: relative;
1434
- border: 1px solid transparent;
1435
- border-radius: 4px; }
1436
- .notification-rule-outer-container.outlined {
1437
- border-color: rgba(0, 0, 0, 0.15);
1438
- padding: 0 20px;
1439
- padding-bottom: 12px; }
1425
+ padding-top: 100px;
1426
+ color: var(--react-autoql-text-color-primary);
1427
+ height: 100%;
1428
+ overflow: hidden;
1429
+ background: var(--react-autoql-background-color-secondary); }
1440
1430
 
1441
- .notification-outer-all-any {
1442
- position: absolute;
1443
- left: 0;
1444
- top: 50%; }
1431
+ .empty-notifications-message {
1432
+ color: var(--react-autoql-text-color-primary);
1433
+ text-align: center;
1434
+ margin-top: 75px; }
1435
+ .empty-notifications-message div {
1436
+ opacity: 0.6; }
1437
+ .empty-notifications-message .empty-notifications-title {
1438
+ font-size: 16px;
1439
+ font-weight: bold;
1440
+ margin-bottom: 5px; }
1441
+ .empty-notifications-message .empty-notifications-img {
1442
+ width: 250px;
1443
+ height: 250px; }
1445
1444
 
1446
- .notification-first-group-btn-container {
1447
- display: flex;
1448
- justify-content: space-between; }
1445
+ .react-autoql-notification-list-container {
1446
+ height: 100%;
1447
+ padding: 20px;
1448
+ overflow-y: auto;
1449
+ background: var(--react-autoql-background-color-secondary); }
1449
1450
 
1450
- .data-alerts-container.read-only .react-autoql-notification-group-container {
1451
- border: none; }
1451
+ .react-autoql-notification-dismiss-all {
1452
+ text-align: right;
1453
+ margin-bottom: 12px;
1454
+ padding-right: 10px;
1455
+ color: var(--react-autoql-text-color-primary, rgba(0, 0, 0, 0.4));
1456
+ transition: color 0.1s ease; }
1457
+ .react-autoql-notification-dismiss-all span {
1458
+ opacity: 0.8;
1459
+ cursor: pointer; }
1460
+ .react-autoql-notification-dismiss-all span:hover {
1461
+ opacity: 1; }
1462
+
1463
+ .react-autoql-notification-display-name-input {
1464
+ width: 100%; }
1465
+
1466
+ .react-autoql-notification-message-input {
1467
+ width: 100%; }
1468
+
1469
+ .react-autoql-notification-list-item:nth-of-type(0) {
1470
+ -webkit-animation-delay: 0s;
1471
+ animation-delay: 0s; }
1472
+
1473
+ .react-autoql-notification-list-item:nth-of-type(1) {
1474
+ -webkit-animation-delay: 0.1s;
1475
+ animation-delay: 0.1s; }
1476
+
1477
+ .react-autoql-notification-list-item:nth-of-type(2) {
1478
+ -webkit-animation-delay: 0.2s;
1479
+ animation-delay: 0.2s; }
1480
+
1481
+ .react-autoql-notification-list-item:nth-of-type(3) {
1482
+ -webkit-animation-delay: 0.3s;
1483
+ animation-delay: 0.3s; }
1484
+
1485
+ .react-autoql-notification-list-item:nth-of-type(4) {
1486
+ -webkit-animation-delay: 0.4s;
1487
+ animation-delay: 0.4s; }
1488
+
1489
+ .react-autoql-notification-list-item:nth-of-type(5) {
1490
+ -webkit-animation-delay: 0.5s;
1491
+ animation-delay: 0.5s; }
1492
+
1493
+ .react-autoql-notification-list-item:nth-of-type(6) {
1494
+ -webkit-animation-delay: 0.6s;
1495
+ animation-delay: 0.6s; }
1496
+
1497
+ .react-autoql-notification-list-item:nth-of-type(7) {
1498
+ -webkit-animation-delay: 0.7s;
1499
+ animation-delay: 0.7s; }
1500
+
1501
+ .react-autoql-notification-list-item:nth-of-type(8) {
1502
+ -webkit-animation-delay: 0.8s;
1503
+ animation-delay: 0.8s; }
1504
+
1505
+ .react-autoql-notification-list-item:nth-of-type(9) {
1506
+ -webkit-animation-delay: 0.9s;
1507
+ animation-delay: 0.9s; }
1508
+
1509
+ .react-autoql-notification-list-item:nth-of-type(10) {
1510
+ -webkit-animation-delay: 1s;
1511
+ animation-delay: 1s; }
1512
+
1513
+ @-webkit-keyframes slideIn {
1514
+ 0% {
1515
+ opacity: 0;
1516
+ top: 500px; }
1517
+ 100% {
1518
+ opacity: 1;
1519
+ top: 0; } }
1452
1520
 
1453
1521
  .react-autoql-notification-list-item {
1454
1522
  display: flex;
@@ -1678,103 +1746,35 @@ span.react-autoql-icon {
1678
1746
  .data-alerts-container.read-only .react-autoql-notification-group-container {
1679
1747
  border: none; }
1680
1748
 
1681
- .notification-list-loading-container {
1682
- text-align: center;
1683
- padding-top: 100px;
1684
- color: var(--react-autoql-text-color-primary);
1685
- height: 100%;
1686
- overflow: hidden;
1687
- background: var(--react-autoql-background-color-secondary); }
1688
-
1689
- .empty-notifications-message {
1690
- color: var(--react-autoql-text-color-primary);
1749
+ .notification-rule-add-btn-outer,
1750
+ .notification-rule-validate-btn-outer {
1691
1751
  text-align: center;
1692
- margin-top: 75px; }
1693
- .empty-notifications-message div {
1694
- opacity: 0.6; }
1695
- .empty-notifications-message .empty-notifications-title {
1696
- font-size: 16px;
1697
- font-weight: bold;
1698
- margin-bottom: 5px; }
1699
- .empty-notifications-message .empty-notifications-img {
1700
- width: 250px;
1701
- height: 250px; }
1702
-
1703
- .react-autoql-notification-list-container {
1704
- height: 100%;
1705
- padding: 20px;
1706
- overflow-y: auto;
1707
- background: var(--react-autoql-background-color-secondary); }
1708
-
1709
- .react-autoql-notification-dismiss-all {
1710
- text-align: right;
1711
- margin-bottom: 12px;
1712
- padding-right: 10px;
1713
- color: var(--react-autoql-text-color-primary, rgba(0, 0, 0, 0.4));
1714
- transition: color 0.1s ease; }
1715
- .react-autoql-notification-dismiss-all span {
1716
- opacity: 0.8;
1717
- cursor: pointer; }
1718
- .react-autoql-notification-dismiss-all span:hover {
1719
- opacity: 1; }
1720
-
1721
- .react-autoql-notification-display-name-input {
1722
- width: 100%; }
1723
-
1724
- .react-autoql-notification-message-input {
1725
- width: 100%; }
1726
-
1727
- .react-autoql-notification-list-item:nth-of-type(0) {
1728
- -webkit-animation-delay: 0s;
1729
- animation-delay: 0s; }
1730
-
1731
- .react-autoql-notification-list-item:nth-of-type(1) {
1732
- -webkit-animation-delay: 0.1s;
1733
- animation-delay: 0.1s; }
1734
-
1735
- .react-autoql-notification-list-item:nth-of-type(2) {
1736
- -webkit-animation-delay: 0.2s;
1737
- animation-delay: 0.2s; }
1738
-
1739
- .react-autoql-notification-list-item:nth-of-type(3) {
1740
- -webkit-animation-delay: 0.3s;
1741
- animation-delay: 0.3s; }
1742
-
1743
- .react-autoql-notification-list-item:nth-of-type(4) {
1744
- -webkit-animation-delay: 0.4s;
1745
- animation-delay: 0.4s; }
1746
-
1747
- .react-autoql-notification-list-item:nth-of-type(5) {
1748
- -webkit-animation-delay: 0.5s;
1749
- animation-delay: 0.5s; }
1750
-
1751
- .react-autoql-notification-list-item:nth-of-type(6) {
1752
- -webkit-animation-delay: 0.6s;
1753
- animation-delay: 0.6s; }
1754
-
1755
- .react-autoql-notification-list-item:nth-of-type(7) {
1756
- -webkit-animation-delay: 0.7s;
1757
- animation-delay: 0.7s; }
1752
+ border-style: dashed !important;
1753
+ height: 38px;
1754
+ line-height: 25px;
1755
+ margin: 0 !important;
1756
+ overflow: hidden; }
1758
1757
 
1759
- .react-autoql-notification-list-item:nth-of-type(8) {
1760
- -webkit-animation-delay: 0.8s;
1761
- animation-delay: 0.8s; }
1758
+ .notification-rule-outer-container {
1759
+ position: relative;
1760
+ border: 1px solid transparent;
1761
+ border-radius: 4px; }
1762
+ .notification-rule-outer-container.outlined {
1763
+ border-color: rgba(0, 0, 0, 0.15);
1764
+ padding: 0 20px;
1765
+ padding-bottom: 12px; }
1762
1766
 
1763
- .react-autoql-notification-list-item:nth-of-type(9) {
1764
- -webkit-animation-delay: 0.9s;
1765
- animation-delay: 0.9s; }
1767
+ .notification-outer-all-any {
1768
+ position: absolute;
1769
+ left: 0;
1770
+ top: 50%; }
1766
1771
 
1767
- .react-autoql-notification-list-item:nth-of-type(10) {
1768
- -webkit-animation-delay: 1s;
1769
- animation-delay: 1s; }
1772
+ .notification-first-group-btn-container {
1773
+ display: flex;
1774
+ justify-content: space-between; }
1770
1775
 
1771
- @-webkit-keyframes slideIn {
1772
- 0% {
1773
- opacity: 0;
1774
- top: 500px; }
1775
- 100% {
1776
- opacity: 1;
1777
- top: 0; } }
1776
+ .data-alerts-container.read-only .react-autoql-notification-group-container {
1777
+ border: none; }
1778
1778
 
1779
1779
  .react-autoql-notification-settings {
1780
1780
  background-color: var(--react-autoql-background-color-secondary);
@@ -1870,6 +1870,32 @@ span.react-autoql-icon {
1870
1870
  align-items: center;
1871
1871
  margin-top: -25px; }
1872
1872
 
1873
+ .notification-modal-content .react-autoql-step-content p {
1874
+ margin-bottom: 0.5em;
1875
+ margin-top: 0.5em;
1876
+ padding-left: 8px; }
1877
+
1878
+ .notification-modal-content .step-btn-container {
1879
+ text-align: right;
1880
+ display: flex;
1881
+ min-height: 20px; }
1882
+
1883
+ .expression-valid-checkmark.react-autoql-icon svg {
1884
+ color: var(--react-autoql-success-color); }
1885
+
1886
+ .expression-invalid-message-container {
1887
+ max-width: 75%;
1888
+ float: left;
1889
+ text-align: left !important;
1890
+ display: flex;
1891
+ flex-direction: row;
1892
+ align-items: left;
1893
+ justify-content: left; }
1894
+
1895
+ .expression-invalid-message {
1896
+ color: var(--react-autoql-danger-color);
1897
+ display: 'inline-block'; }
1898
+
1873
1899
  .react-autoql-step-container a {
1874
1900
  color: var(--react-autoql-accent-color, #26a7df); }
1875
1901
 
@@ -1897,40 +1923,14 @@ span.react-autoql-icon {
1897
1923
  display: inline-block;
1898
1924
  width: 300px; }
1899
1925
 
1900
- .notification-modal-content .react-autoql-step-content p {
1901
- margin-bottom: 0.5em;
1902
- margin-top: 0.5em;
1903
- padding-left: 8px; }
1904
-
1905
- .notification-modal-content .step-btn-container {
1906
- text-align: right;
1907
- display: flex;
1908
- min-height: 20px; }
1909
-
1910
- .expression-valid-checkmark.react-autoql-icon svg {
1911
- color: var(--react-autoql-success-color); }
1912
-
1913
- .expression-invalid-message-container {
1914
- max-width: 75%;
1915
- float: left;
1916
- text-align: left !important;
1917
- display: flex;
1918
- flex-direction: row;
1919
- align-items: left;
1920
- justify-content: left; }
1921
-
1922
- .expression-invalid-message {
1923
- color: var(--react-autoql-danger-color);
1924
- display: 'inline-block'; }
1925
-
1926
- .react-autoql-dashboard .react-autoql-dashboard-tile {
1927
- background: var(--react-autoql-background-color-primary, #fff);
1928
- color: var(--react-autoql-text-color-primary, #404040);
1929
- font-family: var(--react-autoql-font-family), sans-serif;
1930
- height: 100%;
1931
- overflow: hidden;
1932
- border-radius: 4px;
1933
- box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13); }
1926
+ .react-autoql-dashboard .react-autoql-dashboard-tile {
1927
+ background: var(--react-autoql-background-color-primary, #fff);
1928
+ color: var(--react-autoql-text-color-primary, #404040);
1929
+ font-family: var(--react-autoql-font-family), sans-serif;
1930
+ height: 100%;
1931
+ overflow: hidden;
1932
+ border-radius: 4px;
1933
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13); }
1934
1934
 
1935
1935
  .react-autoql-dashboard-tile-inner-div {
1936
1936
  height: 100%;
@@ -2031,8 +2031,9 @@ span.react-autoql-icon {
2031
2031
  width: 100%;
2032
2032
  padding-top: 0;
2033
2033
  background: inherit; }
2034
- .react-autoql-dashboard-tile-inner-div .dashboard-tile-response-wrapper .query-output-error-message {
2035
- opacity: 0.8; }
2034
+ .react-autoql-dashboard-tile-inner-div .dashboard-tile-response-wrapper .query-output-error-message,
2035
+ .react-autoql-dashboard-tile-inner-div .dashboard-tile-response-wrapper .no-columns-error-message {
2036
+ margin: auto; }
2036
2037
  .react-autoql-dashboard-tile-inner-div .dashboard-tile-response-wrapper .layout-splitter {
2037
2038
  height: 1px !important;
2038
2039
  color: var(--react-autoql-border-color);
@@ -2083,7 +2084,8 @@ span.react-autoql-icon {
2083
2084
  padding: 20px;
2084
2085
  padding-top: 15px; }
2085
2086
  .dashboard-tile-response-wrapper .dashboard-tile-response-container .react-autoql-response-content-container {
2086
- padding: 7px; }
2087
+ padding: 7px;
2088
+ align-items: center; }
2087
2089
 
2088
2090
  .dashboard-tile-title-container {
2089
2091
  width: 100%;
@@ -2406,7 +2408,6 @@ span.react-autoql-icon {
2406
2408
  .dashboard-tile-response-container .dashboard-tile-split-pane-container {
2407
2409
  background: inherit; }
2408
2410
 
2409
-
2410
2411
  .react-autoql-btn {
2411
2412
  border-radius: 4px;
2412
2413
  cursor: pointer;
@@ -2451,6 +2452,7 @@ span.react-autoql-icon {
2451
2452
  background-color: var(--react-autoql-danger-color, #ca0b00);
2452
2453
  color: #fff; }
2453
2454
 
2455
+
2454
2456
  .ReactModal__Overlay {
2455
2457
  background-color: transparent !important;
2456
2458
  transition: background-color 0.2s ease-in-out;
@@ -2617,6 +2619,41 @@ span.react-autoql-icon {
2617
2619
  border-top-right-radius: 4px;
2618
2620
  border-bottom-right-radius: 4px; }
2619
2621
 
2622
+ .autoql-options-toolbar {
2623
+ position: absolute;
2624
+ background: inherit;
2625
+ padding: 5px;
2626
+ border-radius: 6px;
2627
+ line-height: 28px;
2628
+ background: var(--react-autoql-background-color-primary);
2629
+ border: 1px solid var(--react-autoql-border-color); }
2630
+ .autoql-options-toolbar.vertical .react-autoql-toolbar-btn {
2631
+ display: block; }
2632
+ .autoql-options-toolbar .react-autoql-toolbar-btn {
2633
+ color: var(--react-autoql-text-color-primary); }
2634
+
2635
+ .copy-sql-modal-content {
2636
+ position: relative;
2637
+ height: 60vh; }
2638
+ .copy-sql-modal-content .copy-sql-formatted-text {
2639
+ height: 100%;
2640
+ width: 100%;
2641
+ padding: 10px;
2642
+ resize: none;
2643
+ background: var(--react-autoql-background-color-secondary); }
2644
+ .copy-sql-modal-content .copy-sql-btn {
2645
+ color: var(--react-autoql-text-color);
2646
+ background-color: var(--react-autoql-background-color-primary);
2647
+ position: absolute;
2648
+ top: 3px;
2649
+ right: 0;
2650
+ opacity: 0;
2651
+ transition: opacity 0.3s ease; }
2652
+ .copy-sql-modal-content .sql-copied {
2653
+ color: var(--react-autoql-success-color) !important; }
2654
+ .copy-sql-modal-content:hover .copy-sql-btn {
2655
+ opacity: 1; }
2656
+
2620
2657
  .content {
2621
2658
  margin: 2rem; }
2622
2659
 
@@ -2749,177 +2786,220 @@ span.react-autoql-icon {
2749
2786
  .react-autoql-checkbox__input::before:not(.react-autoql-checkbox--switch__input) {
2750
2787
  background: var(--react-autoql-accent-color); }
2751
2788
 
2752
- .query-tips-page-container {
2753
- height: 100%;
2754
- padding: 10px; }
2755
- .query-tips-page-container .chat-bar-input-icon {
2756
- top: 20px;
2757
- left: 26px; }
2758
- .query-tips-page-container .react-autoql-chatbar-input.left-padding {
2759
- padding-left: 46px; }
2760
-
2761
- .query-tips-result-container {
2762
- color: var(--react-autoql-text-color-primary);
2763
- padding: 0px 20px;
2764
- text-align: center;
2765
- max-width: 550px;
2766
- margin: 0 auto; }
2767
- .query-tips-result-container .query-tip-list-container {
2768
- margin-bottom: 20px; }
2769
- .query-tips-result-container .animated-item {
2770
- -webkit-animation: fadeIn 0.3s linear;
2771
- animation: fadeIn 0.3s linear;
2772
- -webkit-animation-fill-mode: both;
2773
- animation-fill-mode: both; }
2774
- .query-tips-result-container .query-tip-item {
2775
- position: relative;
2789
+ .chat-single-message-container {
2790
+ transition: background-color 0.2s ease;
2791
+ padding-top: 6px;
2792
+ max-height: 85%; }
2793
+ .chat-single-message-container:first-of-type {
2794
+ margin-top: 10px; }
2795
+ .chat-single-message-container .query-more-btn {
2796
+ transition: all 0.3s ease;
2797
+ font-size: 22px;
2776
2798
  padding: 13px;
2777
- border-top: 1px solid rgba(0, 0, 0, 0.04);
2799
+ margin-bottom: 6px;
2800
+ height: 42px;
2801
+ opacity: 0;
2802
+ visibility: hidden;
2778
2803
  cursor: pointer; }
2779
- .query-tips-result-container .query-tip-item:first-child {
2780
- border-top: none; }
2781
- .query-tips-result-container .query-tip-item .execute-btn {
2782
- position: absolute;
2783
- right: 10px;
2784
- top: 4px;
2785
- font-size: 20px;
2786
- visibility: hidden;
2787
- opacity: 0; }
2788
- .query-tips-result-container .query-tip-item:hover {
2789
- font-weight: bold;
2790
- color: var(--react-autoql-accent-color); }
2791
- .query-tips-result-container .query-tip-item:hover .execute-btn {
2792
- visibility: visible;
2793
- opacity: 1; }
2794
- .query-tips-result-container .query-tips-result-placeholder {
2795
- margin-top: 50px;
2796
- opacity: 0.6; }
2804
+ .chat-single-message-container .query-more-btn:hover {
2805
+ opacity: 1; }
2806
+ .chat-single-message-container .spinner-loader:after {
2807
+ border: 1px solid var(--react-autoql-accent-color);
2808
+ border-color: var(--react-autoql-accent-color) transparent var(--react-autoql-accent-color) transparent; }
2797
2809
 
2798
- .chat-bar-loading-spinner {
2810
+ .chat-condition-item-container {
2799
2811
  position: absolute;
2800
- right: 20px;
2801
- top: 22px; }
2812
+ background: inherit;
2813
+ bottom: 0px;
2814
+ padding: 5px;
2815
+ border-radius: 6px; }
2802
2816
 
2803
- #react-paginate {
2804
- position: relative;
2805
- background: transparent;
2806
- padding: 8px; }
2807
- #react-paginate ul {
2808
- display: inline-block;
2809
- padding-left: 0;
2810
- margin-bottom: 0; }
2811
- #react-paginate li {
2812
- display: inline-block;
2813
- color: var(--react-autoql-text-color-primary);
2814
- cursor: pointer;
2815
- margin-right: 3px;
2816
- border-radius: 5px;
2817
- margin-bottom: 0;
2818
- -webkit-user-select: none;
2819
- -moz-user-select: none;
2820
- -ms-user-select: none;
2821
- user-select: none; }
2822
- #react-paginate li:hover {
2823
- opacity: 0.7;
2824
- border-radius: 50%; }
2825
- #react-paginate li a {
2826
- display: inline-block;
2827
- color: var(--react-autoql-text-color-primary);
2828
- outline: none;
2829
- width: 28px;
2830
- height: 28px;
2831
- line-height: 28px; }
2832
- #react-paginate li.selected {
2833
- background: var(--react-autoql-accent-color);
2834
- border-radius: 50%;
2835
- outline: none; }
2836
- #react-paginate li.selected a {
2837
- color: var(--react-autoql-accent-text-color); }
2838
- #react-paginate .pagination-next.disabled,
2839
- #react-paginate .pagination-previous.disabled {
2840
- opacity: 0.5;
2841
- pointer-events: none; }
2842
- #react-paginate .pagination-previous,
2843
- #react-paginate .pagination-next {
2844
- position: absolute;
2845
- font-size: 18px; }
2846
- #react-paginate .pagination-previous a,
2847
- #react-paginate .pagination-next a {
2848
- color: var(--react-autoql-text-color-primary); }
2849
- #react-paginate .pagination-previous {
2850
- left: 20px; }
2851
- #react-paginate .pagination-next {
2852
- right: 20px; }
2817
+ .chat-condition-item {
2818
+ background: none !important;
2819
+ border: none;
2820
+ margin-top: -20px !important;
2821
+ padding: 0 !important;
2822
+ font-family: var(--react-autoql-font-family);
2823
+ color: var(--react-autoql-accent-color);
2824
+ text-decoration: underline;
2825
+ cursor: pointer; }
2853
2826
 
2854
- .animated-item:nth-child(1) {
2855
- -webkit-animation-delay: 0.08s;
2856
- animation-delay: 0.08s; }
2827
+ .chat-single-message-container.response {
2828
+ display: flex;
2829
+ justify-content: flex-start;
2830
+ padding-left: 20px;
2831
+ -webkit-animation: scale-up-bl 0.5s ease;
2832
+ animation: scale-up-bl 0.5s ease; }
2857
2833
 
2858
- .animated-item:nth-child(2) {
2859
- -webkit-animation-delay: 0.16s;
2860
- animation-delay: 0.16s; }
2834
+ .chat-single-message-container.request {
2835
+ display: flex;
2836
+ justify-content: flex-end;
2837
+ padding-right: 20px;
2838
+ -webkit-animation: scale-up-br 0.5s ease;
2839
+ animation: scale-up-br 0.5s ease; }
2861
2840
 
2862
- .animated-item:nth-child(3) {
2863
- -webkit-animation-delay: 0.24s;
2864
- animation-delay: 0.24s; }
2841
+ .chat-single-message-container .chat-message-bubble {
2842
+ position: relative;
2843
+ padding: 13px;
2844
+ border-radius: 10px;
2845
+ max-width: calc(100% - 20px);
2846
+ word-wrap: break-word;
2847
+ font-family: inherit;
2848
+ font-size: 14px;
2849
+ letter-spacing: 0.04em;
2850
+ box-sizing: border-box;
2851
+ /* make small margin on bottom because sometimes react
2852
+ custom scrollbar cuts off a pixel or 2 at the bottom */
2853
+ margin-bottom: 6px; }
2865
2854
 
2866
- .animated-item:nth-child(4) {
2867
- -webkit-animation-delay: 0.32s;
2868
- animation-delay: 0.32s; }
2855
+ .chat-single-message-container .chat-message-bubble.text {
2856
+ max-width: 85%; }
2869
2857
 
2870
- .animated-item:nth-child(5) {
2871
- -webkit-animation-delay: 0.4s;
2872
- animation-delay: 0.4s; }
2858
+ .chat-single-message-container .chat-message-bubble.full-width {
2859
+ width: calc(100% - 20px) !important;
2860
+ min-width: calc(100% - 20px) !important;
2861
+ max-width: calc(100% - 20px) !important; }
2873
2862
 
2874
- .animated-item:nth-child(6) {
2875
- -webkit-animation-delay: 0.48s;
2876
- animation-delay: 0.48s; }
2863
+ .chat-single-message-container.response .chat-message-bubble.active {
2864
+ border: 1px solid #c3c3c3; }
2877
2865
 
2878
- .animated-item:nth-child(7) {
2879
- -webkit-animation-delay: 0.56s;
2880
- animation-delay: 0.56s; }
2866
+ .chat-single-message-container.response .chat-message-bubble {
2867
+ background: var(--react-autoql-background-color-primary);
2868
+ color: var(--react-autoql-text-color-primary);
2869
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13); }
2881
2870
 
2882
- .animated-item:nth-child(8) {
2883
- -webkit-animation-delay: 0.64s;
2884
- animation-delay: 0.64s; }
2871
+ .chat-single-message-container.response .chat-message-bubble:not(.text) {
2872
+ min-width: 125px;
2873
+ padding-bottom: 15px; }
2885
2874
 
2886
- .animated-item:nth-child(9) {
2887
- -webkit-animation-delay: 0.72s;
2888
- animation-delay: 0.72s; }
2875
+ .chat-single-message-container.request .chat-message-bubble {
2876
+ background: var(--react-autoql-accent-color);
2877
+ color: var(--react-autoql-accent-text-color);
2878
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13); }
2889
2879
 
2890
- .animated-item:nth-child(10) {
2891
- -webkit-animation-delay: 0.8s;
2892
- animation-delay: 0.8s; }
2880
+ .chat-message-toolbar,
2881
+ .chat-message-toolbar.autoql-options-toolbar {
2882
+ display: none;
2883
+ position: absolute;
2884
+ background: inherit;
2885
+ top: -31px;
2886
+ padding: 5px;
2887
+ border-radius: 6px;
2888
+ line-height: 28px;
2889
+ background: var(--react-autoql-background-color-primary);
2890
+ border: 1px solid var(--react-autoql-border-color);
2891
+ color: var(--react-autoql-text-color-primary); }
2893
2892
 
2894
- .animated-item:nth-child(11) {
2895
- -webkit-animation-delay: 0.88s;
2896
- animation-delay: 0.88s; }
2893
+ .chat-message-toolbar.right {
2894
+ right: -9px; }
2897
2895
 
2898
- .animated-item:nth-child(12) {
2899
- -webkit-animation-delay: 0.96s;
2900
- animation-delay: 0.96s; }
2896
+ .chat-message-toolbar.left {
2897
+ left: -9px; }
2901
2898
 
2902
- .animated-item:nth-child(13) {
2903
- -webkit-animation-delay: 1.04s;
2904
- animation-delay: 1.04s; }
2899
+ .chat-message-bubble:hover .chat-message-toolbar,
2900
+ .chat-message-bubble .chat-message-toolbar.active {
2901
+ display: block; }
2905
2902
 
2906
- .animated-item:nth-child(14) {
2907
- -webkit-animation-delay: 1.12s;
2908
- animation-delay: 1.12s; }
2903
+ .report-problem-text-area {
2904
+ border-radius: 4px;
2905
+ border: 1px solid rgba(0, 0, 0, 0.15);
2906
+ margin-top: 10px;
2907
+ padding: 5px 10px;
2908
+ outline: none !important; }
2909
2909
 
2910
- .animated-item:nth-child(15) {
2911
- -webkit-animation-delay: 1.2s;
2912
- animation-delay: 1.2s; }
2910
+ .condition-info-icon-left-align {
2911
+ color: var(--react-autoql-accent-color) !important;
2912
+ position: absolute !important;
2913
+ bottom: 2px;
2914
+ right: 10px;
2915
+ font-size: 20px; }
2913
2916
 
2914
- @-webkit-keyframes fadeIn {
2917
+ .condition-info-icon {
2918
+ color: var(--react-autoql-accent-color) !important;
2919
+ position: absolute !important;
2920
+ bottom: 2px;
2921
+ right: 4px;
2922
+ font-size: 20px; }
2923
+
2924
+ .more-options-menu,
2925
+ .report-problem-menu {
2926
+ background: var(--react-autoql-background-color-primary);
2927
+ padding: 10px 0; }
2928
+ .more-options-menu span.react-autoql-icon svg,
2929
+ .report-problem-menu span.react-autoql-icon svg {
2930
+ margin-right: 3px; }
2931
+
2932
+ .interpretation-icon {
2933
+ vertical-align: top;
2934
+ height: 26px;
2935
+ margin: 0 3px;
2936
+ font-size: 18px; }
2937
+
2938
+ /* Chart icon styles */
2939
+ .chart-icon-svg-0,
2940
+ .react-autoql-icon-svg-0 {
2941
+ fill: currentColor; }
2942
+
2943
+ .hm0 {
2944
+ opacity: 0.5;
2945
+ fill: currentColor;
2946
+ enable-background: new; }
2947
+
2948
+ .hm1 {
2949
+ fill: currentColor; }
2950
+
2951
+ .hm2 {
2952
+ opacity: 0.15;
2953
+ fill: currentColor;
2954
+ enable-background: new; }
2955
+
2956
+ .hm3 {
2957
+ opacity: 0.6;
2958
+ fill: currentColor;
2959
+ enable-background: new; }
2960
+
2961
+ .hm4 {
2962
+ opacity: 0.65;
2963
+ fill: currentColor;
2964
+ enable-background: new; }
2965
+
2966
+ .hm5 {
2967
+ fill: currentColor; }
2968
+
2969
+ .hm6 {
2970
+ fill: currentColor; }
2971
+
2972
+ /* animations */
2973
+ @-webkit-keyframes scale-up-br {
2915
2974
  0% {
2916
- opacity: 0;
2917
- top: 100px; }
2918
- 75% {
2919
- opacity: 0.5;
2920
- top: 0px; }
2975
+ transform: scale(0.5);
2976
+ transform-origin: 100% 100%; }
2921
2977
  100% {
2922
- opacity: 1; } }
2978
+ transform: scale(1);
2979
+ transform-origin: 100% 100%; } }
2980
+ @keyframes scale-up-br {
2981
+ 0% {
2982
+ transform: scale(0.5);
2983
+ transform-origin: 100% 100%; }
2984
+ 100% {
2985
+ transform: scale(1);
2986
+ transform-origin: 100% 100%; } }
2987
+
2988
+ @-webkit-keyframes scale-up-bl {
2989
+ 0% {
2990
+ transform: scale(0.5);
2991
+ transform-origin: 0% 100%; }
2992
+ 100% {
2993
+ transform: scale(1);
2994
+ transform-origin: 0% 100%; } }
2995
+
2996
+ @keyframes scale-up-bl {
2997
+ 0% {
2998
+ transform: scale(0.5);
2999
+ transform-origin: 0% 100%; }
3000
+ 100% {
3001
+ transform: scale(1);
3002
+ transform-origin: 0% 100%; } }
2923
3003
 
2924
3004
  .react-autoql-cascader {
2925
3005
  position: relative;
@@ -2975,255 +3055,177 @@ span.react-autoql-icon {
2975
3055
  .react-autoql-cascader .options-container:not(:last-child) {
2976
3056
  border-right: 1px solid #d3d3d352; }
2977
3057
 
2978
- .autoql-options-toolbar {
2979
- position: absolute;
2980
- background: inherit;
2981
- padding: 5px;
2982
- border-radius: 6px;
2983
- line-height: 28px;
2984
- background: var(--react-autoql-background-color-primary);
2985
- border: 1px solid var(--react-autoql-border-color); }
2986
- .autoql-options-toolbar.vertical .react-autoql-toolbar-btn {
2987
- display: block; }
2988
- .autoql-options-toolbar .react-autoql-toolbar-btn {
2989
- color: var(--react-autoql-text-color-primary); }
2990
-
2991
- .copy-sql-modal-content {
2992
- position: relative;
2993
- height: 60vh; }
2994
- .copy-sql-modal-content .copy-sql-formatted-text {
2995
- height: 100%;
2996
- width: 100%;
2997
- padding: 10px;
2998
- resize: none;
2999
- background: var(--react-autoql-background-color-secondary); }
3000
- .copy-sql-modal-content .copy-sql-btn {
3001
- color: var(--react-autoql-text-color);
3002
- background-color: var(--react-autoql-background-color-primary);
3003
- position: absolute;
3004
- top: 3px;
3005
- right: 0;
3006
- opacity: 0;
3007
- transition: opacity 0.3s ease; }
3008
- .copy-sql-modal-content .sql-copied {
3009
- color: var(--react-autoql-success-color) !important; }
3010
- .copy-sql-modal-content:hover .copy-sql-btn {
3011
- opacity: 1; }
3058
+ .query-tips-page-container {
3059
+ height: 100%;
3060
+ padding: 10px; }
3061
+ .query-tips-page-container .chat-bar-input-icon {
3062
+ top: 20px;
3063
+ left: 26px; }
3064
+ .query-tips-page-container .react-autoql-chatbar-input.left-padding {
3065
+ padding-left: 46px; }
3012
3066
 
3013
- .chat-single-message-container {
3014
- transition: background-color 0.2s ease;
3015
- padding-top: 6px;
3016
- max-height: 85%; }
3017
- .chat-single-message-container:first-of-type {
3018
- margin-top: 10px; }
3019
- .chat-single-message-container .query-more-btn {
3020
- transition: all 0.3s ease;
3021
- font-size: 22px;
3067
+ .query-tips-result-container {
3068
+ color: var(--react-autoql-text-color-primary);
3069
+ padding: 0px 20px;
3070
+ text-align: center;
3071
+ max-width: 550px;
3072
+ margin: 0 auto; }
3073
+ .query-tips-result-container .query-tip-list-container {
3074
+ margin-bottom: 20px; }
3075
+ .query-tips-result-container .animated-item {
3076
+ -webkit-animation: fadeIn 0.3s linear;
3077
+ animation: fadeIn 0.3s linear;
3078
+ -webkit-animation-fill-mode: both;
3079
+ animation-fill-mode: both; }
3080
+ .query-tips-result-container .query-tip-item {
3081
+ position: relative;
3022
3082
  padding: 13px;
3023
- margin-bottom: 6px;
3024
- height: 42px;
3025
- opacity: 0;
3026
- visibility: hidden;
3083
+ border-top: 1px solid rgba(0, 0, 0, 0.04);
3027
3084
  cursor: pointer; }
3028
- .chat-single-message-container .query-more-btn:hover {
3029
- opacity: 1; }
3030
- .chat-single-message-container .spinner-loader:after {
3031
- border: 1px solid var(--react-autoql-accent-color);
3032
- border-color: var(--react-autoql-accent-color) transparent var(--react-autoql-accent-color) transparent; }
3085
+ .query-tips-result-container .query-tip-item:first-child {
3086
+ border-top: none; }
3087
+ .query-tips-result-container .query-tip-item .execute-btn {
3088
+ position: absolute;
3089
+ right: 10px;
3090
+ top: 4px;
3091
+ font-size: 20px;
3092
+ visibility: hidden;
3093
+ opacity: 0; }
3094
+ .query-tips-result-container .query-tip-item:hover {
3095
+ font-weight: bold;
3096
+ color: var(--react-autoql-accent-color); }
3097
+ .query-tips-result-container .query-tip-item:hover .execute-btn {
3098
+ visibility: visible;
3099
+ opacity: 1; }
3100
+ .query-tips-result-container .query-tips-result-placeholder {
3101
+ margin-top: 50px;
3102
+ opacity: 0.6; }
3033
3103
 
3034
- .chat-condition-item-container {
3104
+ .chat-bar-loading-spinner {
3035
3105
  position: absolute;
3036
- background: inherit;
3037
- bottom: 0px;
3038
- padding: 5px;
3039
- border-radius: 6px; }
3040
-
3041
- .chat-condition-item {
3042
- background: none !important;
3043
- border: none;
3044
- margin-top: -20px !important;
3045
- padding: 0 !important;
3046
- font-family: var(--react-autoql-font-family);
3047
- color: var(--react-autoql-accent-color);
3048
- text-decoration: underline;
3049
- cursor: pointer; }
3050
-
3051
- .chat-single-message-container.response {
3052
- display: flex;
3053
- justify-content: flex-start;
3054
- padding-left: 20px;
3055
- -webkit-animation: scale-up-bl 0.5s ease;
3056
- animation: scale-up-bl 0.5s ease; }
3057
-
3058
- .chat-single-message-container.request {
3059
- display: flex;
3060
- justify-content: flex-end;
3061
- padding-right: 20px;
3062
- -webkit-animation: scale-up-br 0.5s ease;
3063
- animation: scale-up-br 0.5s ease; }
3106
+ right: 20px;
3107
+ top: 22px; }
3064
3108
 
3065
- .chat-single-message-container .chat-message-bubble {
3109
+ #react-paginate {
3066
3110
  position: relative;
3067
- padding: 13px;
3068
- border-radius: 10px;
3069
- max-width: calc(100% - 20px);
3070
- word-wrap: break-word;
3071
- font-family: inherit;
3072
- font-size: 14px;
3073
- letter-spacing: 0.04em;
3074
- box-sizing: border-box;
3075
- /* make small margin on bottom because sometimes react
3076
- custom scrollbar cuts off a pixel or 2 at the bottom */
3077
- margin-bottom: 6px; }
3078
-
3079
- .chat-single-message-container .chat-message-bubble.text {
3080
- max-width: 85%; }
3081
-
3082
- .chat-single-message-container .chat-message-bubble.full-width {
3083
- width: calc(100% - 20px) !important;
3084
- min-width: calc(100% - 20px) !important;
3085
- max-width: calc(100% - 20px) !important; }
3086
-
3087
- .chat-single-message-container.response .chat-message-bubble.active {
3088
- border: 1px solid #c3c3c3; }
3089
-
3090
- .chat-single-message-container.response .chat-message-bubble {
3091
- background: var(--react-autoql-background-color-primary);
3092
- color: var(--react-autoql-text-color-primary);
3093
- box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13); }
3094
-
3095
- .chat-single-message-container.response .chat-message-bubble:not(.text) {
3096
- min-width: 125px;
3097
- padding-bottom: 15px; }
3098
-
3099
- .chat-single-message-container.request .chat-message-bubble {
3100
- background: var(--react-autoql-accent-color);
3101
- color: var(--react-autoql-accent-text-color);
3102
- box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13); }
3103
-
3104
- .chat-message-toolbar,
3105
- .chat-message-toolbar.autoql-options-toolbar {
3106
- display: none;
3107
- position: absolute;
3108
- background: inherit;
3109
- top: -31px;
3110
- padding: 5px;
3111
- border-radius: 6px;
3112
- line-height: 28px;
3113
- background: var(--react-autoql-background-color-primary);
3114
- border: 1px solid var(--react-autoql-border-color);
3115
- color: var(--react-autoql-text-color-primary); }
3116
-
3117
- .chat-message-toolbar.right {
3118
- right: -9px; }
3119
-
3120
- .chat-message-toolbar.left {
3121
- left: -9px; }
3122
-
3123
- .chat-message-bubble:hover .chat-message-toolbar,
3124
- .chat-message-bubble .chat-message-toolbar.active {
3125
- display: block; }
3111
+ background: transparent;
3112
+ padding: 8px; }
3113
+ #react-paginate ul {
3114
+ display: inline-block;
3115
+ padding-left: 0;
3116
+ margin-bottom: 0; }
3117
+ #react-paginate li {
3118
+ display: inline-block;
3119
+ color: var(--react-autoql-text-color-primary);
3120
+ cursor: pointer;
3121
+ margin-right: 3px;
3122
+ border-radius: 5px;
3123
+ margin-bottom: 0;
3124
+ -webkit-user-select: none;
3125
+ -moz-user-select: none;
3126
+ -ms-user-select: none;
3127
+ user-select: none; }
3128
+ #react-paginate li:hover {
3129
+ opacity: 0.7;
3130
+ border-radius: 50%; }
3131
+ #react-paginate li a {
3132
+ display: inline-block;
3133
+ color: var(--react-autoql-text-color-primary);
3134
+ outline: none;
3135
+ width: 28px;
3136
+ height: 28px;
3137
+ line-height: 28px; }
3138
+ #react-paginate li.selected {
3139
+ background: var(--react-autoql-accent-color);
3140
+ border-radius: 50%;
3141
+ outline: none; }
3142
+ #react-paginate li.selected a {
3143
+ color: var(--react-autoql-accent-text-color); }
3144
+ #react-paginate .pagination-next.disabled,
3145
+ #react-paginate .pagination-previous.disabled {
3146
+ opacity: 0.5;
3147
+ pointer-events: none; }
3148
+ #react-paginate .pagination-previous,
3149
+ #react-paginate .pagination-next {
3150
+ position: absolute;
3151
+ font-size: 18px; }
3152
+ #react-paginate .pagination-previous a,
3153
+ #react-paginate .pagination-next a {
3154
+ color: var(--react-autoql-text-color-primary); }
3155
+ #react-paginate .pagination-previous {
3156
+ left: 20px; }
3157
+ #react-paginate .pagination-next {
3158
+ right: 20px; }
3126
3159
 
3127
- .report-problem-text-area {
3128
- border-radius: 4px;
3129
- border: 1px solid rgba(0, 0, 0, 0.15);
3130
- margin-top: 10px;
3131
- padding: 5px 10px;
3132
- outline: none !important; }
3160
+ .animated-item:nth-child(1) {
3161
+ -webkit-animation-delay: 0.08s;
3162
+ animation-delay: 0.08s; }
3133
3163
 
3134
- .condition-info-icon-left-align {
3135
- color: var(--react-autoql-accent-color) !important;
3136
- position: absolute !important;
3137
- bottom: 2px;
3138
- right: 10px;
3139
- font-size: 20px; }
3164
+ .animated-item:nth-child(2) {
3165
+ -webkit-animation-delay: 0.16s;
3166
+ animation-delay: 0.16s; }
3140
3167
 
3141
- .condition-info-icon {
3142
- color: var(--react-autoql-accent-color) !important;
3143
- position: absolute !important;
3144
- bottom: 2px;
3145
- right: 4px;
3146
- font-size: 20px; }
3168
+ .animated-item:nth-child(3) {
3169
+ -webkit-animation-delay: 0.24s;
3170
+ animation-delay: 0.24s; }
3147
3171
 
3148
- .more-options-menu,
3149
- .report-problem-menu {
3150
- background: var(--react-autoql-background-color-primary);
3151
- padding: 10px 0; }
3152
- .more-options-menu span.react-autoql-icon svg,
3153
- .report-problem-menu span.react-autoql-icon svg {
3154
- margin-right: 3px; }
3172
+ .animated-item:nth-child(4) {
3173
+ -webkit-animation-delay: 0.32s;
3174
+ animation-delay: 0.32s; }
3155
3175
 
3156
- .interpretation-icon {
3157
- vertical-align: top;
3158
- height: 26px;
3159
- margin: 0 3px;
3160
- font-size: 18px; }
3176
+ .animated-item:nth-child(5) {
3177
+ -webkit-animation-delay: 0.4s;
3178
+ animation-delay: 0.4s; }
3161
3179
 
3162
- /* Chart icon styles */
3163
- .chart-icon-svg-0,
3164
- .react-autoql-icon-svg-0 {
3165
- fill: currentColor; }
3180
+ .animated-item:nth-child(6) {
3181
+ -webkit-animation-delay: 0.48s;
3182
+ animation-delay: 0.48s; }
3166
3183
 
3167
- .hm0 {
3168
- opacity: 0.5;
3169
- fill: currentColor;
3170
- enable-background: new; }
3184
+ .animated-item:nth-child(7) {
3185
+ -webkit-animation-delay: 0.56s;
3186
+ animation-delay: 0.56s; }
3171
3187
 
3172
- .hm1 {
3173
- fill: currentColor; }
3188
+ .animated-item:nth-child(8) {
3189
+ -webkit-animation-delay: 0.64s;
3190
+ animation-delay: 0.64s; }
3174
3191
 
3175
- .hm2 {
3176
- opacity: 0.15;
3177
- fill: currentColor;
3178
- enable-background: new; }
3192
+ .animated-item:nth-child(9) {
3193
+ -webkit-animation-delay: 0.72s;
3194
+ animation-delay: 0.72s; }
3179
3195
 
3180
- .hm3 {
3181
- opacity: 0.6;
3182
- fill: currentColor;
3183
- enable-background: new; }
3196
+ .animated-item:nth-child(10) {
3197
+ -webkit-animation-delay: 0.8s;
3198
+ animation-delay: 0.8s; }
3184
3199
 
3185
- .hm4 {
3186
- opacity: 0.65;
3187
- fill: currentColor;
3188
- enable-background: new; }
3200
+ .animated-item:nth-child(11) {
3201
+ -webkit-animation-delay: 0.88s;
3202
+ animation-delay: 0.88s; }
3189
3203
 
3190
- .hm5 {
3191
- fill: currentColor; }
3204
+ .animated-item:nth-child(12) {
3205
+ -webkit-animation-delay: 0.96s;
3206
+ animation-delay: 0.96s; }
3192
3207
 
3193
- .hm6 {
3194
- fill: currentColor; }
3208
+ .animated-item:nth-child(13) {
3209
+ -webkit-animation-delay: 1.04s;
3210
+ animation-delay: 1.04s; }
3195
3211
 
3196
- /* animations */
3197
- @-webkit-keyframes scale-up-br {
3198
- 0% {
3199
- transform: scale(0.5);
3200
- transform-origin: 100% 100%; }
3201
- 100% {
3202
- transform: scale(1);
3203
- transform-origin: 100% 100%; } }
3204
- @keyframes scale-up-br {
3205
- 0% {
3206
- transform: scale(0.5);
3207
- transform-origin: 100% 100%; }
3208
- 100% {
3209
- transform: scale(1);
3210
- transform-origin: 100% 100%; } }
3212
+ .animated-item:nth-child(14) {
3213
+ -webkit-animation-delay: 1.12s;
3214
+ animation-delay: 1.12s; }
3211
3215
 
3212
- @-webkit-keyframes scale-up-bl {
3213
- 0% {
3214
- transform: scale(0.5);
3215
- transform-origin: 0% 100%; }
3216
- 100% {
3217
- transform: scale(1);
3218
- transform-origin: 0% 100%; } }
3216
+ .animated-item:nth-child(15) {
3217
+ -webkit-animation-delay: 1.2s;
3218
+ animation-delay: 1.2s; }
3219
3219
 
3220
- @keyframes scale-up-bl {
3220
+ @-webkit-keyframes fadeIn {
3221
3221
  0% {
3222
- transform: scale(0.5);
3223
- transform-origin: 0% 100%; }
3222
+ opacity: 0;
3223
+ top: 100px; }
3224
+ 75% {
3225
+ opacity: 0.5;
3226
+ top: 0px; }
3224
3227
  100% {
3225
- transform: scale(1);
3226
- transform-origin: 0% 100%; } }
3228
+ opacity: 1; } }
3227
3229
 
3228
3230
  .react-autoql-table-container {
3229
3231
  flex: 1;
@@ -3508,7 +3510,6 @@ span.react-autoql-icon {
3508
3510
  background: var(--react-autoql-background-color-primary);
3509
3511
  padding: 5px; }
3510
3512
 
3511
-
3512
3513
  .viz-toolbar {
3513
3514
  position: absolute;
3514
3515
  background: inherit;
@@ -3540,6 +3541,7 @@ span.react-autoql-icon {
3540
3541
  .react-autoql-toolbar-btn:hover {
3541
3542
  opacity: 0.7; }
3542
3543
 
3544
+
3543
3545
  .react-autoql-input-container {
3544
3546
  position: relative;
3545
3547
  margin: 2px 5px;
@@ -3863,44 +3865,6 @@ span.react-autoql-icon {
3863
3865
 
3864
3866
 
3865
3867
 
3866
- .react-autoql-select {
3867
- border: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.1));
3868
- border-radius: 4px;
3869
- background: var(--react-autoql-background-color-primary, white);
3870
- display: inline-block;
3871
- font-size: 13px;
3872
- line-height: 32px;
3873
- height: 34px;
3874
- margin: 0 3px;
3875
- padding: 0 11px;
3876
- color: var(--react-autoql-accent-color, #26a7df);
3877
- transition: all 0.2s ease;
3878
- cursor: pointer; }
3879
- .react-autoql-select:hover {
3880
- border-color: var(--react-autoql-accent-color, #26a7df); }
3881
-
3882
- .react-autoql-select-popup-container {
3883
- background: var(--react-autoql-background-color-primary, white);
3884
- padding: 10px 0;
3885
- max-height: 300px;
3886
- overflow-y: auto; }
3887
- .react-autoql-select-popup-container .react-autoql-select-option.active {
3888
- background: var(--react-autoql-hover-color, rgba(0, 0, 0, 0.04)); }
3889
- .react-autoql-select-popup-container .react-autoql-select-popup {
3890
- list-style-type: none;
3891
- width: 100%;
3892
- margin: 0;
3893
- padding: 0; }
3894
- .react-autoql-select-popup-container .react-autoql-select-popup li {
3895
- color: var(--react-autoql-text-color-primary);
3896
- width: 100%;
3897
- height: 35px;
3898
- line-height: 35px;
3899
- padding: 0 20px;
3900
- cursor: pointer; }
3901
- .react-autoql-select-popup-container .react-autoql-select-popup li:hover {
3902
- background: var(--react-autoql-hover-color, rgba(0, 0, 0, 0.04)); }
3903
-
3904
3868
  .slack-modal-error-container,
3905
3869
  .slack-modal-empty-list-message {
3906
3870
  display: flex;
@@ -4046,6 +4010,44 @@ span.react-autoql-icon {
4046
4010
  .slack-channel-list-container .connect-channel-btn button {
4047
4011
  width: 200px; }
4048
4012
 
4013
+ .react-autoql-select {
4014
+ border: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.1));
4015
+ border-radius: 4px;
4016
+ background: var(--react-autoql-background-color-primary, white);
4017
+ display: inline-block;
4018
+ font-size: 13px;
4019
+ line-height: 32px;
4020
+ height: 34px;
4021
+ margin: 0 3px;
4022
+ padding: 0 11px;
4023
+ color: var(--react-autoql-accent-color, #26a7df);
4024
+ transition: all 0.2s ease;
4025
+ cursor: pointer; }
4026
+ .react-autoql-select:hover {
4027
+ border-color: var(--react-autoql-accent-color, #26a7df); }
4028
+
4029
+ .react-autoql-select-popup-container {
4030
+ background: var(--react-autoql-background-color-primary, white);
4031
+ padding: 10px 0;
4032
+ max-height: 300px;
4033
+ overflow-y: auto; }
4034
+ .react-autoql-select-popup-container .react-autoql-select-option.active {
4035
+ background: var(--react-autoql-hover-color, rgba(0, 0, 0, 0.04)); }
4036
+ .react-autoql-select-popup-container .react-autoql-select-popup {
4037
+ list-style-type: none;
4038
+ width: 100%;
4039
+ margin: 0;
4040
+ padding: 0; }
4041
+ .react-autoql-select-popup-container .react-autoql-select-popup li {
4042
+ color: var(--react-autoql-text-color-primary);
4043
+ width: 100%;
4044
+ height: 35px;
4045
+ line-height: 35px;
4046
+ padding: 0 20px;
4047
+ cursor: pointer; }
4048
+ .react-autoql-select-popup-container .react-autoql-select-popup li:hover {
4049
+ background: var(--react-autoql-hover-color, rgba(0, 0, 0, 0.04)); }
4050
+
4049
4051
  .react-autoql-select-with-arrow div {
4050
4052
  color: inherit; }
4051
4053