react-autoql 4.2.4 → 4.2.5

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.
@@ -898,8 +898,11 @@ g.legendOrdinal .legendTitle tspan {
898
898
  width: 100%;
899
899
  height: 100%;
900
900
  color: var(--react-autoql-text-color-primary); }
901
+ .react-autoql-response-content-container a {
902
+ color: var(--react-autoql-accent-color); }
901
903
  .react-autoql-response-content-container .query-output-error-message,
902
- .react-autoql-response-content-container .no-columns-error-message {
904
+ .react-autoql-response-content-container .no-columns-error-message,
905
+ .react-autoql-response-content-container .feedback-message {
903
906
  margin: auto; }
904
907
 
905
908
  .react-autoql-response-content-container.table {
@@ -2400,8 +2403,13 @@ g.legendOrdinal .legendTitle tspan {
2400
2403
 
2401
2404
  .chat-single-message-container {
2402
2405
  transition: background-color 0.2s ease;
2403
- padding-top: 6px;
2404
- max-height: 85%; }
2406
+ padding-top: 6px; }
2407
+ .chat-single-message-container a {
2408
+ text-decoration: none;
2409
+ font-weight: 600;
2410
+ color: var(--react-autoql-accent-color); }
2411
+ .chat-single-message-container:not(.no-max-height) {
2412
+ max-height: 85%; }
2405
2413
  .chat-single-message-container:first-of-type {
2406
2414
  margin-top: 10px; }
2407
2415
  .chat-single-message-container .query-more-btn {
@@ -2552,6 +2560,13 @@ g.legendOrdinal .legendTitle tspan {
2552
2560
  .react-autoql-icon-svg-0 {
2553
2561
  fill: currentColor; }
2554
2562
 
2563
+ .react-autoql-icon-outlined {
2564
+ fill: none;
2565
+ stroke: currentColor;
2566
+ stroke-linecap: round;
2567
+ stroke-linejoin: round;
2568
+ stroke-miterlimit: 10; }
2569
+
2555
2570
  .hm0 {
2556
2571
  opacity: 0.5;
2557
2572
  fill: currentColor;
@@ -2613,574 +2628,133 @@ g.legendOrdinal .legendTitle tspan {
2613
2628
  transform: scale(1);
2614
2629
  transform-origin: 0% 100%; } }
2615
2630
 
2616
- .query-tips-page-container {
2617
- height: 100%;
2618
- padding: 10px; }
2619
- .query-tips-page-container .chat-bar-input-icon {
2620
- top: 20px;
2621
- left: 26px; }
2622
- .query-tips-page-container .react-autoql-chatbar-input.left-padding {
2623
- padding-left: 46px; }
2624
-
2625
- .query-tips-result-container {
2626
- color: var(--react-autoql-text-color-primary);
2627
- padding: 0px 20px;
2628
- text-align: center;
2629
- max-width: 550px;
2630
- margin: 0 auto; }
2631
- .query-tips-result-container .query-tip-list-container {
2632
- margin-bottom: 20px; }
2633
- .query-tips-result-container .animated-item {
2634
- -webkit-animation: fadeIn 0.3s linear;
2635
- animation: fadeIn 0.3s linear;
2636
- -webkit-animation-fill-mode: both;
2637
- animation-fill-mode: both; }
2638
- .query-tips-result-container .query-tip-item {
2639
- position: relative;
2640
- padding: 13px;
2641
- border-top: 1px solid rgba(0, 0, 0, 0.04);
2642
- cursor: pointer; }
2643
- .query-tips-result-container .query-tip-item:first-child {
2644
- border-top: none; }
2645
- .query-tips-result-container .query-tip-item .execute-btn {
2646
- position: absolute;
2647
- right: 10px;
2648
- top: 4px;
2649
- font-size: 20px;
2650
- visibility: hidden;
2651
- opacity: 0; }
2652
- .query-tips-result-container .query-tip-item:hover {
2653
- font-weight: bold;
2654
- color: var(--react-autoql-accent-color); }
2655
- .query-tips-result-container .query-tip-item:hover .execute-btn {
2656
- visibility: visible;
2657
- opacity: 1; }
2658
- .query-tips-result-container .query-tips-result-placeholder {
2659
- margin-top: 50px;
2660
- opacity: 0.6; }
2661
2631
 
2662
- .chat-bar-loading-spinner {
2663
- position: absolute;
2664
- right: 20px;
2665
- top: 22px; }
2632
+ .react-autoql-drawer {
2633
+ font-family: var(--react-autoql-font-family), sans-serif;
2634
+ line-height: 22px; }
2666
2635
 
2667
- #react-paginate {
2668
- position: relative;
2669
- background: transparent;
2670
- padding: 8px; }
2671
- #react-paginate ul {
2672
- display: inline-block;
2673
- padding-left: 0;
2674
- margin-bottom: 0; }
2675
- #react-paginate li {
2676
- display: inline-block;
2677
- color: var(--react-autoql-text-color-primary);
2678
- cursor: pointer;
2679
- margin-right: 3px;
2680
- border-radius: 5px;
2681
- margin-bottom: 0;
2682
- -webkit-user-select: none;
2683
- -moz-user-select: none;
2684
- -ms-user-select: none;
2685
- user-select: none; }
2686
- #react-paginate li:hover {
2687
- opacity: 0.7;
2688
- border-radius: 50%; }
2689
- #react-paginate li a {
2690
- display: inline-block;
2691
- color: var(--react-autoql-text-color-primary);
2692
- outline: none;
2693
- width: 28px;
2694
- height: 28px;
2695
- line-height: 28px; }
2696
- #react-paginate li.selected {
2697
- background: var(--react-autoql-accent-color);
2698
- border-radius: 50%;
2699
- outline: none; }
2700
- #react-paginate li.selected a {
2701
- color: var(--react-autoql-accent-text-color); }
2702
- #react-paginate .pagination-next.disabled,
2703
- #react-paginate .pagination-previous.disabled {
2704
- opacity: 0.5;
2705
- pointer-events: none; }
2706
- #react-paginate .pagination-previous,
2707
- #react-paginate .pagination-next {
2708
- position: absolute;
2709
- font-size: 18px; }
2710
- #react-paginate .pagination-previous a,
2711
- #react-paginate .pagination-next a {
2712
- color: var(--react-autoql-text-color-primary); }
2713
- #react-paginate .pagination-previous {
2714
- left: 20px; }
2715
- #react-paginate .pagination-next {
2716
- right: 20px; }
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; }
2717
2641
 
2718
- .animated-item:nth-child(1) {
2719
- -webkit-animation-delay: 0.08s;
2720
- animation-delay: 0.08s; }
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; }
2721
2651
 
2722
- .animated-item:nth-child(2) {
2723
- -webkit-animation-delay: 0.16s;
2724
- animation-delay: 0.16s; }
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; }
2725
2662
 
2726
- .animated-item:nth-child(3) {
2727
- -webkit-animation-delay: 0.24s;
2728
- animation-delay: 0.24s; }
2663
+ .react-autoql-drawer .react-autoql-header-left-container {
2664
+ display: flex;
2665
+ justify-content: left;
2666
+ width: 100px;
2667
+ margin-left: 10px; }
2729
2668
 
2730
- .animated-item:nth-child(4) {
2731
- -webkit-animation-delay: 0.32s;
2732
- animation-delay: 0.32s; }
2669
+ .react-autoql-drawer .react-autoql-header-right-container {
2670
+ display: flex;
2671
+ justify-content: right;
2672
+ width: 100px;
2673
+ margin-right: 10px; }
2733
2674
 
2734
- .animated-item:nth-child(5) {
2735
- -webkit-animation-delay: 0.4s;
2736
- animation-delay: 0.4s; }
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; }
2737
2685
 
2738
- .animated-item:nth-child(6) {
2739
- -webkit-animation-delay: 0.48s;
2740
- animation-delay: 0.48s; }
2686
+ .react-autoql-drawer .header-title {
2687
+ -webkit-animation: fadeIn 0.3s;
2688
+ animation: fadeIn 0.3s; }
2741
2689
 
2742
- .animated-item:nth-child(7) {
2743
- -webkit-animation-delay: 0.56s;
2744
- animation-delay: 0.56s; }
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; }
2745
2709
 
2746
- .animated-item:nth-child(8) {
2747
- -webkit-animation-delay: 0.64s;
2748
- animation-delay: 0.64s; }
2710
+ .react-autoql-drawer .chat-message-container {
2711
+ scroll-behavior: smooth !important;
2712
+ max-height: calc(100% - 140px);
2713
+ overflow-y: auto;
2714
+ overflow-x: hidden;
2715
+ flex: 1; }
2716
+ .react-autoql-drawer .chat-message-container .custom-scrollbar-container {
2717
+ overflow-x: hidden !important;
2718
+ margin-bottom: 0 !important; }
2749
2719
 
2750
- .animated-item:nth-child(9) {
2751
- -webkit-animation-delay: 0.72s;
2752
- animation-delay: 0.72s; }
2720
+ .react-autoql-drawer .chat-bar-container {
2721
+ position: relative;
2722
+ padding: 10px; }
2753
2723
 
2754
- .animated-item:nth-child(10) {
2755
- -webkit-animation-delay: 0.8s;
2756
- animation-delay: 0.8s; }
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; }
2757
2730
 
2758
- .animated-item:nth-child(11) {
2759
- -webkit-animation-delay: 0.88s;
2760
- animation-delay: 0.88s; }
2731
+ .react-autoql-drawer .watermark {
2732
+ color: var(--react-autoql-text-color-primary);
2733
+ text-align: center;
2734
+ opacity: 0.2;
2735
+ top: 6px;
2736
+ width: calc(100% - 10px);
2737
+ font-size: 13px; }
2761
2738
 
2762
- .animated-item:nth-child(12) {
2763
- -webkit-animation-delay: 0.96s;
2764
- animation-delay: 0.96s; }
2739
+ .react-autoql-drawer .react-autoql-drawer:focus {
2740
+ outline: none; }
2765
2741
 
2766
- .animated-item:nth-child(13) {
2767
- -webkit-animation-delay: 1.04s;
2768
- animation-delay: 1.04s; }
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; }
2769
2751
 
2770
- .animated-item:nth-child(14) {
2771
- -webkit-animation-delay: 1.12s;
2772
- animation-delay: 1.12s; }
2752
+ .react-autoql-drawer .chat-header-container button:hover {
2753
+ opacity: 0.7; }
2773
2754
 
2774
- .animated-item:nth-child(15) {
2775
- -webkit-animation-delay: 1.2s;
2776
- animation-delay: 1.2s; }
2777
-
2778
- @-webkit-keyframes fadeIn {
2779
- 0% {
2780
- opacity: 0;
2781
- top: 100px; }
2782
- 75% {
2783
- opacity: 0.5;
2784
- top: 0px; }
2785
- 100% {
2786
- opacity: 1; } }
2787
-
2788
- .react-autoql-cascader {
2789
- position: relative;
2790
- white-space: nowrap;
2791
- overflow: hidden;
2792
- min-width: 300px; }
2793
- .react-autoql-cascader .options-container {
2794
- transition: max-width 0.3s ease;
2795
- display: inline-block;
2796
- vertical-align: top;
2797
- padding: 0 10px;
2798
- margin: 10px 0;
2799
- width: 100%;
2800
- max-width: calc(100% - 20px);
2801
- white-space: pre-wrap; }
2802
- .react-autoql-cascader .options-container.hidden {
2803
- max-width: 0; }
2804
- .react-autoql-cascader .options-container.hidden span {
2805
- white-space: nowrap; }
2806
- .react-autoql-cascader .options-container.hidden .option {
2807
- opacity: 0;
2808
- pointer-events: none; }
2809
- .react-autoql-cascader .options-container .options-title {
2810
- padding: 4px;
2811
- padding-left: 10px;
2812
- font-weight: 600; }
2813
- .react-autoql-cascader .options-container .cascader-back-arrow {
2814
- position: absolute;
2815
- cursor: pointer;
2816
- top: 15px;
2817
- left: 0; }
2818
- .react-autoql-cascader .options-container .cascader-back-arrow:hover {
2819
- opacity: 0.8; }
2820
- .react-autoql-cascader .options-container .option {
2821
- cursor: pointer;
2822
- padding: 4px;
2823
- display: flex;
2824
- justify-content: space-between;
2825
- border-radius: 2px;
2826
- padding-left: 10px; }
2827
- .react-autoql-cascader .options-container .option .option-arrow {
2828
- opacity: 0.7; }
2829
- .react-autoql-cascader .options-container .option .option-execute-icon {
2830
- opacity: 0;
2831
- color: #fff;
2832
- font-size: 16px;
2833
- vertical-align: middle; }
2834
- .react-autoql-cascader .options-container .option:hover, .react-autoql-cascader .options-container .option.active {
2835
- background-color: var(--react-autoql-accent-color, #26a7df);
2836
- color: #fff; }
2837
- .react-autoql-cascader .options-container .option:hover .option-execute-icon, .react-autoql-cascader .options-container .option.active .option-execute-icon {
2838
- opacity: 1; }
2839
- .react-autoql-cascader .options-container:not(:last-child) {
2840
- border-right: 1px solid #d3d3d352; }
2841
-
2842
- .filter-lock-menu {
2843
- z-index: 99999 !important;
2844
- transition: opacity 0.1s ease 0s !important;
2845
- border: 1px solid #ababab52;
2846
- border-radius: 4px;
2847
- box-shadow: 0px 0 8px rgba(0, 0, 0, 0.15);
2848
- opacity: 1;
2849
- min-width: 500px;
2850
- max-width: 70vw;
2851
- min-height: 350px;
2852
- max-height: 90vh;
2853
- background: var(--react-autoql-background-color-primary);
2854
- color: var(--react-autoql-text-color-primary);
2855
- overflow-y: auto !important; }
2856
- .filter-lock-menu .filter-lock-toast-container {
2857
- top: 0;
2858
- position: absolute; }
2859
- .filter-lock-menu .filter-lock-toast-container .Toastify__toast {
2860
- min-height: 48px; }
2861
- .filter-lock-menu .filter-lock-toast-container .Toastify__toast-body {
2862
- justify-content: center; }
2863
- .filter-lock-menu .filter-lock-toast-container .Toastify__toast-body > div:last-child {
2864
- flex: unset; }
2865
- .filter-lock-menu .include-exclude-toggle-group {
2866
- height: 23px;
2867
- font-size: 12px;
2868
- font-weight: 200; }
2869
- .filter-lock-menu .include-exclude-toggle-group .react-autoql-radio-btn.active {
2870
- background-color: var(--react-autoql-border-color); }
2871
- .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 {
2872
- color: var(--react-autoql-accent-color);
2873
- border-color: var(--react-autoql-accent-color); }
2874
- .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 {
2875
- color: var(--react-autoql-danger-color);
2876
- border-color: var(--react-autoql-danger-color); }
2877
-
2878
- .filter-lock-menu-content {
2879
- padding: 15px 20px;
2880
- display: flex;
2881
- flex-direction: column;
2882
- justify-content: stretch;
2883
- height: 100%; }
2884
- .filter-lock-menu-content.closed {
2885
- opacity: 0; }
2886
- .filter-lock-menu-content h3 {
2887
- margin-top: 3px;
2888
- margin-bottom: 15px;
2889
- color: var(--react-autoql-text-color-primary); }
2890
- .filter-lock-menu-content h4 {
2891
- margin-top: 3px;
2892
- margin-bottom: 5px;
2893
- color: var(--react-autoql-text-color-primary);
2894
- display: inline-flex; }
2895
- .filter-lock-menu-content .react-autoql-condition-list-loading-container,
2896
- .filter-lock-menu-content .react-autoql-empty-condition-list,
2897
- .filter-lock-menu-content .react-autoql-filter-list-container {
2898
- flex: 1 1 245px; }
2899
- .filter-lock-menu-content .filter-lock-menu-header {
2900
- flex: 0;
2901
- width: 100%;
2902
- display: flex;
2903
- align-items: flex-start;
2904
- justify-content: space-between; }
2905
- .filter-lock-menu-content .filter-lock-menu-header .filter-locking-close-btn {
2906
- border: none;
2907
- margin: 0;
2908
- padding: 0;
2909
- font-size: 20px; }
2910
- .filter-lock-menu-content .filter-lock-menu-footer {
2911
- width: 100%;
2912
- display: flex;
2913
- justify-content: flex-end; }
2914
- .filter-lock-menu-content .react-autoql-empty-condition-list {
2915
- opacity: 0.8;
2916
- width: 100%;
2917
- text-align: center;
2918
- padding-top: 70px; }
2919
- .filter-lock-menu-content .react-autoql-filter-list-container {
2920
- margin: 10px 0; }
2921
- .filter-lock-menu-content .react-autoql-filter-list-container .flex {
2922
- width: 100%;
2923
- display: flex;
2924
- flex-direction: row;
2925
- justify-content: space-between;
2926
- flex-wrap: nowrap;
2927
- margin-bottom: 4px; }
2928
- .filter-lock-menu-content .react-autoql-filter-list-container .flex .persist-toggle-column,
2929
- .filter-lock-menu-content .react-autoql-filter-list-container .flex .react-autoql-condition-table-list-item {
2930
- margin-right: 25px;
2931
- max-width: 350px; }
2932
- .filter-lock-menu-content .react-autoql-filter-list-container .flex .react-autoql-remove-filter-icon {
2933
- cursor: pointer; }
2934
- .filter-lock-menu-content .react-autoql-filter-list-container .flex .react-autoql-remove-filter-icon:hover {
2935
- color: var(--react-autoql-danger-color); }
2936
- .filter-lock-menu-content .react-autoql-filter-list-container .filter-lock-category-title {
2937
- padding-right: 10px;
2938
- padding-top: 1px;
2939
- max-width: 195px;
2940
- overflow: hidden; }
2941
- .filter-lock-menu-content .react-autoql-filter-list-container .persist-toggle-column .react-autoql-icon {
2942
- margin-left: 3px; }
2943
- .filter-lock-menu-content .react-autoql-filter-list-container .react-autoql-highlight-row {
2944
- background-color: var(--react-autoql-accent-color);
2945
- color: white;
2946
- -webkit-animation-name: highlightIn, highlightOut;
2947
- animation-name: highlightIn, highlightOut;
2948
- -webkit-animation-duration: 300ms, 300ms;
2949
- animation-duration: 300ms, 300ms;
2950
- -webkit-animation-delay: 0ms, 1000ms;
2951
- animation-delay: 0ms, 1000ms;
2952
- -webkit-animation-timing-function: ease-in, ease-out;
2953
- animation-timing-function: ease-in, ease-out;
2954
- -webkit-animation-iteration-count: 1, 1;
2955
- animation-iteration-count: 1, 1; }
2956
- .filter-lock-menu-content .react-autoql-condition-locking-input {
2957
- padding: 5px;
2958
- padding-left: 20px;
2959
- height: 32px;
2960
- box-sizing: border-box;
2961
- border-radius: 24px;
2962
- font-size: 12px;
2963
- font-family: inherit;
2964
- letter-spacing: 0.04em;
2965
- outline: none !important;
2966
- width: 100%;
2967
- font-family: inherit;
2968
- border: 1px solid var(--react-autoql-border-color, rgba(0, 0, 0, 0.1));
2969
- background: var(--react-autoql-background-color-primary);
2970
- color: var(--react-autoql-text-color-primary); }
2971
- .filter-lock-menu-content .react-autoql-condition-locking-input:hover {
2972
- box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1); }
2973
- .filter-lock-menu-content .react-autoql-condition-locking-input::-moz-placeholder {
2974
- color: rgba(var(--react-autoql-text-color-placeholder), 2) !important;
2975
- opacity: 0.5; }
2976
- .filter-lock-menu-content .react-autoql-condition-locking-input:-ms-input-placeholder {
2977
- color: rgba(var(--react-autoql-text-color-placeholder), 2) !important;
2978
- opacity: 0.5; }
2979
- .filter-lock-menu-content .react-autoql-condition-locking-input::placeholder {
2980
- color: rgba(var(--react-autoql-text-color-placeholder), 2) !important;
2981
- opacity: 0.5; }
2982
- .filter-lock-menu-content .react-autosuggest__container--open {
2983
- position: relative; }
2984
- .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open {
2985
- background-color: var(--react-autoql-background-color-primary);
2986
- border: 1px solid var(--react-autoql-border-color);
2987
- color: var(--react-autoql-text-color-primary);
2988
- position: absolute;
2989
- padding: 10px 0;
2990
- display: block;
2991
- font-family: inherit;
2992
- font-size: 15px;
2993
- font-weight: normal;
2994
- z-index: 2;
2995
- box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13);
2996
- text-align: left;
2997
- border-radius: 4px;
2998
- height: auto;
2999
- width: 100%;
3000
- max-height: 200px;
3001
- overflow-y: scroll !important; }
3002
- .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open ul.filter-lock-suggestion-item {
3003
- cursor: pointer;
3004
- width: 100%;
3005
- columns: 2;
3006
- -webkit-columns: 2;
3007
- list-style: none;
3008
- -moz-columns: 2;
3009
- letter-spacing: 0.05em;
3010
- line-height: 22.5px;
3011
- padding: 0px 20px 3px 20px; }
3012
- .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__suggestion {
3013
- color: var(--react-autoql-text-color-primary); }
3014
- .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__suggestions-list {
3015
- margin: 0;
3016
- padding: 0;
3017
- list-style-type: none; }
3018
- .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__suggestion--highlighted {
3019
- background-color: rgba(0, 0, 0, 0.1) !important; }
3020
- .filter-lock-menu-content .react-autosuggest__container--open .react-autosuggest__suggestions-container--open .react-autosuggest__section-title {
3021
- padding: 10px 0 0 10px;
3022
- font-size: 12px;
3023
- color: #777; }
3024
-
3025
- @-webkit-keyframes highlightOut {
3026
- 100% {
3027
- background-color: var(--react-autoql-background-color-primary);
3028
- color: var(--react-autoql-text-color-primary); }
3029
- 0% {
3030
- background-color: var(--react-autoql-accent-color);
3031
- color: white; } }
3032
-
3033
- @keyframes highlightOut {
3034
- 100% {
3035
- background-color: var(--react-autoql-background-color-primary);
3036
- color: var(--react-autoql-text-color-primary); }
3037
- 0% {
3038
- background-color: var(--react-autoql-accent-color);
3039
- color: white; } }
3040
-
3041
- @-webkit-keyframes highlightIn {
3042
- 100% {
3043
- background-color: var(--react-autoql-accent-color);
3044
- color: white; }
3045
- 0% {
3046
- background-color: var(--react-autoql-background-color-primary);
3047
- color: var(--react-autoql-text-color-primary); } }
3048
-
3049
- @keyframes highlightIn {
3050
- 100% {
3051
- background-color: var(--react-autoql-accent-color);
3052
- color: white; }
3053
- 0% {
3054
- background-color: var(--react-autoql-background-color-primary);
3055
- color: var(--react-autoql-text-color-primary); } }
3056
-
3057
-
3058
- .react-autoql-drawer {
3059
- font-family: var(--react-autoql-font-family), sans-serif;
3060
- line-height: 22px; }
3061
-
3062
- .react-autoql-drawer.disable-selection {
3063
- -webkit-user-select: none;
3064
- -moz-user-select: none;
3065
- -ms-user-select: none;
3066
- user-select: none; }
3067
-
3068
- .react-autoql-drawer .react-autoql-drawer-content-container {
3069
- width: 100%;
3070
- height: 100%;
3071
- display: flex;
3072
- background: var(--react-autoql-background-color-secondary);
3073
- overflow: hidden;
3074
- border-radius: 4px;
3075
- flex-direction: column;
3076
- justify-content: stretch; }
3077
-
3078
- .react-autoql-drawer .chat-header-container {
3079
- display: flex;
3080
- justify-content: space-between;
3081
- width: 100%;
3082
- height: 60px;
3083
- background: var(--react-autoql-accent-color);
3084
- box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.1);
3085
- flex-grow: 0;
3086
- flex-shrink: 0;
3087
- z-index: 1; }
3088
-
3089
- .react-autoql-drawer .react-autoql-header-left-container {
3090
- display: flex;
3091
- justify-content: left;
3092
- width: 100px;
3093
- margin-left: 10px; }
3094
-
3095
- .react-autoql-drawer .react-autoql-header-right-container {
3096
- display: flex;
3097
- justify-content: right;
3098
- width: 100px;
3099
- margin-right: 10px; }
3100
-
3101
- .react-autoql-drawer .react-autoql-header-center-container {
3102
- position: relative;
3103
- color: var(--react-autoql-accent-text-color);
3104
- line-height: 60px;
3105
- font-size: 18px;
3106
- letter-spacing: 0.05em;
3107
- font-weight: 600;
3108
- overflow: hidden;
3109
- text-overflow: ellipsis;
3110
- white-space: nowrap; }
3111
-
3112
- .react-autoql-drawer .header-title {
3113
- -webkit-animation: fadeIn 0.3s;
3114
- animation: fadeIn 0.3s; }
3115
-
3116
- .react-autoql-drawer .react-autoql-drawer-header-btn {
3117
- line-height: 1em;
3118
- font-weight: normal;
3119
- float: none;
3120
- opacity: 1; }
3121
- .react-autoql-drawer .react-autoql-drawer-header-btn.hidden {
3122
- display: none; }
3123
- .react-autoql-drawer .react-autoql-drawer-header-btn.close span.react-autoql-icon svg {
3124
- width: 27px;
3125
- height: 27px; }
3126
- .react-autoql-drawer .react-autoql-drawer-header-btn.screen-mode span.react-autoql-icon svg {
3127
- width: 22px;
3128
- height: 22px; }
3129
- .react-autoql-drawer .react-autoql-drawer-header-btn.clear-all span.react-autoql-icon svg {
3130
- width: 22px;
3131
- height: 22px; }
3132
- .react-autoql-drawer .react-autoql-drawer-header-btn.filter-locking span.react-autoql-icon svg {
3133
- width: 22px;
3134
- height: 22px; }
3135
-
3136
- .react-autoql-drawer .chat-message-container {
3137
- scroll-behavior: smooth !important;
3138
- max-height: calc(100% - 140px);
3139
- overflow-y: auto;
3140
- overflow-x: hidden;
3141
- flex: 1; }
3142
- .react-autoql-drawer .chat-message-container .custom-scrollbar-container {
3143
- overflow-x: hidden !important;
3144
- margin-bottom: 0 !important; }
3145
-
3146
- .react-autoql-drawer .chat-bar-container {
3147
- position: relative;
3148
- padding: 10px; }
3149
-
3150
- .react-autoql-drawer .chat-drawer-chat-bar {
3151
- flex-shrink: 0;
3152
- flex-grow: 0;
3153
- height: 60px;
3154
- -webkit-animation: fadeIn 0.3s;
3155
- animation: fadeIn 0.3s; }
3156
-
3157
- .react-autoql-drawer .watermark {
3158
- color: var(--react-autoql-text-color-primary);
3159
- text-align: center;
3160
- opacity: 0.2;
3161
- top: 6px;
3162
- width: calc(100% - 10px);
3163
- font-size: 13px; }
3164
-
3165
- .react-autoql-drawer .react-autoql-drawer:focus {
3166
- outline: none; }
3167
-
3168
- .react-autoql-drawer .chat-header-container button {
3169
- background: transparent;
3170
- border: none;
3171
- color: var(--react-autoql-accent-text-color);
3172
- margin: 10px 0px 10px 0px;
3173
- margin-right: 0;
3174
- font-size: 20px;
3175
- cursor: pointer;
3176
- outline: none !important; }
3177
-
3178
- .react-autoql-drawer .chat-header-container button:hover {
3179
- opacity: 0.7; }
3180
-
3181
- .react-autoql-drawer .chat-header-container button svg {
3182
- width: 35px;
3183
- height: 35px; }
2755
+ .react-autoql-drawer .chat-header-container button svg {
2756
+ width: 35px;
2757
+ height: 35px; }
3184
2758
 
3185
2759
  .topics-container {
3186
2760
  margin: 5px 0; }
@@ -3479,7 +3053,7 @@ g.legendOrdinal .legendTitle tspan {
3479
3053
 
3480
3054
  .page-switcher-container .tab.active {
3481
3055
  background: var(--react-autoql-background-color-secondary);
3482
- color: var(--react-autoql-text-color-primary);
3056
+ color: var(--react-autoql-accent-color);
3483
3057
  box-shadow: -2px 0px 8px 2px rgba(0, 0, 0, 0.2);
3484
3058
  font-weight: bold;
3485
3059
  position: relative;
@@ -3526,57 +3100,493 @@ g.legendOrdinal .legendTitle tspan {
3526
3100
  100% {
3527
3101
  transform: translate(19px, 0); } }
3528
3102
 
3529
- @-webkit-keyframes scale-up-center {
3530
- 0% {
3531
- transform: scale(0); }
3532
- 100% {
3533
- transform: scale(1); } }
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; }
3357
+
3358
+ .animated-item:nth-child(14) {
3359
+ -webkit-animation-delay: 1.12s;
3360
+ animation-delay: 1.12s; }
3534
3361
 
3535
- @keyframes scale-up-center {
3536
- 0% {
3537
- transform: scale(0); }
3538
- 100% {
3539
- transform: scale(1); } }
3362
+ .animated-item:nth-child(15) {
3363
+ -webkit-animation-delay: 1.2s;
3364
+ animation-delay: 1.2s; }
3540
3365
 
3541
3366
  @-webkit-keyframes fadeIn {
3542
3367
  0% {
3543
- opacity: 0; }
3368
+ opacity: 0;
3369
+ top: 100px; }
3370
+ 75% {
3371
+ opacity: 0.5;
3372
+ top: 0px; }
3544
3373
  100% {
3545
3374
  opacity: 1; } }
3546
3375
 
3547
- @keyframes fadeIn {
3548
- 0% {
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 {
3549
3419
  opacity: 0; }
3550
- 100% {
3551
- opacity: 1; } }
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; }
3552
3558
 
3553
- @-webkit-keyframes slideDown {
3554
- 0% {
3555
- transform: translateY(-100%); }
3559
+ @-webkit-keyframes highlightOut {
3556
3560
  100% {
3557
- transform: translateY(0%); } }
3558
-
3559
- @keyframes slideDown {
3561
+ background-color: var(--react-autoql-background-color-primary);
3562
+ color: var(--react-autoql-text-color-primary); }
3560
3563
  0% {
3561
- transform: translateY(-100%); }
3564
+ background-color: var(--react-autoql-accent-color);
3565
+ color: white; } }
3566
+
3567
+ @keyframes highlightOut {
3562
3568
  100% {
3563
- transform: translateY(0%); } }
3569
+ background-color: var(--react-autoql-background-color-primary);
3570
+ color: var(--react-autoql-text-color-primary); }
3571
+ 0% {
3572
+ background-color: var(--react-autoql-accent-color);
3573
+ color: white; } }
3564
3574
 
3565
- @-webkit-keyframes snackbarFadeout {
3566
- from {
3567
- top: 60px;
3568
- opacity: 1; }
3569
- to {
3570
- top: 30px;
3571
- opacity: 0; } }
3575
+ @-webkit-keyframes highlightIn {
3576
+ 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); } }
3572
3582
 
3573
- @keyframes snackbarFadeout {
3574
- from {
3575
- top: 60px;
3576
- opacity: 1; }
3577
- to {
3578
- top: 30px;
3579
- opacity: 0; } }
3583
+ @keyframes highlightIn {
3584
+ 100% {
3585
+ background-color: var(--react-autoql-accent-color);
3586
+ color: white; }
3587
+ 0% {
3588
+ background-color: var(--react-autoql-background-color-primary);
3589
+ color: var(--react-autoql-text-color-primary); } }
3580
3590
 
3581
3591
  .react-autoql-dashboard .react-autoql-dashboard-tile {
3582
3592
  background: var(--react-autoql-background-color-primary, #fff);