react-autoql 4.7.2 → 4.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/autoql.esm.css +492 -84
- package/dist/autoql.esm.css.gz +0 -0
- package/dist/autoql.esm.js +2 -2
- package/dist/autoql.esm.js.gz +0 -0
- package/package.json +5 -5
package/dist/autoql.esm.css
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
.react-autoql-spinner-centered {
|
|
2
|
+
width: 100%;
|
|
3
|
+
text-align: center;
|
|
4
|
+
padding-top: 10px; }
|
|
5
|
+
|
|
6
|
+
.react-autosuggest__suggestions-container--open::-webkit-scrollbar {
|
|
7
|
+
visibility: visible !important; }
|
|
1
8
|
|
|
2
9
|
.react-autoql-icon {
|
|
3
10
|
position: relative;
|
|
@@ -23,6 +30,7 @@ span.react-autoql-icon {
|
|
|
23
30
|
padding: 0;
|
|
24
31
|
opacity: 1;
|
|
25
32
|
height: 1em;
|
|
33
|
+
width: 1em;
|
|
26
34
|
margin-bottom: -0.15em; }
|
|
27
35
|
|
|
28
36
|
.slack-logo {
|
|
@@ -229,7 +237,7 @@ span.react-autoql-icon {
|
|
|
229
237
|
display: block;
|
|
230
238
|
width: calc(100% - 20px);
|
|
231
239
|
height: unset;
|
|
232
|
-
border-radius:
|
|
240
|
+
border-radius: 15px;
|
|
233
241
|
font-family: inherit;
|
|
234
242
|
font-size: 15px;
|
|
235
243
|
font-weight: normal;
|
|
@@ -238,7 +246,7 @@ span.react-autoql-icon {
|
|
|
238
246
|
box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
|
|
239
247
|
/* Default styles outside of data messenger */
|
|
240
248
|
background-color: var(--react-autoql-background-color-primary);
|
|
241
|
-
color:
|
|
249
|
+
color: var(--react-autoql-text-color-primary); }
|
|
242
250
|
|
|
243
251
|
.react-autoql-bar-container.autosuggest-top
|
|
244
252
|
.react-autosuggest__suggestions-container--open {
|
|
@@ -287,7 +295,7 @@ span.react-autoql-icon {
|
|
|
287
295
|
.react-autoql-bar-container .react-autosuggest__section-title {
|
|
288
296
|
padding: 10px 0 0 10px;
|
|
289
297
|
font-size: 12px;
|
|
290
|
-
color:
|
|
298
|
+
color: var(--react-autoql-text-color-placeholder); }
|
|
291
299
|
|
|
292
300
|
.input-response-loading-container {
|
|
293
301
|
position: absolute;
|
|
@@ -311,7 +319,8 @@ span.react-autoql-icon {
|
|
|
311
319
|
max-width: 100%;
|
|
312
320
|
width: 100%;
|
|
313
321
|
background-color: inherit;
|
|
314
|
-
position: relative;
|
|
322
|
+
position: relative;
|
|
323
|
+
display: flex; }
|
|
315
324
|
.react-autoql-table-container.infinite:not(.last-page) .tabulator-row:last-child {
|
|
316
325
|
margin-bottom: 40px; }
|
|
317
326
|
.react-autoql-table-container .table-loader {
|
|
@@ -323,7 +332,7 @@ span.react-autoql-icon {
|
|
|
323
332
|
background-color: transparent;
|
|
324
333
|
color: var(--react-autoql-accent-color); }
|
|
325
334
|
.react-autoql-table-container .table-loader.table-page-loader {
|
|
326
|
-
top:
|
|
335
|
+
top: 50px;
|
|
327
336
|
bottom: 0;
|
|
328
337
|
right: 0;
|
|
329
338
|
left: 0; }
|
|
@@ -333,7 +342,7 @@ span.react-autoql-icon {
|
|
|
333
342
|
z-index: 0; }
|
|
334
343
|
|
|
335
344
|
.react-autoql-table {
|
|
336
|
-
margin-bottom: 0; }
|
|
345
|
+
margin-bottom: 0 !important; }
|
|
337
346
|
|
|
338
347
|
/* tabulator */
|
|
339
348
|
.react-autoql-table.tabulator,
|
|
@@ -386,13 +395,15 @@ span.react-autoql-icon {
|
|
|
386
395
|
|
|
387
396
|
.react-autoql-table.tabulator {
|
|
388
397
|
background-color: inherit;
|
|
389
|
-
|
|
398
|
+
flex: 1; }
|
|
390
399
|
|
|
391
400
|
.react-autoql-table .tabulator-row {
|
|
392
401
|
/* user-select: none; This breaks copy/paste */
|
|
393
402
|
border-bottom: 1px solid var(--react-autoql-border-color);
|
|
394
403
|
background-color: var(--react-autoql-background-color-primary);
|
|
395
404
|
z-index: 1; }
|
|
405
|
+
.react-autoql-table .tabulator-row:last-child {
|
|
406
|
+
border-bottom: none; }
|
|
396
407
|
|
|
397
408
|
.tabulator-cell:not(:first-child) {
|
|
398
409
|
border-left: 1px solid !important;
|
|
@@ -404,7 +415,7 @@ span.react-autoql-icon {
|
|
|
404
415
|
.react-autoql-table-container.resizing {
|
|
405
416
|
width: 100vw; }
|
|
406
417
|
.react-autoql-table-container.resizing .react-autoql-table {
|
|
407
|
-
|
|
418
|
+
visibility: hidden; }
|
|
408
419
|
|
|
409
420
|
.react-autoql-table-container.filtering {
|
|
410
421
|
min-height: 125px; }
|
|
@@ -431,9 +442,9 @@ span.react-autoql-icon {
|
|
|
431
442
|
.react-autoql-table-container:not(.filtering) .react-autoql-table .tabulator-header-filter {
|
|
432
443
|
display: none; }
|
|
433
444
|
.react-autoql-table-container:not(.filtering) .react-autoql-table .tabulator-tableHolder {
|
|
434
|
-
min-height: calc(100% -
|
|
435
|
-
height: calc(100% -
|
|
436
|
-
max-height: calc(100% -
|
|
445
|
+
min-height: calc(100% - 34px) !important;
|
|
446
|
+
height: calc(100% - 34px) !important;
|
|
447
|
+
max-height: calc(100% - 34px) !important; }
|
|
437
448
|
|
|
438
449
|
.react-autoql-table.tabulator
|
|
439
450
|
.tabulator-header
|
|
@@ -487,9 +498,12 @@ span.react-autoql-icon {
|
|
|
487
498
|
-webkit-transition: all 0.3s ease;
|
|
488
499
|
transition: all 0.3s ease; }
|
|
489
500
|
|
|
501
|
+
.react-autoql-table .tabulator-tableHolder:hover::-webkit-scrollbar-corner {
|
|
502
|
+
background-color: transparent; }
|
|
503
|
+
|
|
490
504
|
.react-autoql-table .tabulator-tableHolder:hover::-webkit-scrollbar-track,
|
|
491
505
|
.react-autoql-table .tabulator-tableHolder:hover::-webkit-scrollbar-track-piece,
|
|
492
|
-
.react-autoql-table .tabulator-tableHolder
|
|
506
|
+
.react-autoql-table .tabulator-tableHolder::-webkit-scrollbar-corner {
|
|
493
507
|
background-color: transparent; }
|
|
494
508
|
|
|
495
509
|
.react-autoql-table .tabulator-tableHolder:hover::-webkit-scrollbar-thumb {
|
|
@@ -508,7 +522,7 @@ span.react-autoql-icon {
|
|
|
508
522
|
border: 1px solid #28a8e0; }
|
|
509
523
|
|
|
510
524
|
.tabulator-table .tabulator-row .tabulator-cell {
|
|
511
|
-
min-height:
|
|
525
|
+
min-height: 32px; }
|
|
512
526
|
|
|
513
527
|
/* Center header titles */
|
|
514
528
|
.react-autoql-table .tabulator-header .tabulator-col {
|
|
@@ -795,51 +809,58 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
795
809
|
flex-grow: 1;
|
|
796
810
|
flex-shrink: 1;
|
|
797
811
|
overflow: hidden;
|
|
798
|
-
transition: opacity 0.2s ease;
|
|
812
|
+
transition: opacity 0.2s ease;
|
|
813
|
+
/* These are not inline styles since they do not apply to saved PNG charts */ }
|
|
799
814
|
.react-autoql-chart-container svg {
|
|
800
815
|
background: transparent !important; }
|
|
801
816
|
.react-autoql-chart-container.loading {
|
|
802
817
|
opacity: 0;
|
|
803
818
|
transition: none; }
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
.react-autoql-chart-container .
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
.react-autoql-chart-container .
|
|
816
|
-
.react-autoql-chart-container .stacked-
|
|
817
|
-
.react-autoql-chart-container .circle:hover,
|
|
818
|
-
.react-autoql-chart-container .
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
.react-autoql-chart-container .line-dot
|
|
823
|
-
.react-autoql-chart-container .
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
.react-autoql-chart-container .
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
.react-autoql-chart-container .react-autoql-
|
|
842
|
-
|
|
819
|
+
.react-autoql-chart-container .bar,
|
|
820
|
+
.react-autoql-chart-container .stacked-bar,
|
|
821
|
+
.react-autoql-chart-container .stacked-column,
|
|
822
|
+
.react-autoql-chart-container .circle,
|
|
823
|
+
.react-autoql-chart-container .stacked-area {
|
|
824
|
+
transition: fill-opacity 0.3s ease;
|
|
825
|
+
fill-opacity: 0.7 !important;
|
|
826
|
+
outline: none !important; }
|
|
827
|
+
.react-autoql-chart-container .bar:hover, .react-autoql-chart-container .bar.active,
|
|
828
|
+
.react-autoql-chart-container .stacked-bar:hover,
|
|
829
|
+
.react-autoql-chart-container .stacked-bar.active,
|
|
830
|
+
.react-autoql-chart-container .stacked-column:hover,
|
|
831
|
+
.react-autoql-chart-container .stacked-column.active,
|
|
832
|
+
.react-autoql-chart-container .circle:hover,
|
|
833
|
+
.react-autoql-chart-container .circle.active,
|
|
834
|
+
.react-autoql-chart-container .stacked-area:hover,
|
|
835
|
+
.react-autoql-chart-container .stacked-area.active {
|
|
836
|
+
fill-opacity: 1 !important; }
|
|
837
|
+
.react-autoql-chart-container .line-dot,
|
|
838
|
+
.react-autoql-chart-container .vertex-dot {
|
|
839
|
+
transition: opacity 0.3s ease;
|
|
840
|
+
opacity: 0 !important;
|
|
841
|
+
outline: none !important; }
|
|
842
|
+
.react-autoql-chart-container .line-dot:hover, .react-autoql-chart-container .line-dot.active,
|
|
843
|
+
.react-autoql-chart-container .vertex-dot:hover,
|
|
844
|
+
.react-autoql-chart-container .vertex-dot.active {
|
|
845
|
+
opacity: 1 !important; }
|
|
846
|
+
.react-autoql-chart-container .square {
|
|
847
|
+
transition: fill 0.2s ease;
|
|
848
|
+
outline: none !important; }
|
|
849
|
+
.react-autoql-chart-container .square:hover, .react-autoql-chart-container .square.active {
|
|
850
|
+
stroke-opacity: 0.5;
|
|
851
|
+
stroke: currentColor;
|
|
852
|
+
stroke-width: 1px;
|
|
853
|
+
fill: currentColor; }
|
|
854
|
+
.react-autoql-chart-container g.tick {
|
|
855
|
+
transition: opacity 0.3s ease; }
|
|
856
|
+
.react-autoql-chart-container .react-autoql-heatmap-chart g.tick line,
|
|
857
|
+
.react-autoql-chart-container .react-autoql-bubble-chart g.tick line {
|
|
858
|
+
opacity: 0 !important; }
|
|
859
|
+
.react-autoql-chart-container .axis {
|
|
860
|
+
font-family: inherit; }
|
|
861
|
+
.react-autoql-chart-container .pie-chart .labels {
|
|
862
|
+
font-size: 12px;
|
|
863
|
+
font-weight: 600; }
|
|
843
864
|
|
|
844
865
|
.axis-selector-container {
|
|
845
866
|
background: var(--react-autoql-background-color-primary);
|
|
@@ -850,7 +871,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
850
871
|
min-width: 150px;
|
|
851
872
|
overflow-y: auto; }
|
|
852
873
|
.axis-selector-container .axis-select-option.active {
|
|
853
|
-
background: var(--react-autoql-hover-color);
|
|
874
|
+
background: var(--react-autoql-hover-color);
|
|
875
|
+
outline: none !important; }
|
|
854
876
|
.axis-selector-container .react-autoql-checkbox {
|
|
855
877
|
margin-left: 20px; }
|
|
856
878
|
.axis-selector-container .react-autoql-checkbox .react-autoql-checkbox__input {
|
|
@@ -1045,6 +1067,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1045
1067
|
max-height: 150px;
|
|
1046
1068
|
width: 100%;
|
|
1047
1069
|
margin-top: 10px; }
|
|
1070
|
+
.query-output-footer.no-margin {
|
|
1071
|
+
margin: 0; }
|
|
1048
1072
|
|
|
1049
1073
|
.dashboard-data-limit-warning-icon {
|
|
1050
1074
|
color: var(--react-autoql-warning-color) !important;
|
|
@@ -1520,7 +1544,6 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1520
1544
|
display: flex;
|
|
1521
1545
|
flex-direction: column;
|
|
1522
1546
|
flex-basis: auto;
|
|
1523
|
-
--accent-color: #26a7df;
|
|
1524
1547
|
position: relative;
|
|
1525
1548
|
overflow: hidden;
|
|
1526
1549
|
background: var(--react-autoql-background-color-primary, #fff);
|
|
@@ -1964,6 +1987,21 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1964
1987
|
color: var(--react-autoql-danger-color);
|
|
1965
1988
|
display: 'inline-block'; }
|
|
1966
1989
|
|
|
1990
|
+
::-webkit-scrollbar {
|
|
1991
|
+
visibility: hidden;
|
|
1992
|
+
width: 6px;
|
|
1993
|
+
height: 6px; }
|
|
1994
|
+
|
|
1995
|
+
.scrollbar-content-container {
|
|
1996
|
+
position: absolute;
|
|
1997
|
+
height: 100%;
|
|
1998
|
+
width: 100%; }
|
|
1999
|
+
|
|
2000
|
+
.thumb-vertical,
|
|
2001
|
+
.thumb-horizontal {
|
|
2002
|
+
border-radius: 3px;
|
|
2003
|
+
background-color: var(--react-autoql-highlight-color);
|
|
2004
|
+
opacity: 0.2; }
|
|
1967
2005
|
|
|
1968
2006
|
.notification-list-loading-container {
|
|
1969
2007
|
text-align: center;
|
|
@@ -1994,9 +2032,6 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
1994
2032
|
.react-autoql-notification-list-container .notification-feed-list {
|
|
1995
2033
|
padding: 0 20px;
|
|
1996
2034
|
padding-top: 0; }
|
|
1997
|
-
.react-autoql-notification-list-container .loader {
|
|
1998
|
-
text-align: center;
|
|
1999
|
-
margin: 10px; }
|
|
2000
2035
|
|
|
2001
2036
|
.react-autoql-notification-dismiss-all {
|
|
2002
2037
|
flex: 0;
|
|
@@ -2590,7 +2625,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2590
2625
|
width: 100%;
|
|
2591
2626
|
top: -31px;
|
|
2592
2627
|
right: 0;
|
|
2593
|
-
z-index:
|
|
2628
|
+
z-index: 3;
|
|
2594
2629
|
pointer-events: none;
|
|
2595
2630
|
visibility: hidden;
|
|
2596
2631
|
opacity: 0; }
|
|
@@ -2637,23 +2672,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2637
2672
|
transform: scale(1);
|
|
2638
2673
|
transform-origin: 0% 100%; } }
|
|
2639
2674
|
|
|
2640
|
-
.
|
|
2641
|
-
|
|
2642
|
-
max-height: calc(100% - 140px);
|
|
2643
|
-
overflow-y: auto;
|
|
2644
|
-
overflow-x: hidden;
|
|
2645
|
-
flex: 1; }
|
|
2646
|
-
.react-autoql-drawer .chat-message-container .custom-scrollbar-container {
|
|
2647
|
-
overflow-x: hidden !important;
|
|
2648
|
-
margin-bottom: 0 !important; }
|
|
2649
|
-
|
|
2650
|
-
/* custom scrollbar */
|
|
2651
|
-
.react-autoql-drawer .chat-message-container > div:last-child {
|
|
2652
|
-
opacity: 0;
|
|
2653
|
-
transition: opacity 200ms ease; }
|
|
2654
|
-
|
|
2655
|
-
.react-autoql-drawer .chat-message-container:hover > div:last-child {
|
|
2656
|
-
opacity: 1; }
|
|
2675
|
+
.chat-content-scroll-container {
|
|
2676
|
+
flex: 1 0 0px; }
|
|
2657
2677
|
|
|
2658
2678
|
.react-autoql-drawer .response-loading-container {
|
|
2659
2679
|
position: absolute;
|
|
@@ -2661,6 +2681,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2661
2681
|
left: 20px; }
|
|
2662
2682
|
|
|
2663
2683
|
.react-autoql-drawer .chat-bar-container {
|
|
2684
|
+
flex: 0 0 auto;
|
|
2664
2685
|
position: relative;
|
|
2665
2686
|
padding: 10px; }
|
|
2666
2687
|
|
|
@@ -2717,7 +2738,8 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2717
2738
|
display: flex;
|
|
2718
2739
|
justify-content: space-between;
|
|
2719
2740
|
border-radius: 2px;
|
|
2720
|
-
padding-left: 10px;
|
|
2741
|
+
padding-left: 10px;
|
|
2742
|
+
transition: color 0.1s ease, background-color 0.2s ease; }
|
|
2721
2743
|
.react-autoql-cascader .options-container .option .option-arrow {
|
|
2722
2744
|
opacity: 0.7; }
|
|
2723
2745
|
.react-autoql-cascader .options-container .option .option-execute-icon {
|
|
@@ -2733,6 +2755,10 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2733
2755
|
.react-autoql-cascader .options-container:not(:last-child) {
|
|
2734
2756
|
border-right: 1px solid #d3d3d352; }
|
|
2735
2757
|
|
|
2758
|
+
.react-autoql-infinite-scroll-container {
|
|
2759
|
+
height: 100%;
|
|
2760
|
+
overflow: hidden; }
|
|
2761
|
+
|
|
2736
2762
|
.query-tips-page-container {
|
|
2737
2763
|
height: 100%;
|
|
2738
2764
|
padding: 10px;
|
|
@@ -2859,6 +2885,378 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
2859
2885
|
100% {
|
|
2860
2886
|
opacity: 1; } }
|
|
2861
2887
|
|
|
2888
|
+
.react-autoql-chatbar-input-container.data-explorer {
|
|
2889
|
+
flex: 0;
|
|
2890
|
+
padding: 10px;
|
|
2891
|
+
margin: 10px;
|
|
2892
|
+
margin-bottom: 0; }
|
|
2893
|
+
.react-autoql-chatbar-input-container.data-explorer.no-suggestions .react-autosuggest__suggestions-container--open
|
|
2894
|
+
.react-autosuggest__section-container:last-child
|
|
2895
|
+
ul {
|
|
2896
|
+
pointer-events: none;
|
|
2897
|
+
visibility: hidden;
|
|
2898
|
+
background: transparent !important;
|
|
2899
|
+
opacity: 0; }
|
|
2900
|
+
.react-autoql-chatbar-input-container.data-explorer.data-explorer {
|
|
2901
|
+
-webkit-animation: slideDown 0.5s ease;
|
|
2902
|
+
animation: slideDown 0.5s ease; }
|
|
2903
|
+
.react-autoql-chatbar-input-container.data-explorer .react-autoql-chatbar-input {
|
|
2904
|
+
margin: 0;
|
|
2905
|
+
width: 100%;
|
|
2906
|
+
padding-left: 46px;
|
|
2907
|
+
padding-right: 46px; }
|
|
2908
|
+
.react-autoql-chatbar-input-container.data-explorer .data-explorer-no-suggestions {
|
|
2909
|
+
padding-left: 10px;
|
|
2910
|
+
font-size: 14px; }
|
|
2911
|
+
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__container {
|
|
2912
|
+
position: relative; }
|
|
2913
|
+
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestions-container--open {
|
|
2914
|
+
position: absolute;
|
|
2915
|
+
margin: 0;
|
|
2916
|
+
padding-top: 5px;
|
|
2917
|
+
padding-bottom: 5px;
|
|
2918
|
+
display: block;
|
|
2919
|
+
width: 100%;
|
|
2920
|
+
height: unset;
|
|
2921
|
+
max-height: 250px;
|
|
2922
|
+
border-radius: 15px;
|
|
2923
|
+
font-family: inherit;
|
|
2924
|
+
font-size: 15px;
|
|
2925
|
+
font-weight: normal;
|
|
2926
|
+
z-index: 2;
|
|
2927
|
+
overflow: auto;
|
|
2928
|
+
margin-top: 3px;
|
|
2929
|
+
border: 1px solid var(--react-autoql-border-color);
|
|
2930
|
+
box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
|
|
2931
|
+
background-color: var(--react-autoql-background-color-primary);
|
|
2932
|
+
color: var(--react-autoql-text-color-primary); }
|
|
2933
|
+
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestions-list {
|
|
2934
|
+
margin: 0;
|
|
2935
|
+
padding: 0;
|
|
2936
|
+
list-style-type: none; }
|
|
2937
|
+
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__input--focused {
|
|
2938
|
+
outline: none; }
|
|
2939
|
+
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__input::-ms-clear,
|
|
2940
|
+
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestions-container {
|
|
2941
|
+
display: none; }
|
|
2942
|
+
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestion {
|
|
2943
|
+
cursor: pointer;
|
|
2944
|
+
padding: 2px;
|
|
2945
|
+
padding-left: 18px;
|
|
2946
|
+
letter-spacing: 0.05em;
|
|
2947
|
+
line-height: 22.5px; }
|
|
2948
|
+
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__suggestion--highlighted {
|
|
2949
|
+
background-color: rgba(0, 0, 0, 0.1) !important; }
|
|
2950
|
+
.react-autoql-chatbar-input-container.data-explorer .react-autosuggest__section-title {
|
|
2951
|
+
padding: 10px 0 0 10px;
|
|
2952
|
+
font-size: 12px;
|
|
2953
|
+
color: var(--react-autoql-text-color-placeholder); }
|
|
2954
|
+
|
|
2955
|
+
.data-explorer-section {
|
|
2956
|
+
flex: 0 1 auto;
|
|
2957
|
+
max-height: 100%;
|
|
2958
|
+
position: relative;
|
|
2959
|
+
overflow: hidden;
|
|
2960
|
+
display: flex;
|
|
2961
|
+
flex-direction: column;
|
|
2962
|
+
margin: 0 10px; }
|
|
2963
|
+
.data-explorer-section.collapsed, .data-explorer-section.data-preview-section,
|
|
2964
|
+
.data-explorer-section.data-preview-section .react-autoql-card-content,
|
|
2965
|
+
.data-explorer-section.data-preview-section .react-autoql-card-user-content {
|
|
2966
|
+
flex: 0 0 auto !important; }
|
|
2967
|
+
.data-explorer-section .data-preview-scroll-container,
|
|
2968
|
+
.data-explorer-section .custom-scrollbar-view {
|
|
2969
|
+
scroll-behavior: smooth !important;
|
|
2970
|
+
width: 100%;
|
|
2971
|
+
height: 100%;
|
|
2972
|
+
white-space: nowrap;
|
|
2973
|
+
text-overflow: ellipsis;
|
|
2974
|
+
overflow: auto; }
|
|
2975
|
+
.data-explorer-section .data-explorer-data-preview {
|
|
2976
|
+
flex: 0 0 auto;
|
|
2977
|
+
overflow: hidden;
|
|
2978
|
+
min-height: 0;
|
|
2979
|
+
display: flex;
|
|
2980
|
+
flex-direction: column; }
|
|
2981
|
+
.data-explorer-section .data-explorer-data-preview .data-preview-loading-container {
|
|
2982
|
+
height: 200px;
|
|
2983
|
+
width: 100%;
|
|
2984
|
+
display: flex;
|
|
2985
|
+
justify-content: center;
|
|
2986
|
+
align-items: center; }
|
|
2987
|
+
.data-explorer-section .data-explorer-data-preview .tabulator-col-content,
|
|
2988
|
+
.data-explorer-section .data-explorer-data-preview .tabulator-cell {
|
|
2989
|
+
cursor: pointer !important;
|
|
2990
|
+
transition: color 0.2s ease; }
|
|
2991
|
+
.data-explorer-section .data-explorer-data-preview .tabulator-col-content:hover,
|
|
2992
|
+
.data-explorer-section .data-explorer-data-preview .tabulator-cell:hover {
|
|
2993
|
+
color: var(--react-autoql-accent-color);
|
|
2994
|
+
font-weight: 600; }
|
|
2995
|
+
.data-explorer-section .data-explorer-data-preview .data-preview {
|
|
2996
|
+
max-height: 100%;
|
|
2997
|
+
padding: 0 5px; }
|
|
2998
|
+
.data-explorer-section .data-explorer-data-preview table {
|
|
2999
|
+
table-layout: fixed;
|
|
3000
|
+
border-collapse: collapse; }
|
|
3001
|
+
.data-explorer-section .data-explorer-data-preview thead th {
|
|
3002
|
+
top: 0;
|
|
3003
|
+
padding: 0 6px;
|
|
3004
|
+
height: 35px;
|
|
3005
|
+
position: -webkit-sticky;
|
|
3006
|
+
position: sticky;
|
|
3007
|
+
background: var(--react-autoql-background-color-primary);
|
|
3008
|
+
box-shadow: inset 0 -2px 0 var(--react-autoql-border-color);
|
|
3009
|
+
transition: color 0.2s ease;
|
|
3010
|
+
cursor: pointer;
|
|
3011
|
+
color: var(--react-autoql-accent-color); }
|
|
3012
|
+
.data-explorer-section .data-explorer-data-preview thead th .data-preview-col-header {
|
|
3013
|
+
height: 100%;
|
|
3014
|
+
display: flex;
|
|
3015
|
+
flex-direction: row;
|
|
3016
|
+
align-items: center;
|
|
3017
|
+
justify-content: center; }
|
|
3018
|
+
.data-explorer-section .data-explorer-data-preview tbody tr {
|
|
3019
|
+
height: 27px; }
|
|
3020
|
+
.data-explorer-section .data-explorer-data-preview tbody tr:not(:last-child) {
|
|
3021
|
+
border-bottom: 1px solid var(--react-autoql-border-color); }
|
|
3022
|
+
.data-explorer-section .data-explorer-data-preview tbody tr td {
|
|
3023
|
+
padding: 0 10px; }
|
|
3024
|
+
.data-explorer-section .data-explorer-data-preview tbody tr td:not(:last-child) {
|
|
3025
|
+
border-right: 1px solid var(--react-autoql-border-color); }
|
|
3026
|
+
|
|
3027
|
+
.data-explorer-page-container .data-preview-tooltip {
|
|
3028
|
+
--border-color: var(--react-autoql-border-color);
|
|
3029
|
+
--bg-color: var(--react-autoql-background-color-primary);
|
|
3030
|
+
opacity: 1 !important;
|
|
3031
|
+
padding: 15px 25px !important;
|
|
3032
|
+
font-size: 0.875rem !important;
|
|
3033
|
+
background: var(--bg-color);
|
|
3034
|
+
border: 2px solid var(--border-color);
|
|
3035
|
+
color: var(--react-autoql-text-color);
|
|
3036
|
+
box-shadow: rgba(102, 105, 109, 0.2) 0px 8px 24px; }
|
|
3037
|
+
.data-explorer-page-container .data-preview-tooltip.place-bottom::before {
|
|
3038
|
+
border-bottom-color: var(--border-color) !important; }
|
|
3039
|
+
.data-explorer-page-container .data-preview-tooltip.place-bottom::after {
|
|
3040
|
+
border-bottom-color: var(--bg-color) !important; }
|
|
3041
|
+
.data-explorer-page-container .data-preview-tooltip.place-top::before {
|
|
3042
|
+
border-top-color: var(--border-color) !important; }
|
|
3043
|
+
.data-explorer-page-container .data-preview-tooltip.place-top::after {
|
|
3044
|
+
border-top-color: var(--bg-color) !important; }
|
|
3045
|
+
.data-explorer-page-container .data-preview-tooltip.place-right::before {
|
|
3046
|
+
border-right-color: var(--border-color) !important; }
|
|
3047
|
+
.data-explorer-page-container .data-preview-tooltip.place-right::after {
|
|
3048
|
+
border-right-color: var(--bg-color) !important; }
|
|
3049
|
+
.data-explorer-page-container .data-preview-tooltip.place-left::before {
|
|
3050
|
+
border-left-color: var(--border-color) !important; }
|
|
3051
|
+
.data-explorer-page-container .data-preview-tooltip.place-left::after {
|
|
3052
|
+
border-left-color: var(--bg-color) !important; }
|
|
3053
|
+
.data-explorer-page-container .data-preview-tooltip p {
|
|
3054
|
+
margin-bottom: 0; }
|
|
3055
|
+
.data-explorer-page-container .data-preview-tooltip .data-explorer-tooltip-section:not(:last-child) {
|
|
3056
|
+
margin-bottom: 5px; }
|
|
3057
|
+
.data-explorer-page-container .data-preview-tooltip .data-explorer-tooltip-title {
|
|
3058
|
+
font-weight: 600; }
|
|
3059
|
+
.data-explorer-page-container .data-preview-tooltip .data-explorer-tooltip-query {
|
|
3060
|
+
cursor: pointer;
|
|
3061
|
+
color: var(--react-autoql-accent-color);
|
|
3062
|
+
font-weight: 600; }
|
|
3063
|
+
.data-explorer-page-container .data-preview-tooltip .data-explorer-tooltip-query:hover {
|
|
3064
|
+
text-decoration: underline; }
|
|
3065
|
+
.data-explorer-page-container .data-preview-tooltip .data-explorer-tooltip-query .react-autoql-icon svg {
|
|
3066
|
+
stroke-width: 1px;
|
|
3067
|
+
stroke: currentColor; }
|
|
3068
|
+
|
|
3069
|
+
.react-autoql-card {
|
|
3070
|
+
background: var(--react-autoql-background-color-primary);
|
|
3071
|
+
border-radius: 6px;
|
|
3072
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13);
|
|
3073
|
+
padding: 15px;
|
|
3074
|
+
margin: 10px;
|
|
3075
|
+
overflow: hidden;
|
|
3076
|
+
display: flex;
|
|
3077
|
+
flex-direction: column;
|
|
3078
|
+
flex-wrap: nowrap; }
|
|
3079
|
+
.react-autoql-card .react-autoql-card-content {
|
|
3080
|
+
display: flex;
|
|
3081
|
+
flex-direction: column;
|
|
3082
|
+
flex-wrap: nowrap;
|
|
3083
|
+
transition: max-height 0.3s ease, opacity 0.3s ease;
|
|
3084
|
+
opacity: 1;
|
|
3085
|
+
flex: 0 1 auto;
|
|
3086
|
+
min-height: 0;
|
|
3087
|
+
overflow: hidden; }
|
|
3088
|
+
.react-autoql-card .react-autoql-card-content .react-autoql-card-user-content {
|
|
3089
|
+
flex: 0 1 auto;
|
|
3090
|
+
min-height: 100px;
|
|
3091
|
+
max-height: 100%;
|
|
3092
|
+
position: relative;
|
|
3093
|
+
overflow: hidden;
|
|
3094
|
+
display: flex;
|
|
3095
|
+
flex-direction: column;
|
|
3096
|
+
flex-wrap: nowrap; }
|
|
3097
|
+
.react-autoql-card.collapsed .react-autoql-card-content {
|
|
3098
|
+
pointer-events: none;
|
|
3099
|
+
opacity: 0; }
|
|
3100
|
+
.react-autoql-card .react-autoql-card-title {
|
|
3101
|
+
cursor: pointer;
|
|
3102
|
+
padding: 0 10px;
|
|
3103
|
+
flex: 0 0 auto;
|
|
3104
|
+
display: flex;
|
|
3105
|
+
justify-content: space-between;
|
|
3106
|
+
align-items: center;
|
|
3107
|
+
flex-wrap: nowrap;
|
|
3108
|
+
font-size: 18px;
|
|
3109
|
+
margin: 4px 0px;
|
|
3110
|
+
font-weight: 600; }
|
|
3111
|
+
.react-autoql-card .react-autoql-card-subtitle {
|
|
3112
|
+
padding: 0px 10px 5px 10px;
|
|
3113
|
+
flex: 0 0 auto; }
|
|
3114
|
+
|
|
3115
|
+
.react-autoql-chip {
|
|
3116
|
+
display: inline-flex;
|
|
3117
|
+
flex-direction: row;
|
|
3118
|
+
flex-wrap: nowrap;
|
|
3119
|
+
justify-content: space-between;
|
|
3120
|
+
border-radius: 5px;
|
|
3121
|
+
padding: 5px 8px;
|
|
3122
|
+
border: 1px solid transparent;
|
|
3123
|
+
background-color: var(--react-autoql-background-color-primary);
|
|
3124
|
+
color: var(--react-autoql-text-color-primary);
|
|
3125
|
+
transition: all 0.2s ease;
|
|
3126
|
+
margin-right: 10px;
|
|
3127
|
+
margin-top: 5px;
|
|
3128
|
+
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
|
|
3129
|
+
cursor: pointer; }
|
|
3130
|
+
.react-autoql-chip:hover {
|
|
3131
|
+
border: 1px solid var(--react-autoql-accent-color); }
|
|
3132
|
+
.react-autoql-chip.selected {
|
|
3133
|
+
background-color: var(--react-autoql-accent-color);
|
|
3134
|
+
color: var(--react-autoql-accent-text-color); }
|
|
3135
|
+
.react-autoql-chip .react-autoql-chip-content {
|
|
3136
|
+
font-weight: 600; }
|
|
3137
|
+
.react-autoql-chip .react-autoql-chip-delete-btn {
|
|
3138
|
+
margin-left: 8px;
|
|
3139
|
+
transition: opacity 0.2s ease;
|
|
3140
|
+
opacity: 0.7; }
|
|
3141
|
+
.react-autoql-chip .react-autoql-chip-delete-btn:hover {
|
|
3142
|
+
opacity: 1; }
|
|
3143
|
+
|
|
3144
|
+
.data-explorer-page-container {
|
|
3145
|
+
height: 100%;
|
|
3146
|
+
padding: 0;
|
|
3147
|
+
display: flex;
|
|
3148
|
+
flex-direction: column;
|
|
3149
|
+
justify-content: flex-start;
|
|
3150
|
+
flex-wrap: nowrap;
|
|
3151
|
+
flex: 1 1;
|
|
3152
|
+
min-height: 0;
|
|
3153
|
+
color: var(--react-autoql-text-color-primary); }
|
|
3154
|
+
.data-explorer-page-container .data-explorer-intro-message {
|
|
3155
|
+
color: var(--react-autoql-text-color-primary);
|
|
3156
|
+
text-align: center;
|
|
3157
|
+
margin: 50px auto;
|
|
3158
|
+
padding: 0 40px;
|
|
3159
|
+
font-size: 15px; }
|
|
3160
|
+
.data-explorer-page-container .data-explorer-intro-message .intro-message-list-container {
|
|
3161
|
+
display: flex;
|
|
3162
|
+
justify-content: center;
|
|
3163
|
+
align-items: center;
|
|
3164
|
+
text-align: left; }
|
|
3165
|
+
.data-explorer-page-container .data-explorer-topic-icon {
|
|
3166
|
+
margin-right: 5px; }
|
|
3167
|
+
.data-explorer-page-container .exploring-title {
|
|
3168
|
+
display: flex;
|
|
3169
|
+
flex-direction: row;
|
|
3170
|
+
justify-content: space-between;
|
|
3171
|
+
flex-wrap: nowrap;
|
|
3172
|
+
align-items: flex-end;
|
|
3173
|
+
font-size: 16px;
|
|
3174
|
+
margin-bottom: 10px;
|
|
3175
|
+
padding: 0px 30px; }
|
|
3176
|
+
.data-explorer-page-container .exploring-title .clear-explorer-content-btn {
|
|
3177
|
+
cursor: pointer;
|
|
3178
|
+
font-size: 14px; }
|
|
3179
|
+
.data-explorer-page-container .exploring-title .clear-explorer-content-btn:hover {
|
|
3180
|
+
color: var(--react-autoql-accent-color); }
|
|
3181
|
+
.data-explorer-page-container .data-explorer-result-container {
|
|
3182
|
+
color: var(--react-autoql-text-color-primary);
|
|
3183
|
+
flex: 1;
|
|
3184
|
+
width: 100%;
|
|
3185
|
+
overflow: auto;
|
|
3186
|
+
padding-left: 5px;
|
|
3187
|
+
min-height: 0; }
|
|
3188
|
+
.data-explorer-page-container .data-explorer-result-container .data-explorer-sections-container {
|
|
3189
|
+
position: relative;
|
|
3190
|
+
height: 100%;
|
|
3191
|
+
width: 100%;
|
|
3192
|
+
display: flex;
|
|
3193
|
+
flex-direction: column;
|
|
3194
|
+
justify-content: flex-start;
|
|
3195
|
+
overflow: hidden; }
|
|
3196
|
+
.data-explorer-page-container .data-explorer-result-container .data-explorer-section:last-of-type {
|
|
3197
|
+
padding-bottom: 10px; }
|
|
3198
|
+
.data-explorer-page-container .data-explorer-result-container .data-explorer-selected-text {
|
|
3199
|
+
opacity: 0.8;
|
|
3200
|
+
font-weight: 600; }
|
|
3201
|
+
.data-explorer-page-container .data-explorer-result-container .data-explorer-query-suggestion-list {
|
|
3202
|
+
display: flex;
|
|
3203
|
+
flex-direction: column;
|
|
3204
|
+
flex-wrap: nowrap;
|
|
3205
|
+
height: 100%;
|
|
3206
|
+
padding-left: 8px; }
|
|
3207
|
+
.data-explorer-page-container .data-preview-scroll-component {
|
|
3208
|
+
flex: 1; }
|
|
3209
|
+
.data-explorer-page-container .data-explorer-card-placeholder {
|
|
3210
|
+
min-height: 90px;
|
|
3211
|
+
width: 100%;
|
|
3212
|
+
height: 100%;
|
|
3213
|
+
display: flex;
|
|
3214
|
+
justify-content: center;
|
|
3215
|
+
align-items: center; }
|
|
3216
|
+
.data-explorer-page-container .query-suggestion-list-scroll-component {
|
|
3217
|
+
color: var(--react-autoql-text-color-primary);
|
|
3218
|
+
flex: 1; }
|
|
3219
|
+
.data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item {
|
|
3220
|
+
cursor: pointer;
|
|
3221
|
+
position: relative;
|
|
3222
|
+
padding: 3px;
|
|
3223
|
+
color: var(--react-autoql-accent-color);
|
|
3224
|
+
display: flex;
|
|
3225
|
+
flex-direction: row;
|
|
3226
|
+
justify-content: space-between;
|
|
3227
|
+
flex-wrap: nowrap;
|
|
3228
|
+
align-items: center;
|
|
3229
|
+
font-weight: 600; }
|
|
3230
|
+
.data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item:hover {
|
|
3231
|
+
text-decoration: underline; }
|
|
3232
|
+
.data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .query-suggestion-text svg {
|
|
3233
|
+
stroke-width: 1px;
|
|
3234
|
+
stroke: currentColor; }
|
|
3235
|
+
.data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .animated-item {
|
|
3236
|
+
-webkit-animation: fadeIn 0.3s linear;
|
|
3237
|
+
animation: fadeIn 0.3s linear;
|
|
3238
|
+
-webkit-animation-fill-mode: both;
|
|
3239
|
+
animation-fill-mode: both; }
|
|
3240
|
+
.data-explorer-page-container .query-suggestion-list-scroll-component .query-tip-item .query-tips-result-placeholder {
|
|
3241
|
+
margin-top: 50px; }
|
|
3242
|
+
.data-explorer-page-container .chat-bar-clear-btn {
|
|
3243
|
+
position: absolute;
|
|
3244
|
+
display: flex;
|
|
3245
|
+
justify-content: flex-start;
|
|
3246
|
+
align-items: center;
|
|
3247
|
+
right: 0;
|
|
3248
|
+
top: 0;
|
|
3249
|
+
width: 50px;
|
|
3250
|
+
height: 100%;
|
|
3251
|
+
font-size: 20px;
|
|
3252
|
+
visibility: hidden;
|
|
3253
|
+
color: var(--react-autoql-text-color-placeholder);
|
|
3254
|
+
cursor: pointer; }
|
|
3255
|
+
.data-explorer-page-container .chat-bar-clear-btn:hover {
|
|
3256
|
+
color: var(--react-autoql-accent-color); }
|
|
3257
|
+
.data-explorer-page-container .chat-bar-clear-btn.visible {
|
|
3258
|
+
visibility: visible; }
|
|
3259
|
+
|
|
2862
3260
|
.filter-lock-menu {
|
|
2863
3261
|
z-index: 99999 !important;
|
|
2864
3262
|
transition: opacity 0.1s ease 0s !important;
|
|
@@ -3037,7 +3435,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3037
3435
|
.filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__section-title {
|
|
3038
3436
|
padding: 10px 0 0 10px;
|
|
3039
3437
|
font-size: 12px;
|
|
3040
|
-
color:
|
|
3438
|
+
color: var(--react-autoql-text-color-placeholder); }
|
|
3041
3439
|
|
|
3042
3440
|
@-webkit-keyframes highlightOut {
|
|
3043
3441
|
100% {
|
|
@@ -3087,8 +3485,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3087
3485
|
background: var(--react-autoql-background-color-secondary);
|
|
3088
3486
|
overflow: hidden;
|
|
3089
3487
|
border-radius: 4px;
|
|
3090
|
-
flex-direction: column;
|
|
3091
|
-
justify-content: stretch; }
|
|
3488
|
+
flex-direction: column; }
|
|
3092
3489
|
|
|
3093
3490
|
.react-autoql-drawer .chat-header-container {
|
|
3094
3491
|
display: flex;
|
|
@@ -3098,8 +3495,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3098
3495
|
background: var(--react-autoql-accent-color);
|
|
3099
3496
|
color: var(--react-autoql-accent-text-color);
|
|
3100
3497
|
box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.1);
|
|
3101
|
-
flex
|
|
3102
|
-
flex-shrink: 0;
|
|
3498
|
+
flex: 0 0 auto;
|
|
3103
3499
|
z-index: 1; }
|
|
3104
3500
|
|
|
3105
3501
|
.react-autoql-drawer .react-autoql-header-left-container {
|
|
@@ -3391,6 +3787,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3391
3787
|
.page-switcher-container .tab.react-autoql-explore-queries span.react-autoql-icon svg {
|
|
3392
3788
|
height: 22px;
|
|
3393
3789
|
width: 23px; }
|
|
3790
|
+
.page-switcher-container .tab .react-autoql-icon.data-search svg {
|
|
3791
|
+
stroke: var(--react-autoql-accent-color);
|
|
3792
|
+
stroke-width: 0.3px; }
|
|
3394
3793
|
.page-switcher-container.right {
|
|
3395
3794
|
border-top-left-radius: 5px;
|
|
3396
3795
|
border-bottom-left-radius: 5px;
|
|
@@ -3454,6 +3853,9 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3454
3853
|
.page-switcher-container.bottom .tab {
|
|
3455
3854
|
background: var(--react-autoql-background-color-secondary);
|
|
3456
3855
|
color: var(--react-autoql-text-color-primary); }
|
|
3856
|
+
.page-switcher-container.bottom .tab .react-autoql-icon.data-search svg {
|
|
3857
|
+
stroke: var(--react-autoql-background-color-secondary);
|
|
3858
|
+
stroke-width: 0.3px; }
|
|
3457
3859
|
|
|
3458
3860
|
.page-switcher-container .tab.active {
|
|
3459
3861
|
background: var(--react-autoql-background-color-secondary);
|
|
@@ -3462,11 +3864,17 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3462
3864
|
font-weight: bold;
|
|
3463
3865
|
position: relative;
|
|
3464
3866
|
z-index: 2; }
|
|
3867
|
+
.page-switcher-container .tab.active .react-autoql-icon.data-search svg {
|
|
3868
|
+
stroke: var(--react-autoql-background-color-secondary);
|
|
3869
|
+
stroke-width: 0.3px; }
|
|
3465
3870
|
|
|
3466
3871
|
.page-switcher-container.bottom .tab.active {
|
|
3467
3872
|
background: var(--react-autoql-accent-color);
|
|
3468
3873
|
color: var(--react-autoql-accent-text-color);
|
|
3469
3874
|
font-weight: bold; }
|
|
3875
|
+
.page-switcher-container.bottom .tab.active .react-autoql-icon.data-search svg {
|
|
3876
|
+
stroke: var(--react-autoql-accent-color);
|
|
3877
|
+
stroke-width: 0.3px; }
|
|
3470
3878
|
|
|
3471
3879
|
/* animations */
|
|
3472
3880
|
@-webkit-keyframes response-loading1 {
|
|
@@ -3919,7 +4327,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3919
4327
|
padding-bottom: 5px;
|
|
3920
4328
|
display: block;
|
|
3921
4329
|
height: unset;
|
|
3922
|
-
border-radius:
|
|
4330
|
+
border-radius: 15px;
|
|
3923
4331
|
font-family: inherit;
|
|
3924
4332
|
font-size: 15px;
|
|
3925
4333
|
font-weight: normal;
|
|
@@ -3950,7 +4358,7 @@ g.legendOrdinal .legendTitle tspan {
|
|
|
3950
4358
|
.dashboard-tile-input-container .react-autosuggest__section-title {
|
|
3951
4359
|
padding: 10px 0 0 10px;
|
|
3952
4360
|
font-size: 12px;
|
|
3953
|
-
color:
|
|
4361
|
+
color: var(--react-autoql-text-color-placeholder); }
|
|
3954
4362
|
|
|
3955
4363
|
/* Dragging placeholder styles */
|
|
3956
4364
|
.react-autoql-db-dragging-placeholder-container {
|