react-autoql 4.2.5 → 4.2.6

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.
@@ -903,7 +903,8 @@ g.legendOrdinal .legendTitle tspan {
903
903
  .react-autoql-response-content-container .query-output-error-message,
904
904
  .react-autoql-response-content-container .no-columns-error-message,
905
905
  .react-autoql-response-content-container .feedback-message {
906
- margin: auto; }
906
+ margin: auto;
907
+ text-align: center; }
907
908
 
908
909
  .react-autoql-response-content-container.table {
909
910
  max-height: 100vh !important;
@@ -2423,6 +2424,11 @@ g.legendOrdinal .legendTitle tspan {
2423
2424
  cursor: pointer; }
2424
2425
  .chat-single-message-container .query-more-btn:hover {
2425
2426
  opacity: 1; }
2427
+ .chat-single-message-container .react-autoql-response-content-container .query-output-error-message,
2428
+ .chat-single-message-container .react-autoql-response-content-container .no-columns-error-message,
2429
+ .chat-single-message-container .react-autoql-response-content-container .feedback-message {
2430
+ margin: 0;
2431
+ text-align: left; }
2426
2432
  .chat-single-message-container .spinner-loader:after {
2427
2433
  border: 1px solid var(--react-autoql-accent-color);
2428
2434
  border-color: var(--react-autoql-accent-color) transparent var(--react-autoql-accent-color) transparent; }
@@ -2629,84 +2635,6 @@ g.legendOrdinal .legendTitle tspan {
2629
2635
  transform-origin: 0% 100%; } }
2630
2636
 
2631
2637
 
2632
- .react-autoql-drawer {
2633
- font-family: var(--react-autoql-font-family), sans-serif;
2634
- line-height: 22px; }
2635
-
2636
- .react-autoql-drawer.disable-selection {
2637
- -webkit-user-select: none;
2638
- -moz-user-select: none;
2639
- -ms-user-select: none;
2640
- user-select: none; }
2641
-
2642
- .react-autoql-drawer .react-autoql-drawer-content-container {
2643
- width: 100%;
2644
- height: 100%;
2645
- display: flex;
2646
- background: var(--react-autoql-background-color-secondary);
2647
- overflow: hidden;
2648
- border-radius: 4px;
2649
- flex-direction: column;
2650
- justify-content: stretch; }
2651
-
2652
- .react-autoql-drawer .chat-header-container {
2653
- display: flex;
2654
- justify-content: space-between;
2655
- width: 100%;
2656
- height: 60px;
2657
- background: var(--react-autoql-accent-color);
2658
- box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.1);
2659
- flex-grow: 0;
2660
- flex-shrink: 0;
2661
- z-index: 1; }
2662
-
2663
- .react-autoql-drawer .react-autoql-header-left-container {
2664
- display: flex;
2665
- justify-content: left;
2666
- width: 100px;
2667
- margin-left: 10px; }
2668
-
2669
- .react-autoql-drawer .react-autoql-header-right-container {
2670
- display: flex;
2671
- justify-content: right;
2672
- width: 100px;
2673
- margin-right: 10px; }
2674
-
2675
- .react-autoql-drawer .react-autoql-header-center-container {
2676
- position: relative;
2677
- color: var(--react-autoql-accent-text-color);
2678
- line-height: 60px;
2679
- font-size: 18px;
2680
- letter-spacing: 0.05em;
2681
- font-weight: 600;
2682
- overflow: hidden;
2683
- text-overflow: ellipsis;
2684
- white-space: nowrap; }
2685
-
2686
- .react-autoql-drawer .header-title {
2687
- -webkit-animation: fadeIn 0.3s;
2688
- animation: fadeIn 0.3s; }
2689
-
2690
- .react-autoql-drawer .react-autoql-drawer-header-btn {
2691
- line-height: 1em;
2692
- font-weight: normal;
2693
- float: none;
2694
- opacity: 1; }
2695
- .react-autoql-drawer .react-autoql-drawer-header-btn.hidden {
2696
- display: none; }
2697
- .react-autoql-drawer .react-autoql-drawer-header-btn.close span.react-autoql-icon svg {
2698
- width: 27px;
2699
- height: 27px; }
2700
- .react-autoql-drawer .react-autoql-drawer-header-btn.screen-mode span.react-autoql-icon svg {
2701
- width: 22px;
2702
- height: 22px; }
2703
- .react-autoql-drawer .react-autoql-drawer-header-btn.clear-all span.react-autoql-icon svg {
2704
- width: 22px;
2705
- height: 22px; }
2706
- .react-autoql-drawer .react-autoql-drawer-header-btn.filter-locking span.react-autoql-icon svg {
2707
- width: 22px;
2708
- height: 22px; }
2709
-
2710
2638
  .react-autoql-drawer .chat-message-container {
2711
2639
  scroll-behavior: smooth !important;
2712
2640
  max-height: calc(100% - 140px);
@@ -2717,17 +2645,23 @@ g.legendOrdinal .legendTitle tspan {
2717
2645
  overflow-x: hidden !important;
2718
2646
  margin-bottom: 0 !important; }
2719
2647
 
2648
+ /* custom scrollbar */
2649
+ .react-autoql-drawer .chat-message-container > div:last-child {
2650
+ opacity: 0;
2651
+ transition: opacity 200ms ease; }
2652
+
2653
+ .react-autoql-drawer .chat-message-container:hover > div:last-child {
2654
+ opacity: 1; }
2655
+
2656
+ .react-autoql-drawer .response-loading-container {
2657
+ position: absolute;
2658
+ bottom: 45px;
2659
+ left: 20px; }
2660
+
2720
2661
  .react-autoql-drawer .chat-bar-container {
2721
2662
  position: relative;
2722
2663
  padding: 10px; }
2723
2664
 
2724
- .react-autoql-drawer .chat-drawer-chat-bar {
2725
- flex-shrink: 0;
2726
- flex-grow: 0;
2727
- height: 60px;
2728
- -webkit-animation: fadeIn 0.3s;
2729
- animation: fadeIn 0.3s; }
2730
-
2731
2665
  .react-autoql-drawer .watermark {
2732
2666
  color: var(--react-autoql-text-color-primary);
2733
2667
  text-align: center;
@@ -2736,102 +2670,615 @@ g.legendOrdinal .legendTitle tspan {
2736
2670
  width: calc(100% - 10px);
2737
2671
  font-size: 13px; }
2738
2672
 
2739
- .react-autoql-drawer .react-autoql-drawer:focus {
2740
- outline: none; }
2741
-
2742
- .react-autoql-drawer .chat-header-container button {
2743
- background: transparent;
2744
- border: none;
2745
- color: var(--react-autoql-accent-text-color);
2746
- margin: 10px 0px 10px 0px;
2747
- margin-right: 0;
2748
- font-size: 20px;
2749
- cursor: pointer;
2750
- outline: none !important; }
2751
-
2752
- .react-autoql-drawer .chat-header-container button:hover {
2753
- opacity: 0.7; }
2754
-
2755
- .react-autoql-drawer .chat-header-container button svg {
2756
- width: 35px;
2757
- height: 35px; }
2758
-
2759
- .topics-container {
2760
- margin: 5px 0; }
2761
-
2762
- .intro-qi-link {
2763
- cursor: pointer;
2764
- color: var(--react-autoql-accent-color); }
2765
-
2766
- /* custom scrollbar */
2767
- .react-autoql-drawer .chat-message-container > div:last-child {
2768
- opacity: 0;
2769
- transition: opacity 200ms ease; }
2770
-
2771
- .react-autoql-drawer .chat-message-container:hover > div:last-child {
2772
- opacity: 1; }
2773
-
2774
- /* rc-drawer */
2775
- .react-autoql-drawer .drawer-content {
2776
- background: white;
2777
- border-radius: 4px;
2778
- overflow: visible;
2779
- opacity: 1;
2780
- transition: opacity 0.3s ease; }
2781
-
2782
- .react-autoql-drawer.closed .drawer-content {
2783
- opacity: 0; }
2673
+ .react-autoql-drawer .chat-drawer-chat-bar {
2674
+ flex-shrink: 0;
2675
+ flex-grow: 0;
2676
+ height: 60px;
2677
+ -webkit-animation: fadeIn 0.3s;
2678
+ animation: fadeIn 0.3s; }
2784
2679
 
2785
- .react-autoql-drawer .drawer-handle {
2786
- transition: opacity 0.5s ease;
2680
+ .react-autoql-cascader {
2681
+ position: relative;
2682
+ white-space: nowrap;
2787
2683
  overflow: hidden;
2788
- width: 50px;
2789
- height: 50px;
2790
- border-radius: 50px !important;
2791
- font-size: 22px; }
2792
- .react-autoql-drawer .drawer-handle.default-logo {
2793
- background-color: var(--react-autoql-accent-color, #26a7df);
2794
- color: var(--react-autoql-accent-text-color); }
2795
- .react-autoql-drawer .drawer-handle.default-logo .react-autoql-bubbles-outlined {
2684
+ min-width: 300px; }
2685
+ .react-autoql-cascader .options-container {
2686
+ transition: max-width 0.3s ease;
2687
+ display: inline-block;
2688
+ vertical-align: top;
2689
+ padding: 0 10px;
2690
+ margin: 10px 0;
2691
+ width: 100%;
2692
+ max-width: calc(100% - 20px);
2693
+ white-space: pre-wrap; }
2694
+ .react-autoql-cascader .options-container.hidden {
2695
+ max-width: 0; }
2696
+ .react-autoql-cascader .options-container.hidden span {
2697
+ white-space: nowrap; }
2698
+ .react-autoql-cascader .options-container.hidden .option {
2699
+ opacity: 0;
2700
+ pointer-events: none; }
2701
+ .react-autoql-cascader .options-container .options-title {
2702
+ padding: 4px;
2703
+ padding-left: 10px;
2704
+ font-weight: 600; }
2705
+ .react-autoql-cascader .options-container .cascader-back-arrow {
2796
2706
  position: absolute;
2797
- vertical-align: top;
2798
- top: 11px;
2799
- left: 12px; }
2800
- .react-autoql-drawer .drawer-handle.default-logo .react-autoql-bubbles-outlined svg {
2801
- position: absolute;
2802
- width: 26px;
2803
- height: 26px; }
2804
-
2805
- .react-autoql-drawer.drawer-right .drawer-handle {
2806
- left: -70px !important; }
2807
-
2808
- .react-autoql-drawer.drawer-left .drawer-handle {
2809
- right: -60px !important; }
2810
-
2811
- .react-autoql-drawer.drawer-top .drawer-handle {
2812
- bottom: -60px !important; }
2813
-
2814
- .react-autoql-drawer.drawer-bottom .drawer-handle {
2815
- top: -60px !important; }
2816
-
2817
- .react-autoql-drawer .drawer-handle.hide {
2818
- opacity: 0;
2819
- visibility: hidden; }
2820
-
2821
- .react-autoql-drawer .drawer-handle-icon,
2822
- .react-autoql-drawer .drawer-handle-icon::before,
2823
- .react-autoql-drawer .drawer-handle-icon::after {
2824
- background: var(--react-autoql-text-color-primary); }
2825
-
2826
- .react-autoql-drawer .drawer-bottom .drawer-content-wrapper,
2827
- .react-autoql-drawer .drawer-top .drawer-content-wrapper {
2828
- left: 0; }
2707
+ cursor: pointer;
2708
+ top: 15px;
2709
+ left: 0; }
2710
+ .react-autoql-cascader .options-container .cascader-back-arrow:hover {
2711
+ opacity: 0.8; }
2712
+ .react-autoql-cascader .options-container .option {
2713
+ cursor: pointer;
2714
+ padding: 4px;
2715
+ display: flex;
2716
+ justify-content: space-between;
2717
+ border-radius: 2px;
2718
+ padding-left: 10px; }
2719
+ .react-autoql-cascader .options-container .option .option-arrow {
2720
+ opacity: 0.7; }
2721
+ .react-autoql-cascader .options-container .option .option-execute-icon {
2722
+ opacity: 0;
2723
+ color: #fff;
2724
+ font-size: 16px;
2725
+ vertical-align: middle; }
2726
+ .react-autoql-cascader .options-container .option:hover, .react-autoql-cascader .options-container .option.active {
2727
+ background-color: var(--react-autoql-accent-color, #26a7df);
2728
+ color: #fff; }
2729
+ .react-autoql-cascader .options-container .option:hover .option-execute-icon, .react-autoql-cascader .options-container .option.active .option-execute-icon {
2730
+ opacity: 1; }
2731
+ .react-autoql-cascader .options-container:not(:last-child) {
2732
+ border-right: 1px solid #d3d3d352; }
2829
2733
 
2830
- .react-autoql-drawer .drawer-content-wrapper {
2831
- background: transparent; }
2734
+ .query-tips-page-container {
2735
+ height: 100%;
2736
+ padding: 10px; }
2737
+ .query-tips-page-container .chat-bar-input-icon {
2738
+ top: 20px;
2739
+ left: 26px; }
2740
+ .query-tips-page-container .react-autoql-chatbar-input.left-padding {
2741
+ padding-left: 46px; }
2832
2742
 
2833
- .react-autoql-drawer.drawer-right .drawer-content-wrapper,
2834
- .react-autoql-drawer.drawer-left .drawer-content-wrapper {
2743
+ .query-tips-result-container {
2744
+ color: var(--react-autoql-text-color-primary);
2745
+ padding: 0px 20px;
2746
+ text-align: center;
2747
+ max-width: 550px;
2748
+ margin: 0 auto; }
2749
+ .query-tips-result-container .query-tip-list-container {
2750
+ margin-bottom: 20px; }
2751
+ .query-tips-result-container .animated-item {
2752
+ -webkit-animation: fadeIn 0.3s linear;
2753
+ animation: fadeIn 0.3s linear;
2754
+ -webkit-animation-fill-mode: both;
2755
+ animation-fill-mode: both; }
2756
+ .query-tips-result-container .query-tip-item {
2757
+ position: relative;
2758
+ padding: 13px;
2759
+ border-top: 1px solid rgba(0, 0, 0, 0.04);
2760
+ cursor: pointer; }
2761
+ .query-tips-result-container .query-tip-item:first-child {
2762
+ border-top: none; }
2763
+ .query-tips-result-container .query-tip-item .execute-btn {
2764
+ position: absolute;
2765
+ right: 10px;
2766
+ top: 4px;
2767
+ font-size: 20px;
2768
+ visibility: hidden;
2769
+ opacity: 0; }
2770
+ .query-tips-result-container .query-tip-item:hover {
2771
+ font-weight: bold;
2772
+ color: var(--react-autoql-accent-color); }
2773
+ .query-tips-result-container .query-tip-item:hover .execute-btn {
2774
+ visibility: visible;
2775
+ opacity: 1; }
2776
+ .query-tips-result-container .query-tips-result-placeholder {
2777
+ margin-top: 50px;
2778
+ opacity: 0.6; }
2779
+
2780
+ .chat-bar-loading-spinner {
2781
+ position: absolute;
2782
+ right: 20px;
2783
+ top: 22px; }
2784
+
2785
+ #react-paginate {
2786
+ position: relative;
2787
+ background: transparent;
2788
+ padding: 8px; }
2789
+ #react-paginate ul {
2790
+ display: inline-block;
2791
+ padding-left: 0;
2792
+ margin-bottom: 0; }
2793
+ #react-paginate li {
2794
+ display: inline-block;
2795
+ color: var(--react-autoql-text-color-primary);
2796
+ cursor: pointer;
2797
+ margin-right: 3px;
2798
+ border-radius: 5px;
2799
+ margin-bottom: 0;
2800
+ -webkit-user-select: none;
2801
+ -moz-user-select: none;
2802
+ -ms-user-select: none;
2803
+ user-select: none; }
2804
+ #react-paginate li:hover {
2805
+ opacity: 0.7;
2806
+ border-radius: 50%; }
2807
+ #react-paginate li a {
2808
+ display: inline-block;
2809
+ color: var(--react-autoql-text-color-primary);
2810
+ outline: none;
2811
+ width: 28px;
2812
+ height: 28px;
2813
+ line-height: 28px; }
2814
+ #react-paginate li.selected {
2815
+ background: var(--react-autoql-accent-color);
2816
+ border-radius: 50%;
2817
+ outline: none; }
2818
+ #react-paginate li.selected a {
2819
+ color: var(--react-autoql-accent-text-color); }
2820
+ #react-paginate .pagination-next.disabled,
2821
+ #react-paginate .pagination-previous.disabled {
2822
+ opacity: 0.5;
2823
+ pointer-events: none; }
2824
+ #react-paginate .pagination-previous,
2825
+ #react-paginate .pagination-next {
2826
+ font-size: 18px; }
2827
+ #react-paginate .pagination-previous a,
2828
+ #react-paginate .pagination-next a {
2829
+ color: var(--react-autoql-text-color-primary); }
2830
+
2831
+ .animated-item:nth-child(1) {
2832
+ -webkit-animation-delay: 0.08s;
2833
+ animation-delay: 0.08s; }
2834
+
2835
+ .animated-item:nth-child(2) {
2836
+ -webkit-animation-delay: 0.16s;
2837
+ animation-delay: 0.16s; }
2838
+
2839
+ .animated-item:nth-child(3) {
2840
+ -webkit-animation-delay: 0.24s;
2841
+ animation-delay: 0.24s; }
2842
+
2843
+ .animated-item:nth-child(4) {
2844
+ -webkit-animation-delay: 0.32s;
2845
+ animation-delay: 0.32s; }
2846
+
2847
+ .animated-item:nth-child(5) {
2848
+ -webkit-animation-delay: 0.4s;
2849
+ animation-delay: 0.4s; }
2850
+
2851
+ .animated-item:nth-child(6) {
2852
+ -webkit-animation-delay: 0.48s;
2853
+ animation-delay: 0.48s; }
2854
+
2855
+ .animated-item:nth-child(7) {
2856
+ -webkit-animation-delay: 0.56s;
2857
+ animation-delay: 0.56s; }
2858
+
2859
+ .animated-item:nth-child(8) {
2860
+ -webkit-animation-delay: 0.64s;
2861
+ animation-delay: 0.64s; }
2862
+
2863
+ .animated-item:nth-child(9) {
2864
+ -webkit-animation-delay: 0.72s;
2865
+ animation-delay: 0.72s; }
2866
+
2867
+ .animated-item:nth-child(10) {
2868
+ -webkit-animation-delay: 0.8s;
2869
+ animation-delay: 0.8s; }
2870
+
2871
+ .animated-item:nth-child(11) {
2872
+ -webkit-animation-delay: 0.88s;
2873
+ animation-delay: 0.88s; }
2874
+
2875
+ .animated-item:nth-child(12) {
2876
+ -webkit-animation-delay: 0.96s;
2877
+ animation-delay: 0.96s; }
2878
+
2879
+ .animated-item:nth-child(13) {
2880
+ -webkit-animation-delay: 1.04s;
2881
+ animation-delay: 1.04s; }
2882
+
2883
+ .animated-item:nth-child(14) {
2884
+ -webkit-animation-delay: 1.12s;
2885
+ animation-delay: 1.12s; }
2886
+
2887
+ .animated-item:nth-child(15) {
2888
+ -webkit-animation-delay: 1.2s;
2889
+ animation-delay: 1.2s; }
2890
+
2891
+ @-webkit-keyframes fadeIn {
2892
+ 0% {
2893
+ opacity: 0;
2894
+ top: 100px; }
2895
+ 75% {
2896
+ opacity: 0.5;
2897
+ top: 0px; }
2898
+ 100% {
2899
+ opacity: 1; } }
2900
+
2901
+ .filter-lock-menu {
2902
+ z-index: 99999 !important;
2903
+ transition: opacity 0.1s ease 0s !important;
2904
+ border: 1px solid #ababab52;
2905
+ border-radius: 4px;
2906
+ box-shadow: 0px 0 8px rgba(0, 0, 0, 0.15);
2907
+ opacity: 1;
2908
+ min-width: 500px;
2909
+ max-width: 70vw;
2910
+ min-height: 350px;
2911
+ max-height: 90vh;
2912
+ background: var(--react-autoql-background-color-primary);
2913
+ color: var(--react-autoql-text-color-primary);
2914
+ overflow-y: auto !important; }
2915
+ .filter-lock-menu .filter-lock-toast-container {
2916
+ top: 0;
2917
+ position: absolute; }
2918
+ .filter-lock-menu .filter-lock-toast-container .Toastify__toast {
2919
+ min-height: 48px; }
2920
+ .filter-lock-menu .filter-lock-toast-container .Toastify__toast-body {
2921
+ justify-content: center; }
2922
+ .filter-lock-menu .filter-lock-toast-container .Toastify__toast-body > div:last-child {
2923
+ flex: unset; }
2924
+ .filter-lock-menu .include-exclude-toggle-group {
2925
+ height: 23px;
2926
+ font-size: 12px;
2927
+ font-weight: 200; }
2928
+ .filter-lock-menu .include-exclude-toggle-group .react-autoql-radio-btn.active {
2929
+ background-color: var(--react-autoql-border-color); }
2930
+ .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 {
2931
+ color: var(--react-autoql-accent-color);
2932
+ border-color: var(--react-autoql-accent-color); }
2933
+ .filter-lock-menu .include-exclude-toggle-group :nth-child(2).react-autoql-radio-btn:hover, .filter-lock-menu .include-exclude-toggle-group :nth-child(2).react-autoql-radio-btn.active {
2934
+ color: var(--react-autoql-danger-color);
2935
+ border-color: var(--react-autoql-danger-color); }
2936
+
2937
+ .filter-lock-menu-content {
2938
+ padding: 15px 20px;
2939
+ display: flex;
2940
+ flex-direction: column;
2941
+ justify-content: stretch;
2942
+ height: 100%; }
2943
+ .filter-lock-menu-content.closed {
2944
+ opacity: 0; }
2945
+ .filter-lock-menu-content h3 {
2946
+ margin-top: 3px;
2947
+ margin-bottom: 15px;
2948
+ color: var(--react-autoql-text-color-primary); }
2949
+ .filter-lock-menu-content h4 {
2950
+ margin-top: 3px;
2951
+ margin-bottom: 5px;
2952
+ color: var(--react-autoql-text-color-primary);
2953
+ display: inline-flex; }
2954
+ .filter-lock-menu-content .react-autoql-condition-list-loading-container,
2955
+ .filter-lock-menu-content .react-autoql-empty-condition-list,
2956
+ .filter-lock-menu-content .react-autoql-filter-list-container {
2957
+ flex: 1 1 245px; }
2958
+ .filter-lock-menu-content .filter-lock-menu-header {
2959
+ flex: 0;
2960
+ width: 100%;
2961
+ display: flex;
2962
+ align-items: flex-start;
2963
+ justify-content: space-between; }
2964
+ .filter-lock-menu-content .filter-lock-menu-header .filter-locking-close-btn {
2965
+ border: none;
2966
+ margin: 0;
2967
+ padding: 0;
2968
+ font-size: 20px; }
2969
+ .filter-lock-menu-content .filter-lock-menu-footer {
2970
+ width: 100%;
2971
+ display: flex;
2972
+ justify-content: flex-end; }
2973
+ .filter-lock-menu-content .react-autoql-empty-condition-list {
2974
+ opacity: 0.8;
2975
+ width: 100%;
2976
+ text-align: center;
2977
+ padding-top: 70px; }
2978
+ .filter-lock-menu-content .react-autoql-filter-list-container {
2979
+ margin: 10px 0; }
2980
+ .filter-lock-menu-content .react-autoql-filter-list-container .flex {
2981
+ width: 100%;
2982
+ display: flex;
2983
+ flex-direction: row;
2984
+ justify-content: space-between;
2985
+ flex-wrap: nowrap;
2986
+ margin-bottom: 4px; }
2987
+ .filter-lock-menu-content .react-autoql-filter-list-container .flex .persist-toggle-column,
2988
+ .filter-lock-menu-content .react-autoql-filter-list-container .flex .react-autoql-condition-table-list-item {
2989
+ margin-right: 25px;
2990
+ max-width: 350px; }
2991
+ .filter-lock-menu-content .react-autoql-filter-list-container .flex .react-autoql-remove-filter-icon {
2992
+ cursor: pointer; }
2993
+ .filter-lock-menu-content .react-autoql-filter-list-container .flex .react-autoql-remove-filter-icon:hover {
2994
+ color: var(--react-autoql-danger-color); }
2995
+ .filter-lock-menu-content .react-autoql-filter-list-container .filter-lock-category-title {
2996
+ padding-right: 10px;
2997
+ padding-top: 1px;
2998
+ max-width: 195px;
2999
+ overflow: hidden; }
3000
+ .filter-lock-menu-content .react-autoql-filter-list-container .persist-toggle-column .react-autoql-icon {
3001
+ margin-left: 3px; }
3002
+ .filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-highlight-row {
3003
+ background-color: var(--react-autoql-accent-color);
3004
+ color: white;
3005
+ -webkit-animation-name: highlightIn, highlightOut;
3006
+ animation-name: highlightIn, highlightOut;
3007
+ -webkit-animation-duration: 300ms, 300ms;
3008
+ animation-duration: 300ms, 300ms;
3009
+ -webkit-animation-delay: 0ms, 1000ms;
3010
+ animation-delay: 0ms, 1000ms;
3011
+ -webkit-animation-timing-function: ease-in, ease-out;
3012
+ animation-timing-function: ease-in, ease-out;
3013
+ -webkit-animation-iteration-count: 1, 1;
3014
+ animation-iteration-count: 1, 1; }
3015
+ .filter-lock-menu-content .react-autoql-condition-locking-input {
3016
+ padding: 5px;
3017
+ padding-left: 20px;
3018
+ height: 32px;
3019
+ box-sizing: border-box;
3020
+ border-radius: 24px;
3021
+ font-size: 12px;
3022
+ font-family: inherit;
3023
+ letter-spacing: 0.04em;
3024
+ outline: none !important;
3025
+ width: 100%;
3026
+ font-family: inherit;
3027
+ border: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.1));
3028
+ background: var(--react-autoql-background-color-primary);
3029
+ color: var(--react-autoql-text-color-primary); }
3030
+ .filter-lock-menu-content .react-autoql-condition-locking-input:hover {
3031
+ box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1); }
3032
+ .filter-lock-menu-content .react-autoql-condition-locking-input::-moz-placeholder {
3033
+ color: rgba(var(--react-autoql-text-color-placeholder), 2) !important;
3034
+ opacity: 0.5; }
3035
+ .filter-lock-menu-content .react-autoql-condition-locking-input:-ms-input-placeholder {
3036
+ color: rgba(var(--react-autoql-text-color-placeholder), 2) !important;
3037
+ opacity: 0.5; }
3038
+ .filter-lock-menu-content .react-autoql-condition-locking-input::placeholder {
3039
+ color: rgba(var(--react-autoql-text-color-placeholder), 2) !important;
3040
+ opacity: 0.5; }
3041
+ .filter-lock-menu-content .react-autosuggest__container--open {
3042
+ position: relative; }
3043
+ .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open {
3044
+ background-color: var(--react-autoql-background-color-primary);
3045
+ border: 1px solid var(--react-autoql-border-color);
3046
+ color: var(--react-autoql-text-color-primary);
3047
+ position: absolute;
3048
+ padding: 10px 0;
3049
+ display: block;
3050
+ font-family: inherit;
3051
+ font-size: 15px;
3052
+ font-weight: normal;
3053
+ z-index: 2;
3054
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13);
3055
+ text-align: left;
3056
+ border-radius: 4px;
3057
+ height: auto;
3058
+ width: 100%;
3059
+ max-height: 200px;
3060
+ overflow-y: scroll !important; }
3061
+ .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open ul.filter-lock-suggestion-item {
3062
+ cursor: pointer;
3063
+ width: 100%;
3064
+ columns: 2;
3065
+ -webkit-columns: 2;
3066
+ list-style: none;
3067
+ -moz-columns: 2;
3068
+ letter-spacing: 0.05em;
3069
+ line-height: 22.5px;
3070
+ padding: 0px 20px 3px 20px; }
3071
+ .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__suggestion {
3072
+ color: var(--react-autoql-text-color-primary); }
3073
+ .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__suggestions-list {
3074
+ margin: 0;
3075
+ padding: 0;
3076
+ list-style-type: none; }
3077
+ .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__suggestion--highlighted {
3078
+ background-color: rgba(0, 0, 0, 0.1) !important; }
3079
+ .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__section-title {
3080
+ padding: 10px 0 0 10px;
3081
+ font-size: 12px;
3082
+ color: #777; }
3083
+
3084
+ @-webkit-keyframes highlightOut {
3085
+ 100% {
3086
+ background-color: var(--react-autoql-background-color-primary);
3087
+ color: var(--react-autoql-text-color-primary); }
3088
+ 0% {
3089
+ background-color: var(--react-autoql-accent-color);
3090
+ color: white; } }
3091
+
3092
+ @keyframes highlightOut {
3093
+ 100% {
3094
+ background-color: var(--react-autoql-background-color-primary);
3095
+ color: var(--react-autoql-text-color-primary); }
3096
+ 0% {
3097
+ background-color: var(--react-autoql-accent-color);
3098
+ color: white; } }
3099
+
3100
+ @-webkit-keyframes highlightIn {
3101
+ 100% {
3102
+ background-color: var(--react-autoql-accent-color);
3103
+ color: white; }
3104
+ 0% {
3105
+ background-color: var(--react-autoql-background-color-primary);
3106
+ color: var(--react-autoql-text-color-primary); } }
3107
+
3108
+ @keyframes highlightIn {
3109
+ 100% {
3110
+ background-color: var(--react-autoql-accent-color);
3111
+ color: white; }
3112
+ 0% {
3113
+ background-color: var(--react-autoql-background-color-primary);
3114
+ color: var(--react-autoql-text-color-primary); } }
3115
+
3116
+ .react-autoql-drawer {
3117
+ font-family: var(--react-autoql-font-family), sans-serif;
3118
+ line-height: 22px; }
3119
+
3120
+ .react-autoql-drawer.disable-selection {
3121
+ -webkit-user-select: none;
3122
+ -moz-user-select: none;
3123
+ -ms-user-select: none;
3124
+ user-select: none; }
3125
+
3126
+ .react-autoql-drawer .react-autoql-drawer-content-container {
3127
+ width: 100%;
3128
+ height: 100%;
3129
+ display: flex;
3130
+ background: var(--react-autoql-background-color-secondary);
3131
+ overflow: hidden;
3132
+ border-radius: 4px;
3133
+ flex-direction: column;
3134
+ justify-content: stretch; }
3135
+
3136
+ .react-autoql-drawer .chat-header-container {
3137
+ display: flex;
3138
+ justify-content: space-between;
3139
+ width: 100%;
3140
+ height: 60px;
3141
+ background: var(--react-autoql-accent-color);
3142
+ box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.1);
3143
+ flex-grow: 0;
3144
+ flex-shrink: 0;
3145
+ z-index: 1; }
3146
+
3147
+ .react-autoql-drawer .react-autoql-header-left-container {
3148
+ display: flex;
3149
+ justify-content: left;
3150
+ width: 100px;
3151
+ margin-left: 10px; }
3152
+
3153
+ .react-autoql-drawer .react-autoql-header-right-container {
3154
+ display: flex;
3155
+ justify-content: right;
3156
+ width: 100px;
3157
+ margin-right: 10px; }
3158
+
3159
+ .react-autoql-drawer .react-autoql-header-center-container {
3160
+ position: relative;
3161
+ color: var(--react-autoql-accent-text-color);
3162
+ line-height: 60px;
3163
+ font-size: 18px;
3164
+ letter-spacing: 0.05em;
3165
+ font-weight: 600;
3166
+ overflow: hidden;
3167
+ text-overflow: ellipsis;
3168
+ white-space: nowrap; }
3169
+
3170
+ .react-autoql-drawer .header-title {
3171
+ -webkit-animation: fadeIn 0.3s;
3172
+ animation: fadeIn 0.3s; }
3173
+
3174
+ .react-autoql-drawer .react-autoql-drawer-header-btn {
3175
+ line-height: 1em;
3176
+ font-weight: normal;
3177
+ float: none;
3178
+ opacity: 1; }
3179
+ .react-autoql-drawer .react-autoql-drawer-header-btn.hidden {
3180
+ display: none; }
3181
+ .react-autoql-drawer .react-autoql-drawer-header-btn.close span.react-autoql-icon svg {
3182
+ width: 27px;
3183
+ height: 27px; }
3184
+ .react-autoql-drawer .react-autoql-drawer-header-btn.screen-mode span.react-autoql-icon svg {
3185
+ width: 22px;
3186
+ height: 22px; }
3187
+ .react-autoql-drawer .react-autoql-drawer-header-btn.clear-all span.react-autoql-icon svg {
3188
+ width: 22px;
3189
+ height: 22px; }
3190
+ .react-autoql-drawer .react-autoql-drawer-header-btn.filter-locking span.react-autoql-icon svg {
3191
+ width: 22px;
3192
+ height: 22px; }
3193
+
3194
+ .react-autoql-drawer .react-autoql-drawer:focus {
3195
+ outline: none; }
3196
+
3197
+ .react-autoql-drawer .chat-header-container button {
3198
+ background: transparent;
3199
+ border: none;
3200
+ color: var(--react-autoql-accent-text-color);
3201
+ margin: 10px 0px 10px 0px;
3202
+ margin-right: 0;
3203
+ font-size: 20px;
3204
+ cursor: pointer;
3205
+ outline: none !important; }
3206
+
3207
+ .react-autoql-drawer .chat-header-container button:hover {
3208
+ opacity: 0.7; }
3209
+
3210
+ .react-autoql-drawer .chat-header-container button svg {
3211
+ width: 35px;
3212
+ height: 35px; }
3213
+
3214
+ .topics-container {
3215
+ margin: 5px 0; }
3216
+
3217
+ .intro-qi-link {
3218
+ cursor: pointer;
3219
+ color: var(--react-autoql-accent-color); }
3220
+
3221
+ /* rc-drawer */
3222
+ .react-autoql-drawer .drawer-content {
3223
+ background: white;
3224
+ border-radius: 4px;
3225
+ overflow: visible;
3226
+ opacity: 1;
3227
+ transition: opacity 0.3s ease; }
3228
+
3229
+ .react-autoql-drawer.closed .drawer-content {
3230
+ opacity: 0; }
3231
+
3232
+ .react-autoql-drawer .drawer-handle {
3233
+ transition: opacity 0.5s ease;
3234
+ overflow: hidden;
3235
+ width: 50px;
3236
+ height: 50px;
3237
+ border-radius: 50px !important;
3238
+ font-size: 22px; }
3239
+ .react-autoql-drawer .drawer-handle.default-logo {
3240
+ background-color: var(--react-autoql-accent-color, #26a7df);
3241
+ color: var(--react-autoql-accent-text-color); }
3242
+ .react-autoql-drawer .drawer-handle.default-logo .react-autoql-bubbles-outlined {
3243
+ position: absolute;
3244
+ vertical-align: top;
3245
+ top: 11px;
3246
+ left: 12px; }
3247
+ .react-autoql-drawer .drawer-handle.default-logo .react-autoql-bubbles-outlined svg {
3248
+ position: absolute;
3249
+ width: 26px;
3250
+ height: 26px; }
3251
+
3252
+ .react-autoql-drawer.drawer-right .drawer-handle {
3253
+ left: -70px !important; }
3254
+
3255
+ .react-autoql-drawer.drawer-left .drawer-handle {
3256
+ right: -60px !important; }
3257
+
3258
+ .react-autoql-drawer.drawer-top .drawer-handle {
3259
+ bottom: -60px !important; }
3260
+
3261
+ .react-autoql-drawer.drawer-bottom .drawer-handle {
3262
+ top: -60px !important; }
3263
+
3264
+ .react-autoql-drawer .drawer-handle.hide {
3265
+ opacity: 0;
3266
+ visibility: hidden; }
3267
+
3268
+ .react-autoql-drawer .drawer-handle-icon,
3269
+ .react-autoql-drawer .drawer-handle-icon::before,
3270
+ .react-autoql-drawer .drawer-handle-icon::after {
3271
+ background: var(--react-autoql-text-color-primary); }
3272
+
3273
+ .react-autoql-drawer .drawer-bottom .drawer-content-wrapper,
3274
+ .react-autoql-drawer .drawer-top .drawer-content-wrapper {
3275
+ left: 0; }
3276
+
3277
+ .react-autoql-drawer .drawer-content-wrapper {
3278
+ background: transparent; }
3279
+
3280
+ .react-autoql-drawer.drawer-right .drawer-content-wrapper,
3281
+ .react-autoql-drawer.drawer-left .drawer-content-wrapper {
2835
3282
  max-width: calc(100vw - 45px) !important;
2836
3283
  min-width: 400px !important; }
2837
3284
 
@@ -2868,11 +3315,6 @@ g.legendOrdinal .legendTitle tspan {
2868
3315
  width: 100vw;
2869
3316
  cursor: ns-resize; }
2870
3317
 
2871
- .react-autoql-drawer .response-loading-container {
2872
- position: absolute;
2873
- bottom: 45px;
2874
- left: 20px; }
2875
-
2876
3318
  /* Tooltips */
2877
3319
  .react-autoql-drawer-tooltip {
2878
3320
  font-family: var(--react-autoql-font-family), sans-serif;
@@ -3098,495 +3540,59 @@ g.legendOrdinal .legendTitle tspan {
3098
3540
  0% {
3099
3541
  transform: translate(0, 0); }
3100
3542
  100% {
3101
- transform: translate(19px, 0); } }
3102
-
3103
- @-webkit-keyframes scale-up-center {
3104
- 0% {
3105
- transform: scale(0); }
3106
- 100% {
3107
- transform: scale(1); } }
3108
-
3109
- @keyframes scale-up-center {
3110
- 0% {
3111
- transform: scale(0); }
3112
- 100% {
3113
- transform: scale(1); } }
3114
-
3115
- @-webkit-keyframes fadeIn {
3116
- 0% {
3117
- opacity: 0; }
3118
- 100% {
3119
- opacity: 1; } }
3120
-
3121
- @keyframes fadeIn {
3122
- 0% {
3123
- opacity: 0; }
3124
- 100% {
3125
- opacity: 1; } }
3126
-
3127
- @-webkit-keyframes slideDown {
3128
- 0% {
3129
- transform: translateY(-100%); }
3130
- 100% {
3131
- transform: translateY(0%); } }
3132
-
3133
- @keyframes slideDown {
3134
- 0% {
3135
- transform: translateY(-100%); }
3136
- 100% {
3137
- transform: translateY(0%); } }
3138
-
3139
- @-webkit-keyframes snackbarFadeout {
3140
- from {
3141
- top: 60px;
3142
- opacity: 1; }
3143
- to {
3144
- top: 30px;
3145
- opacity: 0; } }
3146
-
3147
- @keyframes snackbarFadeout {
3148
- from {
3149
- top: 60px;
3150
- opacity: 1; }
3151
- to {
3152
- top: 30px;
3153
- opacity: 0; } }
3154
-
3155
- .react-autoql-cascader {
3156
- position: relative;
3157
- white-space: nowrap;
3158
- overflow: hidden;
3159
- min-width: 300px; }
3160
- .react-autoql-cascader .options-container {
3161
- transition: max-width 0.3s ease;
3162
- display: inline-block;
3163
- vertical-align: top;
3164
- padding: 0 10px;
3165
- margin: 10px 0;
3166
- width: 100%;
3167
- max-width: calc(100% - 20px);
3168
- white-space: pre-wrap; }
3169
- .react-autoql-cascader .options-container.hidden {
3170
- max-width: 0; }
3171
- .react-autoql-cascader .options-container.hidden span {
3172
- white-space: nowrap; }
3173
- .react-autoql-cascader .options-container.hidden .option {
3174
- opacity: 0;
3175
- pointer-events: none; }
3176
- .react-autoql-cascader .options-container .options-title {
3177
- padding: 4px;
3178
- padding-left: 10px;
3179
- font-weight: 600; }
3180
- .react-autoql-cascader .options-container .cascader-back-arrow {
3181
- position: absolute;
3182
- cursor: pointer;
3183
- top: 15px;
3184
- left: 0; }
3185
- .react-autoql-cascader .options-container .cascader-back-arrow:hover {
3186
- opacity: 0.8; }
3187
- .react-autoql-cascader .options-container .option {
3188
- cursor: pointer;
3189
- padding: 4px;
3190
- display: flex;
3191
- justify-content: space-between;
3192
- border-radius: 2px;
3193
- padding-left: 10px; }
3194
- .react-autoql-cascader .options-container .option .option-arrow {
3195
- opacity: 0.7; }
3196
- .react-autoql-cascader .options-container .option .option-execute-icon {
3197
- opacity: 0;
3198
- color: #fff;
3199
- font-size: 16px;
3200
- vertical-align: middle; }
3201
- .react-autoql-cascader .options-container .option:hover, .react-autoql-cascader .options-container .option.active {
3202
- background-color: var(--react-autoql-accent-color, #26a7df);
3203
- color: #fff; }
3204
- .react-autoql-cascader .options-container .option:hover .option-execute-icon, .react-autoql-cascader .options-container .option.active .option-execute-icon {
3205
- opacity: 1; }
3206
- .react-autoql-cascader .options-container:not(:last-child) {
3207
- border-right: 1px solid #d3d3d352; }
3208
-
3209
- .query-tips-page-container {
3210
- height: 100%;
3211
- padding: 10px; }
3212
- .query-tips-page-container .chat-bar-input-icon {
3213
- top: 20px;
3214
- left: 26px; }
3215
- .query-tips-page-container .react-autoql-chatbar-input.left-padding {
3216
- padding-left: 46px; }
3217
-
3218
- .query-tips-result-container {
3219
- color: var(--react-autoql-text-color-primary);
3220
- padding: 0px 20px;
3221
- text-align: center;
3222
- max-width: 550px;
3223
- margin: 0 auto; }
3224
- .query-tips-result-container .query-tip-list-container {
3225
- margin-bottom: 20px; }
3226
- .query-tips-result-container .animated-item {
3227
- -webkit-animation: fadeIn 0.3s linear;
3228
- animation: fadeIn 0.3s linear;
3229
- -webkit-animation-fill-mode: both;
3230
- animation-fill-mode: both; }
3231
- .query-tips-result-container .query-tip-item {
3232
- position: relative;
3233
- padding: 13px;
3234
- border-top: 1px solid rgba(0, 0, 0, 0.04);
3235
- cursor: pointer; }
3236
- .query-tips-result-container .query-tip-item:first-child {
3237
- border-top: none; }
3238
- .query-tips-result-container .query-tip-item .execute-btn {
3239
- position: absolute;
3240
- right: 10px;
3241
- top: 4px;
3242
- font-size: 20px;
3243
- visibility: hidden;
3244
- opacity: 0; }
3245
- .query-tips-result-container .query-tip-item:hover {
3246
- font-weight: bold;
3247
- color: var(--react-autoql-accent-color); }
3248
- .query-tips-result-container .query-tip-item:hover .execute-btn {
3249
- visibility: visible;
3250
- opacity: 1; }
3251
- .query-tips-result-container .query-tips-result-placeholder {
3252
- margin-top: 50px;
3253
- opacity: 0.6; }
3254
-
3255
- .chat-bar-loading-spinner {
3256
- position: absolute;
3257
- right: 20px;
3258
- top: 22px; }
3259
-
3260
- #react-paginate {
3261
- position: relative;
3262
- background: transparent;
3263
- padding: 8px; }
3264
- #react-paginate ul {
3265
- display: inline-block;
3266
- padding-left: 0;
3267
- margin-bottom: 0; }
3268
- #react-paginate li {
3269
- display: inline-block;
3270
- color: var(--react-autoql-text-color-primary);
3271
- cursor: pointer;
3272
- margin-right: 3px;
3273
- border-radius: 5px;
3274
- margin-bottom: 0;
3275
- -webkit-user-select: none;
3276
- -moz-user-select: none;
3277
- -ms-user-select: none;
3278
- user-select: none; }
3279
- #react-paginate li:hover {
3280
- opacity: 0.7;
3281
- border-radius: 50%; }
3282
- #react-paginate li a {
3283
- display: inline-block;
3284
- color: var(--react-autoql-text-color-primary);
3285
- outline: none;
3286
- width: 28px;
3287
- height: 28px;
3288
- line-height: 28px; }
3289
- #react-paginate li.selected {
3290
- background: var(--react-autoql-accent-color);
3291
- border-radius: 50%;
3292
- outline: none; }
3293
- #react-paginate li.selected a {
3294
- color: var(--react-autoql-accent-text-color); }
3295
- #react-paginate .pagination-next.disabled,
3296
- #react-paginate .pagination-previous.disabled {
3297
- opacity: 0.5;
3298
- pointer-events: none; }
3299
- #react-paginate .pagination-previous,
3300
- #react-paginate .pagination-next {
3301
- font-size: 18px; }
3302
- #react-paginate .pagination-previous a,
3303
- #react-paginate .pagination-next a {
3304
- color: var(--react-autoql-text-color-primary); }
3305
-
3306
- .animated-item:nth-child(1) {
3307
- -webkit-animation-delay: 0.08s;
3308
- animation-delay: 0.08s; }
3309
-
3310
- .animated-item:nth-child(2) {
3311
- -webkit-animation-delay: 0.16s;
3312
- animation-delay: 0.16s; }
3313
-
3314
- .animated-item:nth-child(3) {
3315
- -webkit-animation-delay: 0.24s;
3316
- animation-delay: 0.24s; }
3317
-
3318
- .animated-item:nth-child(4) {
3319
- -webkit-animation-delay: 0.32s;
3320
- animation-delay: 0.32s; }
3321
-
3322
- .animated-item:nth-child(5) {
3323
- -webkit-animation-delay: 0.4s;
3324
- animation-delay: 0.4s; }
3325
-
3326
- .animated-item:nth-child(6) {
3327
- -webkit-animation-delay: 0.48s;
3328
- animation-delay: 0.48s; }
3329
-
3330
- .animated-item:nth-child(7) {
3331
- -webkit-animation-delay: 0.56s;
3332
- animation-delay: 0.56s; }
3333
-
3334
- .animated-item:nth-child(8) {
3335
- -webkit-animation-delay: 0.64s;
3336
- animation-delay: 0.64s; }
3337
-
3338
- .animated-item:nth-child(9) {
3339
- -webkit-animation-delay: 0.72s;
3340
- animation-delay: 0.72s; }
3341
-
3342
- .animated-item:nth-child(10) {
3343
- -webkit-animation-delay: 0.8s;
3344
- animation-delay: 0.8s; }
3345
-
3346
- .animated-item:nth-child(11) {
3347
- -webkit-animation-delay: 0.88s;
3348
- animation-delay: 0.88s; }
3349
-
3350
- .animated-item:nth-child(12) {
3351
- -webkit-animation-delay: 0.96s;
3352
- animation-delay: 0.96s; }
3353
-
3354
- .animated-item:nth-child(13) {
3355
- -webkit-animation-delay: 1.04s;
3356
- animation-delay: 1.04s; }
3543
+ transform: translate(19px, 0); } }
3357
3544
 
3358
- .animated-item:nth-child(14) {
3359
- -webkit-animation-delay: 1.12s;
3360
- animation-delay: 1.12s; }
3545
+ @-webkit-keyframes scale-up-center {
3546
+ 0% {
3547
+ transform: scale(0); }
3548
+ 100% {
3549
+ transform: scale(1); } }
3361
3550
 
3362
- .animated-item:nth-child(15) {
3363
- -webkit-animation-delay: 1.2s;
3364
- animation-delay: 1.2s; }
3551
+ @keyframes scale-up-center {
3552
+ 0% {
3553
+ transform: scale(0); }
3554
+ 100% {
3555
+ transform: scale(1); } }
3365
3556
 
3366
3557
  @-webkit-keyframes fadeIn {
3367
3558
  0% {
3368
- opacity: 0;
3369
- top: 100px; }
3370
- 75% {
3371
- opacity: 0.5;
3372
- top: 0px; }
3559
+ opacity: 0; }
3373
3560
  100% {
3374
3561
  opacity: 1; } }
3375
3562
 
3376
- .filter-lock-menu {
3377
- z-index: 99999 !important;
3378
- transition: opacity 0.1s ease 0s !important;
3379
- border: 1px solid #ababab52;
3380
- border-radius: 4px;
3381
- box-shadow: 0px 0 8px rgba(0, 0, 0, 0.15);
3382
- opacity: 1;
3383
- min-width: 500px;
3384
- max-width: 70vw;
3385
- min-height: 350px;
3386
- max-height: 90vh;
3387
- background: var(--react-autoql-background-color-primary);
3388
- color: var(--react-autoql-text-color-primary);
3389
- overflow-y: auto !important; }
3390
- .filter-lock-menu .filter-lock-toast-container {
3391
- top: 0;
3392
- position: absolute; }
3393
- .filter-lock-menu .filter-lock-toast-container .Toastify__toast {
3394
- min-height: 48px; }
3395
- .filter-lock-menu .filter-lock-toast-container .Toastify__toast-body {
3396
- justify-content: center; }
3397
- .filter-lock-menu .filter-lock-toast-container .Toastify__toast-body > div:last-child {
3398
- flex: unset; }
3399
- .filter-lock-menu .include-exclude-toggle-group {
3400
- height: 23px;
3401
- font-size: 12px;
3402
- font-weight: 200; }
3403
- .filter-lock-menu .include-exclude-toggle-group .react-autoql-radio-btn.active {
3404
- background-color: var(--react-autoql-border-color); }
3405
- .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 {
3406
- color: var(--react-autoql-accent-color);
3407
- border-color: var(--react-autoql-accent-color); }
3408
- .filter-lock-menu .include-exclude-toggle-group :nth-child(2).react-autoql-radio-btn:hover, .filter-lock-menu .include-exclude-toggle-group :nth-child(2).react-autoql-radio-btn.active {
3409
- color: var(--react-autoql-danger-color);
3410
- border-color: var(--react-autoql-danger-color); }
3411
-
3412
- .filter-lock-menu-content {
3413
- padding: 15px 20px;
3414
- display: flex;
3415
- flex-direction: column;
3416
- justify-content: stretch;
3417
- height: 100%; }
3418
- .filter-lock-menu-content.closed {
3563
+ @keyframes fadeIn {
3564
+ 0% {
3419
3565
  opacity: 0; }
3420
- .filter-lock-menu-content h3 {
3421
- margin-top: 3px;
3422
- margin-bottom: 15px;
3423
- color: var(--react-autoql-text-color-primary); }
3424
- .filter-lock-menu-content h4 {
3425
- margin-top: 3px;
3426
- margin-bottom: 5px;
3427
- color: var(--react-autoql-text-color-primary);
3428
- display: inline-flex; }
3429
- .filter-lock-menu-content .react-autoql-condition-list-loading-container,
3430
- .filter-lock-menu-content .react-autoql-empty-condition-list,
3431
- .filter-lock-menu-content .react-autoql-filter-list-container {
3432
- flex: 1 1 245px; }
3433
- .filter-lock-menu-content .filter-lock-menu-header {
3434
- flex: 0;
3435
- width: 100%;
3436
- display: flex;
3437
- align-items: flex-start;
3438
- justify-content: space-between; }
3439
- .filter-lock-menu-content .filter-lock-menu-header .filter-locking-close-btn {
3440
- border: none;
3441
- margin: 0;
3442
- padding: 0;
3443
- font-size: 20px; }
3444
- .filter-lock-menu-content .filter-lock-menu-footer {
3445
- width: 100%;
3446
- display: flex;
3447
- justify-content: flex-end; }
3448
- .filter-lock-menu-content .react-autoql-empty-condition-list {
3449
- opacity: 0.8;
3450
- width: 100%;
3451
- text-align: center;
3452
- padding-top: 70px; }
3453
- .filter-lock-menu-content .react-autoql-filter-list-container {
3454
- margin: 10px 0; }
3455
- .filter-lock-menu-content .react-autoql-filter-list-container .flex {
3456
- width: 100%;
3457
- display: flex;
3458
- flex-direction: row;
3459
- justify-content: space-between;
3460
- flex-wrap: nowrap;
3461
- margin-bottom: 4px; }
3462
- .filter-lock-menu-content .react-autoql-filter-list-container .flex .persist-toggle-column,
3463
- .filter-lock-menu-content .react-autoql-filter-list-container .flex .react-autoql-condition-table-list-item {
3464
- margin-right: 25px;
3465
- max-width: 350px; }
3466
- .filter-lock-menu-content .react-autoql-filter-list-container .flex .react-autoql-remove-filter-icon {
3467
- cursor: pointer; }
3468
- .filter-lock-menu-content .react-autoql-filter-list-container .flex .react-autoql-remove-filter-icon:hover {
3469
- color: var(--react-autoql-danger-color); }
3470
- .filter-lock-menu-content .react-autoql-filter-list-container .filter-lock-category-title {
3471
- padding-right: 10px;
3472
- padding-top: 1px;
3473
- max-width: 195px;
3474
- overflow: hidden; }
3475
- .filter-lock-menu-content .react-autoql-filter-list-container .persist-toggle-column .react-autoql-icon {
3476
- margin-left: 3px; }
3477
- .filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-highlight-row {
3478
- background-color: var(--react-autoql-accent-color);
3479
- color: white;
3480
- -webkit-animation-name: highlightIn, highlightOut;
3481
- animation-name: highlightIn, highlightOut;
3482
- -webkit-animation-duration: 300ms, 300ms;
3483
- animation-duration: 300ms, 300ms;
3484
- -webkit-animation-delay: 0ms, 1000ms;
3485
- animation-delay: 0ms, 1000ms;
3486
- -webkit-animation-timing-function: ease-in, ease-out;
3487
- animation-timing-function: ease-in, ease-out;
3488
- -webkit-animation-iteration-count: 1, 1;
3489
- animation-iteration-count: 1, 1; }
3490
- .filter-lock-menu-content .react-autoql-condition-locking-input {
3491
- padding: 5px;
3492
- padding-left: 20px;
3493
- height: 32px;
3494
- box-sizing: border-box;
3495
- border-radius: 24px;
3496
- font-size: 12px;
3497
- font-family: inherit;
3498
- letter-spacing: 0.04em;
3499
- outline: none !important;
3500
- width: 100%;
3501
- font-family: inherit;
3502
- border: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.1));
3503
- background: var(--react-autoql-background-color-primary);
3504
- color: var(--react-autoql-text-color-primary); }
3505
- .filter-lock-menu-content .react-autoql-condition-locking-input:hover {
3506
- box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1); }
3507
- .filter-lock-menu-content .react-autoql-condition-locking-input::-moz-placeholder {
3508
- color: rgba(var(--react-autoql-text-color-placeholder), 2) !important;
3509
- opacity: 0.5; }
3510
- .filter-lock-menu-content .react-autoql-condition-locking-input:-ms-input-placeholder {
3511
- color: rgba(var(--react-autoql-text-color-placeholder), 2) !important;
3512
- opacity: 0.5; }
3513
- .filter-lock-menu-content .react-autoql-condition-locking-input::placeholder {
3514
- color: rgba(var(--react-autoql-text-color-placeholder), 2) !important;
3515
- opacity: 0.5; }
3516
- .filter-lock-menu-content .react-autosuggest__container--open {
3517
- position: relative; }
3518
- .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open {
3519
- background-color: var(--react-autoql-background-color-primary);
3520
- border: 1px solid var(--react-autoql-border-color);
3521
- color: var(--react-autoql-text-color-primary);
3522
- position: absolute;
3523
- padding: 10px 0;
3524
- display: block;
3525
- font-family: inherit;
3526
- font-size: 15px;
3527
- font-weight: normal;
3528
- z-index: 2;
3529
- box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13);
3530
- text-align: left;
3531
- border-radius: 4px;
3532
- height: auto;
3533
- width: 100%;
3534
- max-height: 200px;
3535
- overflow-y: scroll !important; }
3536
- .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open ul.filter-lock-suggestion-item {
3537
- cursor: pointer;
3538
- width: 100%;
3539
- columns: 2;
3540
- -webkit-columns: 2;
3541
- list-style: none;
3542
- -moz-columns: 2;
3543
- letter-spacing: 0.05em;
3544
- line-height: 22.5px;
3545
- padding: 0px 20px 3px 20px; }
3546
- .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__suggestion {
3547
- color: var(--react-autoql-text-color-primary); }
3548
- .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__suggestions-list {
3549
- margin: 0;
3550
- padding: 0;
3551
- list-style-type: none; }
3552
- .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__suggestion--highlighted {
3553
- background-color: rgba(0, 0, 0, 0.1) !important; }
3554
- .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__section-title {
3555
- padding: 10px 0 0 10px;
3556
- font-size: 12px;
3557
- color: #777; }
3558
-
3559
- @-webkit-keyframes highlightOut {
3560
3566
  100% {
3561
- background-color: var(--react-autoql-background-color-primary);
3562
- color: var(--react-autoql-text-color-primary); }
3563
- 0% {
3564
- background-color: var(--react-autoql-accent-color);
3565
- color: white; } }
3567
+ opacity: 1; } }
3566
3568
 
3567
- @keyframes highlightOut {
3568
- 100% {
3569
- background-color: var(--react-autoql-background-color-primary);
3570
- color: var(--react-autoql-text-color-primary); }
3569
+ @-webkit-keyframes slideDown {
3571
3570
  0% {
3572
- background-color: var(--react-autoql-accent-color);
3573
- color: white; } }
3574
-
3575
- @-webkit-keyframes highlightIn {
3571
+ transform: translateY(-100%); }
3576
3572
  100% {
3577
- background-color: var(--react-autoql-accent-color);
3578
- color: white; }
3579
- 0% {
3580
- background-color: var(--react-autoql-background-color-primary);
3581
- color: var(--react-autoql-text-color-primary); } }
3573
+ transform: translateY(0%); } }
3582
3574
 
3583
- @keyframes highlightIn {
3584
- 100% {
3585
- background-color: var(--react-autoql-accent-color);
3586
- color: white; }
3575
+ @keyframes slideDown {
3587
3576
  0% {
3588
- background-color: var(--react-autoql-background-color-primary);
3589
- color: var(--react-autoql-text-color-primary); } }
3577
+ transform: translateY(-100%); }
3578
+ 100% {
3579
+ transform: translateY(0%); } }
3580
+
3581
+ @-webkit-keyframes snackbarFadeout {
3582
+ from {
3583
+ top: 60px;
3584
+ opacity: 1; }
3585
+ to {
3586
+ top: 30px;
3587
+ opacity: 0; } }
3588
+
3589
+ @keyframes snackbarFadeout {
3590
+ from {
3591
+ top: 60px;
3592
+ opacity: 1; }
3593
+ to {
3594
+ top: 30px;
3595
+ opacity: 0; } }
3590
3596
 
3591
3597
  .react-autoql-dashboard .react-autoql-dashboard-tile {
3592
3598
  background: var(--react-autoql-background-color-primary, #fff);
@@ -4084,30 +4090,30 @@ g.legendOrdinal .legendTitle tspan {
4084
4090
  margin-top: 20px !important;
4085
4091
  max-height: 93vh !important; }
4086
4092
 
4087
- .dashboard-drilldown-modal .react-autoql-modal-body {
4093
+ .dashboard-drilldown-modal .dashboard-drilldown-modal-content .react-autoql-modal-body {
4088
4094
  padding: 0; }
4089
4095
 
4090
- .dashboard-drilldown-modal .react-autoql-table {
4096
+ .dashboard-drilldown-modal .dashboard-drilldown-modal-content .react-autoql-table {
4091
4097
  opacity: 0.9;
4092
4098
  font-size: 11px; }
4093
4099
 
4094
- .dashboard-drilldown-modal .splitter-layout {
4100
+ .dashboard-drilldown-modal .dashboard-drilldown-modal-content .splitter-layout {
4095
4101
  height: calc(100% - 55px); }
4096
4102
 
4097
- .dashboard-drilldown-modal .react-autoql-dashboard-drilldown-original {
4103
+ .dashboard-drilldown-modal .dashboard-drilldown-modal-content .react-autoql-dashboard-drilldown-original {
4098
4104
  padding: 20px;
4099
4105
  padding-bottom: 10px; }
4100
4106
 
4101
- .dashboard-drilldown-modal .drilldown-hide-chart-btn {
4107
+ .dashboard-drilldown-modal .dashboard-drilldown-modal-content .drilldown-hide-chart-btn {
4102
4108
  text-align: right;
4103
4109
  width: 100%;
4104
4110
  padding-right: 20px; }
4105
- .dashboard-drilldown-modal .drilldown-hide-chart-btn.bottom {
4111
+ .dashboard-drilldown-modal .dashboard-drilldown-modal-content .drilldown-hide-chart-btn.bottom {
4106
4112
  position: absolute;
4107
4113
  bottom: 5px;
4108
4114
  width: 100px;
4109
4115
  right: 0; }
4110
- .dashboard-drilldown-modal .drilldown-hide-chart-btn.top {
4116
+ .dashboard-drilldown-modal .dashboard-drilldown-modal-content .drilldown-hide-chart-btn.top {
4111
4117
  padding-top: 10px;
4112
4118
  margin-bottom: -8px; }
4113
4119