appscms-tools-theme 3.7.5 → 3.7.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/_data/feature/en/3_shop_posters.json +8 -8
  3. data/_data/feature/en/allele-frequency.json +1 -1
  4. data/_data/feature/en/batch-conversion.json +1 -1
  5. data/_data/feature/en/compress-pdf.json +1 -1
  6. data/_data/feature/en/devtools.json +1 -1
  7. data/_data/feature/en/face-detection.json +1 -1
  8. data/_data/feature/en/split-pdf.json +1 -1
  9. data/_data/feature/en/theframe.json +1 -1
  10. data/_data/feature/hi/compress-pdf.json +1 -1
  11. data/_data/feature/tr/compress-pdf.json +1 -1
  12. data/_data/header/en/data.json +2 -2
  13. data/_data/home/en/en.json +1 -1
  14. data/_data/home/en/photoeffects.json +1 -1
  15. data/_data/home-1/en/en.json +1 -1
  16. data/_includes/.DS_Store +0 -0
  17. data/_includes/appscms/category-tabs/category-tabs.html +17 -0
  18. data/_includes/appscms/extras/ratings.html +33 -0
  19. data/_includes/appscms/extras/recent-posts.html +1 -0
  20. data/_includes/appscms/extras/traffic-count.html +21 -0
  21. data/_includes/appscms/faq/faq.html +46 -0
  22. data/_includes/appscms/featurehighlight/featurehighlight.html +56 -0
  23. data/_includes/appscms/footer/footer.html +283 -0
  24. data/_includes/appscms/footer/products.html +40 -0
  25. data/_includes/appscms/head/head.html +611 -0
  26. data/_includes/appscms/headings/headings.html +19 -0
  27. data/_includes/appscms/home/feature-boxes.html +21 -0
  28. data/_includes/appscms/howto/howto.html +74 -0
  29. data/_includes/appscms/navbars/navbar.html +50 -0
  30. data/_includes/appscms/navbars/toolbar.html +49 -0
  31. data/_includes/appscms/recent-posts/recent-posts.html +90 -0
  32. data/_includes/appscms/scripts/script.html +135 -0
  33. data/_includes/appscms/searchbar/searchbar.html +22 -0
  34. data/_includes/appscms/uploadbutton/uploadbutton.html +44 -0
  35. data/_layouts/appscms-blog.html +31 -0
  36. data/_layouts/appscms-feature.html +32 -0
  37. data/_layouts/appscms-home.html +27 -0
  38. data/_layouts/feature.html +7 -6
  39. data/assets/.DS_Store +0 -0
  40. data/assets/css/appscms-feature.css +362 -0
  41. data/assets/css/appscms-home.css +0 -0
  42. data/assets/css/appscms-theme.css +780 -0
  43. data/assets/document.png +0 -0
  44. data/assets/dropbox.png +0 -0
  45. data/assets/gdrive.png +0 -0
  46. data/assets/js/appscms-theme.js +62 -0
  47. metadata +31 -2
Binary file
Binary file
data/assets/gdrive.png ADDED
Binary file
@@ -0,0 +1,62 @@
1
+ const hamburger = document.querySelector("#hamburger");
2
+ const appscmsToolbar = document.querySelector(".appscms-toolbar");
3
+ const appscmsToolbarListItems = document.querySelectorAll(
4
+ ".appscms-toolbar-list-item-span"
5
+ );
6
+ hamburger.addEventListener("click", () => {
7
+ if (hamburger.dataset.open === "1") {
8
+ hamburger.dataset.open = "0";
9
+ appscmsToolbar.style.right = "-272px";
10
+ appscmsToolbar.style.display = "none";
11
+ hamburger.innerHTML =` <svg
12
+ style="font-size:25px"
13
+ stroke="currentColor"
14
+ fill="currentColor"
15
+ stroke-width="0"
16
+ viewBox="0 0 512 512"
17
+ aria-hidden="true"
18
+ focusable="false"
19
+ height="50px"
20
+ width="1em"
21
+ xmlns="http://www.w3.org/2000/svg"
22
+ >
23
+ <path
24
+ fill="none"
25
+ stroke-linecap="round"
26
+ stroke-miterlimit="10"
27
+ stroke-width="48"
28
+ d="M88 152h336M88 256h336M88 360h336"
29
+ ></path>
30
+ </svg>`
31
+ } else {
32
+ hamburger.dataset.open = "1";
33
+ appscmsToolbar.style.right = "0px";
34
+ appscmsToolbar.style.display = "block";
35
+ hamburger.innerHTML = `<svg height="50px"
36
+ width="1em" style="font-size:25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g clip-path="url(#clip0_429_11083)"> <path d="M7 7.00006L17 17.0001M7 17.0001L17 7.00006" stroke="#ffffff" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path> </g> <defs> <clipPath id="clip0_429_11083"> <rect width="24" height="24" fill="white"></rect> </clipPath> </defs> </g></svg>`
37
+ }
38
+ });
39
+ Array.from(appscmsToolbarListItems).map((item) => {
40
+ item.addEventListener("click", (e) => {
41
+ e.preventDefault();
42
+ var style = window.getComputedStyle(item.nextElementSibling);
43
+ var maxHeight = style.getPropertyValue("max-height");
44
+
45
+ if (maxHeight && maxHeight !== "0px") {
46
+ // If the item is expanded, collapse it
47
+ item.nextElementSibling.style.maxHeight = "0";
48
+ item.nextElementSibling.style.opacity = "0";
49
+ item.nextElementSibling.style.height = "0";
50
+ } else {
51
+ // If the item is collapsed, expand it
52
+ item.nextElementSibling.style.maxHeight =
53
+ item.nextElementSibling.scrollHeight + "px";
54
+ item.nextElementSibling.style.opacity = "1";
55
+ item.nextElementSibling.style.height = "auto";
56
+ }
57
+ });
58
+ });
59
+
60
+
61
+
62
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appscms-tools-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.7.5
4
+ version: 3.7.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-21 00:00:00.000000000 Z
11
+ date: 2023-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -101,12 +101,31 @@ files:
101
101
  - _data/privacy/en/privacyPolicy.json
102
102
  - _data/rating/rating.json
103
103
  - _data/termAndCondition/en/termAndCondition.json
104
+ - _includes/.DS_Store
104
105
  - _includes/Rating/rating.html
105
106
  - _includes/Rating/structureddata.html
106
107
  - _includes/Usp/usp.html
107
108
  - _includes/adblocker.html
108
109
  - _includes/adsense/adsense.html
109
110
  - _includes/alternates/alternates.html
111
+ - _includes/appscms/category-tabs/category-tabs.html
112
+ - _includes/appscms/extras/ratings.html
113
+ - _includes/appscms/extras/recent-posts.html
114
+ - _includes/appscms/extras/traffic-count.html
115
+ - _includes/appscms/faq/faq.html
116
+ - _includes/appscms/featurehighlight/featurehighlight.html
117
+ - _includes/appscms/footer/footer.html
118
+ - _includes/appscms/footer/products.html
119
+ - _includes/appscms/head/head.html
120
+ - _includes/appscms/headings/headings.html
121
+ - _includes/appscms/home/feature-boxes.html
122
+ - _includes/appscms/howto/howto.html
123
+ - _includes/appscms/navbars/navbar.html
124
+ - _includes/appscms/navbars/toolbar.html
125
+ - _includes/appscms/recent-posts/recent-posts.html
126
+ - _includes/appscms/scripts/script.html
127
+ - _includes/appscms/searchbar/searchbar.html
128
+ - _includes/appscms/uploadbutton/uploadbutton.html
110
129
  - _includes/author_bio.html
111
130
  - _includes/authorpagehead/index.html
112
131
  - _includes/authors/authors.html
@@ -152,6 +171,9 @@ files:
152
171
  - _includes/userTracking.html
153
172
  - _layouts/aboutUs.html
154
173
  - _layouts/allAuthors.html
174
+ - _layouts/appscms-blog.html
175
+ - _layouts/appscms-feature.html
176
+ - _layouts/appscms-home.html
155
177
  - _layouts/audio.html
156
178
  - _layouts/author.html
157
179
  - _layouts/batch.html
@@ -187,6 +209,9 @@ files:
187
209
  - assets/cloud.svg
188
210
  - assets/cross.svg
189
211
  - assets/css/adblocker.css
212
+ - assets/css/appscms-feature.css
213
+ - assets/css/appscms-home.css
214
+ - assets/css/appscms-theme.css
190
215
  - assets/css/batch.css
191
216
  - assets/css/blog-1.css
192
217
  - assets/css/blog.css
@@ -201,6 +226,8 @@ files:
201
226
  - assets/css/imagekit.css
202
227
  - assets/css/responsive.css
203
228
  - assets/css/tools.css
229
+ - assets/document.png
230
+ - assets/dropbox.png
204
231
  - assets/easy.svg
205
232
  - assets/facebook.svg
206
233
  - assets/fileimg/0RX6D8V.jpeg
@@ -316,6 +343,7 @@ files:
316
343
  - assets/fileimg/xbfyrdU.jpeg
317
344
  - assets/fileimg/xeDZX8x.jpeg
318
345
  - assets/fonts/Calligraphy.ttf
346
+ - assets/gdrive.png
319
347
  - assets/guaranty.svg
320
348
  - assets/homeimages/3_shop_posters-main.png
321
349
  - assets/idea.svg
@@ -402,6 +430,7 @@ files:
402
430
  - assets/js/adBlocker.js
403
431
  - assets/js/ads.js
404
432
  - assets/js/append-div.js
433
+ - assets/js/appscms-theme.js
405
434
  - assets/js/batch.js
406
435
  - assets/js/calculator-tooltip.js
407
436
  - assets/js/devtools.js