appscms-tools-theme 4.8.9 → 4.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/.DS_Store +0 -0
- data/_data/feature/.DS_Store +0 -0
- data/_data/feature/en/compress-pdf.json +1 -12
- data/_data/header/.DS_Store +0 -0
- data/_data/header/en/data.json +1098 -378
- data/_data/review/trustpilot.json +9 -0
- data/_includes/.DS_Store +0 -0
- data/_includes/appscms/.DS_Store +0 -0
- data/_includes/appscms/navbars/navbar.html +0 -72
- data/_includes/appscms/navbars/toolbar.html +4 -141
- data/_includes/appscms/reviews/trustpilot.html +330 -0
- data/_includes/review/trustpilot.html +922 -0
- data/_layouts/appscms-home.html +3 -1
- data/_layouts/feature-1.html +3 -1
- data/_layouts/home-1.html +1 -0
- data/assets/.DS_Store +0 -0
- data/assets/css/appscms-theme.css +354 -0
- data/assets/css/tools.css +363 -0
- data/assets/images/.DS_Store +0 -0
- data/assets/images/idea.svg +95 -3552
- data/assets/js/appscms-search.js +114 -85
- metadata +8 -2
data/_layouts/appscms-home.html
CHANGED
@@ -37,7 +37,9 @@ assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
37
37
|
appscms/howto/howto.html -%} {%- if pageData.infographics.size > 0 -%} {%-
|
38
38
|
include appscms/infographics/infographics.html -%} {%- endif -%} {%- include
|
39
39
|
appscms/faq/faq.html -%} {%- include appscms/usp/usp.html -%} {%- if
|
40
|
-
pageData.posts.size > 0 -%}
|
40
|
+
pageData.posts.size > 0 -%}
|
41
|
+
{%- include appscms/reviews/trustpilot.html -%}
|
42
|
+
{%- include
|
41
43
|
appscms/customblog/pageRelatedPosts.html -%} {%- else -%} {%- if
|
42
44
|
categories.size > 0 or tags.size > 0 -%} {%- include
|
43
45
|
appscms/recent-posts/related_categories_post.html -%} {%- else -%} {%-
|
data/_layouts/feature-1.html
CHANGED
@@ -267,7 +267,9 @@
|
|
267
267
|
</section>
|
268
268
|
{%- endif -%} {%- endif -%} {%- include share/socialshare.html -%} {%-
|
269
269
|
include Rating/rating.html -%} {%- if featureData.infographics.size > 0 -%}
|
270
|
-
{%- include infographics/infographics.html -%} {%- endif -%}
|
270
|
+
{%- include infographics/infographics.html -%} {%- endif -%}
|
271
|
+
{%- include appscms/reviews/trustpilot.html -%}
|
272
|
+
{%- assign
|
271
273
|
langen = "en" -%} {%- if site.data[folder][langen][file].categories -%} {%
|
272
274
|
assign categories= site.data[folder][langen][file].categories %} {%- else
|
273
275
|
-%} {% assign categories= page.categories %} {%- endif -%} {%- if
|
data/_layouts/home-1.html
CHANGED
data/assets/.DS_Store
CHANGED
Binary file
|
@@ -2588,3 +2588,357 @@ select:focus {
|
|
2588
2588
|
margin-right: 0;
|
2589
2589
|
}
|
2590
2590
|
}
|
2591
|
+
.icon_box img {
|
2592
|
+
border-radius: 9px;
|
2593
|
+
padding: 4px;
|
2594
|
+
}
|
2595
|
+
|
2596
|
+
.search-container {
|
2597
|
+
display: flex;
|
2598
|
+
border: 1px solid #ccc;
|
2599
|
+
border-radius: 5px;
|
2600
|
+
overflow: hidden;
|
2601
|
+
height: 38px;
|
2602
|
+
width: 400px;
|
2603
|
+
background-color: white;
|
2604
|
+
position: relative;
|
2605
|
+
}
|
2606
|
+
|
2607
|
+
.search-input {
|
2608
|
+
flex: 1;
|
2609
|
+
border: none;
|
2610
|
+
padding: 12px 16px;
|
2611
|
+
font-size: 16px;
|
2612
|
+
outline: none;
|
2613
|
+
}
|
2614
|
+
|
2615
|
+
.search-input::placeholder {
|
2616
|
+
color: #888;
|
2617
|
+
}
|
2618
|
+
|
2619
|
+
.search-button {
|
2620
|
+
background-color: var(--primary-color);
|
2621
|
+
border: none;
|
2622
|
+
padding: 0 16px;
|
2623
|
+
display: flex;
|
2624
|
+
align-items: center;
|
2625
|
+
justify-content: center;
|
2626
|
+
cursor: pointer;
|
2627
|
+
outline: none;
|
2628
|
+
border-radius: 0 !important;
|
2629
|
+
}
|
2630
|
+
|
2631
|
+
.search-button svg {
|
2632
|
+
/* fill: #fff; */
|
2633
|
+
height: 20px;
|
2634
|
+
}
|
2635
|
+
|
2636
|
+
.search-button:active {
|
2637
|
+
background-color: #555;
|
2638
|
+
}
|
2639
|
+
.nav-search{
|
2640
|
+
position: relative;
|
2641
|
+
}
|
2642
|
+
.result-item{
|
2643
|
+
padding: 9px 12px;
|
2644
|
+
}
|
2645
|
+
.result-item a{
|
2646
|
+
color: #222325;
|
2647
|
+
}
|
2648
|
+
.searchbarResults{
|
2649
|
+
overflow: scroll;
|
2650
|
+
height: 60vh;
|
2651
|
+
background-color: #fff;
|
2652
|
+
border: 1px solid #e4e5e7;
|
2653
|
+
border-radius: 6px;
|
2654
|
+
-webkit-box-shadow: 0 17px 58px rgba(0, 0, 0, .08);
|
2655
|
+
box-shadow: 0 17px 58px rgba(0, 0, 0, .08);
|
2656
|
+
-webkit-box-sizing: border-box;
|
2657
|
+
box-sizing: border-box;
|
2658
|
+
color: #74767e;
|
2659
|
+
cursor: default;
|
2660
|
+
margin-top: 8px;
|
2661
|
+
padding: 12px;
|
2662
|
+
position: absolute;
|
2663
|
+
width: 100%;
|
2664
|
+
z-index: 101;
|
2665
|
+
display: none;
|
2666
|
+
}
|
2667
|
+
|
2668
|
+
|
2669
|
+
|
2670
|
+
.scroll-container {
|
2671
|
+
display: flex;
|
2672
|
+
align-items: center;
|
2673
|
+
background-color: #333;
|
2674
|
+
position: relative;
|
2675
|
+
}
|
2676
|
+
|
2677
|
+
.scroll-left,
|
2678
|
+
.scroll-right {
|
2679
|
+
background-color: #4456f6f7;
|
2680
|
+
color: white;
|
2681
|
+
border: none;
|
2682
|
+
height: 40px;
|
2683
|
+
cursor: pointer;
|
2684
|
+
position: absolute;
|
2685
|
+
width: 40px;
|
2686
|
+
top: 50%;
|
2687
|
+
z-index: 100;
|
2688
|
+
transform: translateY(-50%);
|
2689
|
+
}
|
2690
|
+
|
2691
|
+
.scroll-left {
|
2692
|
+
left: 0;
|
2693
|
+
}
|
2694
|
+
|
2695
|
+
.scroll-right {
|
2696
|
+
right: 0;
|
2697
|
+
}
|
2698
|
+
|
2699
|
+
.scroll-left:hover,
|
2700
|
+
.scroll-right:hover {
|
2701
|
+
background-color: #8691f6f7;
|
2702
|
+
}
|
2703
|
+
|
2704
|
+
.navbar {
|
2705
|
+
/* overflow-x: auto; */
|
2706
|
+
white-space: nowrap;
|
2707
|
+
flex-grow: 1;
|
2708
|
+
scroll-behavior: smooth;
|
2709
|
+
display: flex;
|
2710
|
+
}
|
2711
|
+
|
2712
|
+
.navbar ul {
|
2713
|
+
padding: 0;
|
2714
|
+
margin: 0;
|
2715
|
+
display: flex;
|
2716
|
+
list-style-type: none;
|
2717
|
+
}
|
2718
|
+
|
2719
|
+
.navbar li {
|
2720
|
+
display: inline;
|
2721
|
+
}
|
2722
|
+
|
2723
|
+
|
2724
|
+
|
2725
|
+
.mobile-search-bar {
|
2726
|
+
position: relative;
|
2727
|
+
height: 100px;
|
2728
|
+
width: 100%;
|
2729
|
+
display: none;
|
2730
|
+
}
|
2731
|
+
|
2732
|
+
.mobile-search-container {
|
2733
|
+
display: flex;
|
2734
|
+
border: 1px solid #ccc;
|
2735
|
+
border-radius: 5px;
|
2736
|
+
overflow: hidden;
|
2737
|
+
height: 38px;
|
2738
|
+
margin: 20px 0px 20px 0px;
|
2739
|
+
background-color: white;
|
2740
|
+
position: relative;
|
2741
|
+
}
|
2742
|
+
|
2743
|
+
.mobile-search-input {
|
2744
|
+
flex: 1;
|
2745
|
+
border: none;
|
2746
|
+
padding: 12px 16px;
|
2747
|
+
font-size: 16px;
|
2748
|
+
outline: none;
|
2749
|
+
}
|
2750
|
+
|
2751
|
+
.mobile-search-input::placeholder {
|
2752
|
+
color: #888;
|
2753
|
+
}
|
2754
|
+
|
2755
|
+
.mobile-search-button {
|
2756
|
+
background-color: #000;
|
2757
|
+
border: none;
|
2758
|
+
padding: 0 16px;
|
2759
|
+
display: flex;
|
2760
|
+
align-items: center;
|
2761
|
+
justify-content: center;
|
2762
|
+
cursor: pointer;
|
2763
|
+
outline: none;
|
2764
|
+
}
|
2765
|
+
|
2766
|
+
.mobile-search-button svg {
|
2767
|
+
/* fill: #fff; */
|
2768
|
+
height: 20px;
|
2769
|
+
}
|
2770
|
+
|
2771
|
+
.mobile-search-button:active {
|
2772
|
+
background-color: #555;
|
2773
|
+
}
|
2774
|
+
|
2775
|
+
.mobile-nav-search {
|
2776
|
+
position: relative;
|
2777
|
+
}
|
2778
|
+
|
2779
|
+
.mobile-result-item {
|
2780
|
+
padding: 9px 12px;
|
2781
|
+
}
|
2782
|
+
|
2783
|
+
.mobile-result-item a {
|
2784
|
+
color: #222325;
|
2785
|
+
}
|
2786
|
+
|
2787
|
+
.mobile-searchbarResults {
|
2788
|
+
background-color: #fff;
|
2789
|
+
border: 1px solid #e4e5e7;
|
2790
|
+
border-radius: 6px;
|
2791
|
+
-webkit-box-shadow: 0 17px 58px rgba(0, 0, 0, .08);
|
2792
|
+
box-shadow: 0 17px 58px rgba(0, 0, 0, .08);
|
2793
|
+
-webkit-box-sizing: border-box;
|
2794
|
+
box-sizing: border-box;
|
2795
|
+
color: #74767e;
|
2796
|
+
cursor: default;
|
2797
|
+
margin-top: 8px;
|
2798
|
+
padding: 12px;
|
2799
|
+
position: fixed;
|
2800
|
+
margin-top: 42px;
|
2801
|
+
width: 244px;
|
2802
|
+
height: 400px;
|
2803
|
+
overflow-y: scroll;
|
2804
|
+
z-index: 101;
|
2805
|
+
display: none;
|
2806
|
+
}
|
2807
|
+
.trustpilot-container {
|
2808
|
+
background-color: #eeeeee;
|
2809
|
+
width: 100vw;
|
2810
|
+
|
2811
|
+
padding-top: 8rem;
|
2812
|
+
padding-bottom: 8rem;
|
2813
|
+
}
|
2814
|
+
|
2815
|
+
.trustpilot-container a {
|
2816
|
+
text-decoration: none;
|
2817
|
+
}
|
2818
|
+
|
2819
|
+
.trustpilot-h2 {
|
2820
|
+
font-size: 24px;
|
2821
|
+
text-align: center;
|
2822
|
+
font-weight: bold;
|
2823
|
+
}
|
2824
|
+
|
2825
|
+
.trustpilot-description {
|
2826
|
+
font-size: 15px;
|
2827
|
+
text-align: center;
|
2828
|
+
}
|
2829
|
+
|
2830
|
+
.review-container {
|
2831
|
+
display: flex;
|
2832
|
+
}
|
2833
|
+
|
2834
|
+
|
2835
|
+
|
2836
|
+
.reviews {
|
2837
|
+
display: flex;
|
2838
|
+
overflow: hidden;
|
2839
|
+
}
|
2840
|
+
|
2841
|
+
.review-stars {
|
2842
|
+
display: flex;
|
2843
|
+
align-items: center;
|
2844
|
+
}
|
2845
|
+
|
2846
|
+
.review-stars svg {
|
2847
|
+
height: 18px;
|
2848
|
+
width: 18px;
|
2849
|
+
}
|
2850
|
+
|
2851
|
+
.review-verified {
|
2852
|
+
margin-left: 5px;
|
2853
|
+
display: flex;
|
2854
|
+
align-items: center;
|
2855
|
+
font-size: 13px;
|
2856
|
+
color: #676767;
|
2857
|
+
}
|
2858
|
+
|
2859
|
+
.review-text {
|
2860
|
+
color: #1a1a1a;
|
2861
|
+
font-size: 14px;
|
2862
|
+
display: -webkit-box;
|
2863
|
+
-webkit-line-clamp: 3;
|
2864
|
+
-webkit-box-orient: vertical;
|
2865
|
+
overflow: hidden;
|
2866
|
+
text-overflow: ellipsis;
|
2867
|
+
}
|
2868
|
+
|
2869
|
+
.review-title {
|
2870
|
+
font-weight: 600;
|
2871
|
+
color: #1a1a1a;
|
2872
|
+
font-size: 16px;
|
2873
|
+
}
|
2874
|
+
|
2875
|
+
.reviewer-name {
|
2876
|
+
color: #646565;
|
2877
|
+
font-size: 14px;
|
2878
|
+
}
|
2879
|
+
|
2880
|
+
.trustpilot-arrow-left,
|
2881
|
+
.trustpilot-arrow-right {
|
2882
|
+
position: absolute;
|
2883
|
+
top: 30%;
|
2884
|
+
background-color: #fff;
|
2885
|
+
border: none;
|
2886
|
+
display: flex;
|
2887
|
+
align-items: center;
|
2888
|
+
justify-content: center;
|
2889
|
+
border-radius: 50%;
|
2890
|
+
padding: 2px;
|
2891
|
+
height: 30px;
|
2892
|
+
width: 30px;
|
2893
|
+
}
|
2894
|
+
|
2895
|
+
.trustpilot-arrow-left svg,
|
2896
|
+
.trustpilot-arrow-right svg {
|
2897
|
+
color: #1a1a1a;
|
2898
|
+
height: 20px;
|
2899
|
+
width: 20px;
|
2900
|
+
}
|
2901
|
+
.trustpilot-arrow-left {
|
2902
|
+
left: -20px;
|
2903
|
+
}
|
2904
|
+
.trustpilot-arrow-right {
|
2905
|
+
right: 0;
|
2906
|
+
}
|
2907
|
+
.trustpilot-end{
|
2908
|
+
font-size: 15px;
|
2909
|
+
text-align: center;
|
2910
|
+
color: #1A1A1A;
|
2911
|
+
}
|
2912
|
+
.trustpilot-total-reviews,.trustpilot-rating{
|
2913
|
+
color: #000;
|
2914
|
+
font-weight: bold;
|
2915
|
+
}
|
2916
|
+
/* Styles for mobile devices (max-width: 767px) */
|
2917
|
+
@media only screen and (max-width: 1024px) {
|
2918
|
+
.review {
|
2919
|
+
flex: 0 0 calc(100% / 1);
|
2920
|
+
}
|
2921
|
+
}
|
2922
|
+
@media only screen and (max-width: 768px) {
|
2923
|
+
.trustpilot-arrow-left {
|
2924
|
+
left: 25px;
|
2925
|
+
}
|
2926
|
+
.trustpilot-arrow-right {
|
2927
|
+
right: 25px;
|
2928
|
+
}
|
2929
|
+
.review{
|
2930
|
+
padding: 0px 50px;
|
2931
|
+
}
|
2932
|
+
}
|
2933
|
+
|
2934
|
+
.reviews {
|
2935
|
+
display: flex;
|
2936
|
+
overflow: hidden;
|
2937
|
+
/* width: 300px; Set to the width of one review card */
|
2938
|
+
transition: transform 0.3s ease;
|
2939
|
+
}
|
2940
|
+
|
2941
|
+
.review {
|
2942
|
+
width: 300px; /* Set each review card width to match the `.reviews` container */
|
2943
|
+
flex-shrink: 0;
|
2944
|
+
}
|