appscms-tools-theme 4.6.4 → 4.6.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4aea7884a301df8c0e6e3ff5664fb2c61b16e44394eb6a74d47a0372f621e7e8
4
- data.tar.gz: 7c62873b75bbcfef31aca661a1a59f44e21dd8da0524acfc61a2fa87faa5a01e
3
+ metadata.gz: 8617847597e5c20baf7ce884425e291b722a32e6965ba190083e0cdcb0ddbd0c
4
+ data.tar.gz: d0593ef334c47802ddf73254fad7926cd25d2d5baabdb76e3b7911d7c1cded9e
5
5
  SHA512:
6
- metadata.gz: c4cc84e13da968b2bd5b69605468c937e83bf81671aa60a09e5d7207fffe7f010c1672154175bc570471f3ce123c1489e494268987ba0e585d7bab74d2aeac3c
7
- data.tar.gz: b182143b4db87882ac62273f4a99365decb5d25aee59f484ddbf5d539e4356f720968136e2ddfe641bd39c675c3e67f1002246b5529f2337c8c0a402134b1e94
6
+ metadata.gz: 4ab7c04a58aa38d4748e73cacfe3dc946490995ababa568d6d07a670b2b3c0ef45df7dad967a8041e242f765ec0dd6e0b892948448bf44fa1c0f73e8c0f4374e
7
+ data.tar.gz: da96a8f0010fb38736a15be2f45c0c582774c4a65d079f7fb4cb1b9ea9ca9aaade289caec1893deabafe8b4085ce0391355926f8bcb4404e9bca7590977bf32e
@@ -110,15 +110,15 @@
110
110
  ],
111
111
  "infographics": [
112
112
  {
113
- "image": "/assets/images/1.webp",
113
+ "image": "/uploads/info.png",
114
114
  "description": "How to set alarm on wake me up at 4:45 am tool"
115
115
  },
116
116
  {
117
- "image": "/assets/images/2.webp",
117
+ "image": "/uploads/info.png",
118
118
  "description": "5 benefits of using wake me up at 4:45 am tool"
119
119
  },
120
120
  {
121
- "image": "/assets/images/3.webp",
121
+ "image": "/uploads/info.png",
122
122
  "description": "Additional features of wake me up at 4:45 am tool"
123
123
  }
124
124
  ],
@@ -18,6 +18,7 @@
18
18
  margin-top: 20px;
19
19
  }
20
20
  .modal1-body img {
21
+ width: 100%;
21
22
  height: auto;
22
23
  }
23
24
  .close1 {
@@ -35,29 +36,7 @@
35
36
  <div class="inforgraphics_section">
36
37
  <h3 class="text-center w-100 mb-5"><b>Other useful information</b></h3>
37
38
  <div class="wrapper">
38
- <svg
39
- id="left"
40
- viewBox="0 0 24 24"
41
- fill="none"
42
- xmlns="http://www.w3.org/2000/svg"
43
- >
44
- <g id="SVGRepo_bgCarrier" stroke-width="0"></g>
45
- <g
46
- id="SVGRepo_tracerCarrier"
47
- stroke-linecap="round"
48
- stroke-linejoin="round"
49
- ></g>
50
- <g id="SVGRepo_iconCarrier">
51
- <path
52
- d="M15 19.9201L8.47997 13.4001C7.70997 12.6301 7.70997 11.3701 8.47997 10.6001L15 4.08008"
53
- stroke="#292D32"
54
- stroke-width="1.5"
55
- stroke-miterlimit="10"
56
- stroke-linecap="round"
57
- stroke-linejoin="round"
58
- ></path>
59
- </g>
60
- </svg>
39
+ <i id="left" class="fas fa-angle-left"></i>
61
40
  <div class="carousel">
62
41
  <div class="carousel-inner">
63
42
  {%- if pageData.infographics -%} {% for item in pageData.infographics %}
@@ -75,28 +54,7 @@
75
54
  {% endfor %} {%- endif -%}
76
55
  </div>
77
56
  </div>
78
- <svg
79
- id="right"
80
- viewBox="0 0 24 24"
81
- fill="none"
82
- xmlns="http://www.w3.org/2000/svg"
83
- >
84
- <g id="SVGRepo_bgCarrier" stroke-width="0"></g>
85
- <g
86
- id="SVGRepo_tracerCarrier"
87
- stroke-linecap="round"
88
- stroke-linejoin="round"
89
- ></g>
90
- <g id="SVGRepo_iconCarrier">
91
- <path
92
- d="M9 5L14.15 10C14.4237 10.2563 14.6419 10.5659 14.791 10.9099C14.9402 11.2539 15.0171 11.625 15.0171 12C15.0171 12.375 14.9402 12.7458 14.791 13.0898C14.6419 13.4339 14.4237 13.7437 14.15 14L9 19"
93
- stroke="#000000"
94
- stroke-width="1.5"
95
- stroke-linecap="round"
96
- stroke-linejoin="round"
97
- ></path>
98
- </g>
99
- </svg>
57
+ <i id="right" class="fas fa-angle-right"></i>
100
58
  </div>
101
59
  </div>
102
60
  <div id="imageModal1" class="modal1" onclick="closeModal1()">
@@ -126,14 +84,14 @@
126
84
  });
127
85
  const carousel = document.querySelector(".carousel-inner"),
128
86
  firstImg = carousel.querySelectorAll("img")[0],
129
- arrowIcons = document.querySelectorAll(".wrapper svg");
87
+ arrowIcons = document.querySelectorAll(".wrapper i");
130
88
  const numImages = carousel.querySelectorAll("img").length;
131
89
  const isMobile = window.matchMedia("(max-width: 767px)").matches; // Check if screen width is less than or equal to 767px
132
90
  if (numImages > 3) {
133
91
  arrowIcons[1].style.display = "block";
134
92
  } else {
135
- // arrowIcons[0].style.display = "none";
136
- // arrowIcons[1].style.display = "none";
93
+ arrowIcons[0].style.display = "none";
94
+ arrowIcons[1].style.display = "none";
137
95
  }
138
96
  let isDragStart = false,
139
97
  isDragging = false,
@@ -148,7 +106,7 @@
148
106
  };
149
107
  arrowIcons.forEach((icon) => {
150
108
  icon.addEventListener("click", () => {
151
- let firstImgWidth = firstImg.clientWidth + 250;
109
+ let firstImgWidth = firstImg.clientWidth + 40;
152
110
  const scrollAmount = icon.id === "left" ? -firstImgWidth : firstImgWidth;
153
111
  carousel.scrollBy({
154
112
  left: scrollAmount,
@@ -77,4 +77,3 @@
77
77
  </div>
78
78
  </div>
79
79
  </div>
80
-
@@ -7,12 +7,33 @@
7
7
  class="col-xl-5 col-lg-4 col-md-8 col-sm-10 offset-md-1 offset-sm-0 mx-auto"
8
8
  >
9
9
  <div class="appscms-upload-section box">
10
-
11
- <div class="appscms-upload-icon mb-1">
12
- <svg height="55px" width="55px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path fill-rule="evenodd" clip-rule="evenodd" d="M12 2V7L12 7.05441C11.9999 7.47848 11.9998 7.8906 12.0455 8.23052C12.097 8.61372 12.2226 9.051 12.5858 9.41421C12.949 9.77743 13.3863 9.90295 13.7695 9.95447C14.1094 10.0002 14.5215 10.0001 14.9456 10H14.9456H14.9456H14.9456L15 10H20V16C20 18.8284 20 20.2426 19.1213 21.1213C18.2426 22 16.8284 22 14 22H10C7.17157 22 5.75736 22 4.87868 21.1213C4 20.2426 4 18.8284 4 16V8C4 5.17157 4 3.75736 4.87868 2.87868C5.75736 2 7.17157 2 10 2H12ZM14 2.00462V7C14 7.49967 14.0021 7.77383 14.0277 7.96402L14.0287 7.97131L14.036 7.97231C14.2262 7.99788 14.5003 8 15 8H19.9954C19.9852 7.58836 19.9525 7.31595 19.8478 7.06306C19.6955 6.69552 19.4065 6.40649 18.8284 5.82843L16.1716 3.17157C15.5935 2.59351 15.3045 2.30448 14.9369 2.15224C14.684 2.04749 14.4116 2.01481 14 2.00462ZM8 13C8 12.4477 8.44772 12 9 12L15 12C15.5523 12 16 12.4477 16 13C16 13.5523 15.5523 14 15 14L9 14C8.44772 14 8 13.5523 8 13ZM9 16C8.44772 16 8 16.4477 8 17C8 17.5523 8.44772 18 9 18H13C13.5523 18 14 17.5523 14 17C14 16.4477 13.5523 16 13 16H9Z" fill="#000"></path> </g></svg>
10
+ <div class="appscms-upload-icon mb-1">
11
+ <svg
12
+ height="55px"
13
+ width="55px"
14
+ viewBox="0 0 24 24"
15
+ fill="none"
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ >
18
+ <g id="SVGRepo_bgCarrier" stroke-width="0"></g>
19
+ <g
20
+ id="SVGRepo_tracerCarrier"
21
+ stroke-linecap="round"
22
+ stroke-linejoin="round"
23
+ ></g>
24
+ <g id="SVGRepo_iconCarrier">
25
+ <path
26
+ fill-rule="evenodd"
27
+ clip-rule="evenodd"
28
+ d="M12 2V7L12 7.05441C11.9999 7.47848 11.9998 7.8906 12.0455 8.23052C12.097 8.61372 12.2226 9.051 12.5858 9.41421C12.949 9.77743 13.3863 9.90295 13.7695 9.95447C14.1094 10.0002 14.5215 10.0001 14.9456 10H14.9456H14.9456H14.9456L15 10H20V16C20 18.8284 20 20.2426 19.1213 21.1213C18.2426 22 16.8284 22 14 22H10C7.17157 22 5.75736 22 4.87868 21.1213C4 20.2426 4 18.8284 4 16V8C4 5.17157 4 3.75736 4.87868 2.87868C5.75736 2 7.17157 2 10 2H12ZM14 2.00462V7C14 7.49967 14.0021 7.77383 14.0277 7.96402L14.0287 7.97131L14.036 7.97231C14.2262 7.99788 14.5003 8 15 8H19.9954C19.9852 7.58836 19.9525 7.31595 19.8478 7.06306C19.6955 6.69552 19.4065 6.40649 18.8284 5.82843L16.1716 3.17157C15.5935 2.59351 15.3045 2.30448 14.9369 2.15224C14.684 2.04749 14.4116 2.01481 14 2.00462ZM8 13C8 12.4477 8.44772 12 9 12L15 12C15.5523 12 16 12.4477 16 13C16 13.5523 15.5523 14 15 14L9 14C8.44772 14 8 13.5523 8 13ZM9 16C8.44772 16 8 16.4477 8 17C8 17.5523 8.44772 18 9 18H13C13.5523 18 14 17.5523 14 17C14 16.4477 13.5523 16 13 16H9Z"
29
+ fill="#000"
30
+ ></path>
31
+ </g>
32
+ </svg>
13
33
  </div>
14
34
  <div for="image-upload" class="upload-btn">
15
- {{site.uploadButtonText | default: "Upload Image" }}
35
+ {{ page.uploadButtonText | default: site.uploadButtonText | default:
36
+ "Upload Image" }}
16
37
  </div>
17
38
 
18
39
  <div class="upload-from-drives">
@@ -31,14 +52,13 @@
31
52
  alt="dropbox"
32
53
  />
33
54
  </div>
34
-
55
+
35
56
  <div class="or-in-upload">
36
57
  <div class="line-in-upload"></div>
37
58
  <span>or</span>
38
59
  <div class="line-in-upload"></div>
39
60
  </div>
40
61
  <span class="drag-msg">drag and drop here</span>
41
-
42
62
  </div>
43
63
  </div>
44
64
  </div>
@@ -291,7 +291,6 @@
291
291
  display: flex;
292
292
  max-width: 90%;
293
293
  position: relative;
294
- align-items: center;
295
294
  }
296
295
 
297
296
  .inforgraphics_section .wrapper i {
@@ -350,14 +349,12 @@
350
349
  flex: 0 0 calc(100% / 3);
351
350
  scroll-snap-align: start;
352
351
  padding: 20px;
353
- display: flex;
354
- align-items: center;
355
- justify-content: center;
356
- flex-direction: column;
357
352
  }
358
353
 
359
354
  .carousel img {
355
+ width: 100%;
360
356
  object-fit: contain;
357
+ max-width: 100%;
361
358
  height: auto;
362
359
  border-radius: 8px;
363
360
  }
@@ -399,16 +396,3 @@
399
396
  margin-right: 0;
400
397
  }
401
398
  }
402
-
403
- .modal1-body {
404
- display: flex;
405
- align-items: center;
406
- justify-content: center;
407
- height: 100vh;
408
- }
409
-
410
- .inforgraphics_section #right,
411
- .inforgraphics_section #left {
412
- height: 35px;
413
- width: 200px;
414
- }
@@ -2006,3 +2006,78 @@ select:focus {
2006
2006
  box-shadow: 0 0 0 0.2rem #1d16e840 !important;
2007
2007
  outline: none !important;
2008
2008
  }
2009
+
2010
+ .icon_box svg {
2011
+ background-color: #1b2fe7c0;
2012
+ padding: 4px;
2013
+ border-radius: 3px;
2014
+ fill: #1b2fe7;
2015
+ }
2016
+
2017
+ .expand_menu-name-categiry {
2018
+ font-weight: 600;
2019
+ font-size: 12px;
2020
+ color: #828586;
2021
+ padding-left: 8px;
2022
+ margin-bottom: 8px;
2023
+ }
2024
+ .category-tools__item {
2025
+ padding: 8px;
2026
+ border-radius: 8px;
2027
+ margin-top: 8px;
2028
+ }
2029
+ .icon_box {
2030
+ width: 56px;
2031
+ height: 56px;
2032
+ border-radius: 8px;
2033
+ display: -webkit-inline-box;
2034
+ display: -ms-inline-flexbox;
2035
+ display: inline-flex;
2036
+ -webkit-box-align: center;
2037
+ -ms-flex-align: center;
2038
+ -webkit-box-pack: center;
2039
+ -ms-flex-pack: center;
2040
+ justify-content: center;
2041
+ margin-top: 3px;
2042
+ flex-shrink: 0;
2043
+ }
2044
+ .category-tools__content {
2045
+ margin-left: 10px;
2046
+ }
2047
+ .category-tools__item {
2048
+ display: flex;
2049
+ }
2050
+ .category-tools__item h4 {
2051
+ margin: 0;
2052
+ font-weight: 600;
2053
+ font-size: 17px;
2054
+ line-height: 1.5;
2055
+ color: #181d20;
2056
+ white-space: nowrap;
2057
+ }
2058
+ .category-tools__descr {
2059
+ font-weight: 400;
2060
+ font-size: 13px;
2061
+
2062
+ color: #000;
2063
+ }
2064
+ .mega_menu {
2065
+ padding: 0;
2066
+ }
2067
+ .expand_menu .mega_menu li a {
2068
+ font-weight: 500;
2069
+ line-height: 1.5;
2070
+ color: #181d20;
2071
+ padding-top: 8px;
2072
+ padding-bottom: 8px;
2073
+ align-items: center;
2074
+ }
2075
+
2076
+ .mega_menu li a {
2077
+ font-weight: 500;
2078
+ line-height: 2;
2079
+ color: #181d20;
2080
+ padding-top: 8px;
2081
+ padding-bottom: 8px;
2082
+ font-size: 17px;
2083
+ }
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: 4.6.4
4
+ version: 4.6.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-15 00:00:00.000000000 Z
11
+ date: 2024-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll