appscms-tools-theme 4.8.7 → 4.8.9
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/en/compress-pdf.json +7 -3
- data/_includes/.DS_Store +0 -0
- data/_includes/appscms/infographics/infographics.html +189 -99
- data/_layouts/appscms-batch.html +1 -6
- data/_layouts/appscms-calculator.html +86 -67
- data/assets/.DS_Store +0 -0
- data/assets/css/appscms-feature.css +0 -398
- data/assets/css/appscms-theme.css +398 -0
- data/assets/js/.DS_Store +0 -0
- data/assets/js/appscms-theme.js +14 -10
- metadata +3 -2
@@ -2190,3 +2190,401 @@ select:focus {
|
|
2190
2190
|
grid-template-columns: auto; /* 1 column for small screens */
|
2191
2191
|
}
|
2192
2192
|
}
|
2193
|
+
.nav-tool-bar {
|
2194
|
+
position: sticky;
|
2195
|
+
top: 0;
|
2196
|
+
width: 100%;
|
2197
|
+
z-index: 999;
|
2198
|
+
}
|
2199
|
+
.appscms-upload-section {
|
2200
|
+
height: 290px;
|
2201
|
+
border: 2px dashed #484848;
|
2202
|
+
padding: 20px;
|
2203
|
+
border-radius: 20px;
|
2204
|
+
display: flex;
|
2205
|
+
align-items: center;
|
2206
|
+
justify-content: center;
|
2207
|
+
background-color: white;
|
2208
|
+
gap: 10px;
|
2209
|
+
}
|
2210
|
+
.upload-btn {
|
2211
|
+
text-align: center;
|
2212
|
+
background-color: rgb(29, 22, 232);
|
2213
|
+
color: white;
|
2214
|
+
border-radius: 10px;
|
2215
|
+
width: 195px;
|
2216
|
+
height: 41px;
|
2217
|
+
padding: 10px;
|
2218
|
+
cursor: pointer;
|
2219
|
+
}
|
2220
|
+
.appscms-upload-section {
|
2221
|
+
display: flex;
|
2222
|
+
flex-direction: column;
|
2223
|
+
box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.17);
|
2224
|
+
}
|
2225
|
+
|
2226
|
+
.or-in-upload {
|
2227
|
+
display: flex;
|
2228
|
+
align-items: center;
|
2229
|
+
gap: 8px;
|
2230
|
+
font-size: 13px;
|
2231
|
+
}
|
2232
|
+
.line-in-upload {
|
2233
|
+
height: 1.5px;
|
2234
|
+
width: 60px;
|
2235
|
+
background-color: rgb(146, 146, 146);
|
2236
|
+
}
|
2237
|
+
.appscms-feature-image {
|
2238
|
+
max-width: 75px;
|
2239
|
+
}
|
2240
|
+
.appscms-feature-title {
|
2241
|
+
font-size: 17px;
|
2242
|
+
margin-top: 15px;
|
2243
|
+
font-weight: 600;
|
2244
|
+
margin-bottom: 0.5rem;
|
2245
|
+
}
|
2246
|
+
|
2247
|
+
.appscms-feature-description {
|
2248
|
+
font-size: 14px;
|
2249
|
+
line-height: 22px;
|
2250
|
+
margin-bottom: 0;
|
2251
|
+
}
|
2252
|
+
|
2253
|
+
/* how to section */
|
2254
|
+
.appscms-how-to-section {
|
2255
|
+
border-radius: 10px;
|
2256
|
+
background-color: #f4f5ff;
|
2257
|
+
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
|
2258
|
+
}
|
2259
|
+
.appscms-howto-heading {
|
2260
|
+
/* margin-top: 40px; */
|
2261
|
+
font-size: 25px;
|
2262
|
+
font-weight: 500;
|
2263
|
+
}
|
2264
|
+
.how-to-video-wrapper {
|
2265
|
+
display: flex;
|
2266
|
+
align-items: center;
|
2267
|
+
justify-content: center;
|
2268
|
+
height: 100%;
|
2269
|
+
}
|
2270
|
+
|
2271
|
+
.appscms-howto-steps {
|
2272
|
+
font-size: 1rem;
|
2273
|
+
font-weight: normal;
|
2274
|
+
line-height: 200%;
|
2275
|
+
}
|
2276
|
+
|
2277
|
+
/* faq section */
|
2278
|
+
.faq-section {
|
2279
|
+
text-align: left;
|
2280
|
+
}
|
2281
|
+
|
2282
|
+
.faq-item {
|
2283
|
+
box-shadow: 5px 2px 8px rgba(0, 0, 0, 0.1);
|
2284
|
+
margin-bottom: 15px;
|
2285
|
+
background: white;
|
2286
|
+
padding: 1.5rem;
|
2287
|
+
border-radius: 7px;
|
2288
|
+
}
|
2289
|
+
|
2290
|
+
.faq-question {
|
2291
|
+
font-size: 25px;
|
2292
|
+
font-weight: 500;
|
2293
|
+
|
2294
|
+
margin-bottom: 10px;
|
2295
|
+
}
|
2296
|
+
|
2297
|
+
.faq-answer {
|
2298
|
+
font-size: 16px;
|
2299
|
+
font-weight: normal;
|
2300
|
+
margin-bottom: 20px;
|
2301
|
+
}
|
2302
|
+
|
2303
|
+
.faq-answer-list {
|
2304
|
+
font-size: 17px;
|
2305
|
+
font-weight: normal;
|
2306
|
+
margin-left: 20px;
|
2307
|
+
}
|
2308
|
+
|
2309
|
+
/* recent posts */
|
2310
|
+
.appscms-recentposts {
|
2311
|
+
font-size: 30px;
|
2312
|
+
}
|
2313
|
+
|
2314
|
+
/* rating section */
|
2315
|
+
.ratings {
|
2316
|
+
display: flex;
|
2317
|
+
justify-content: center;
|
2318
|
+
align-items: center;
|
2319
|
+
background-color: rgb(252, 252, 252);
|
2320
|
+
border-radius: 50px;
|
2321
|
+
height: 70px;
|
2322
|
+
/* color: #000000; */
|
2323
|
+
}
|
2324
|
+
|
2325
|
+
.appsms-user-rating-count {
|
2326
|
+
font-size: 25px;
|
2327
|
+
font-weight: 600;
|
2328
|
+
}
|
2329
|
+
.appsms-user-total-count {
|
2330
|
+
position: relative;
|
2331
|
+
right: 20px;
|
2332
|
+
top: 2px;
|
2333
|
+
}
|
2334
|
+
|
2335
|
+
@media (max-width: 768px) {
|
2336
|
+
.upload-btn {
|
2337
|
+
width: 268px;
|
2338
|
+
padding: 15px;
|
2339
|
+
border-radius: 50px;
|
2340
|
+
font-size: 20px;
|
2341
|
+
height: auto;
|
2342
|
+
}
|
2343
|
+
.upload-from-drives img {
|
2344
|
+
height: 40px;
|
2345
|
+
width: 40px;
|
2346
|
+
}
|
2347
|
+
.drag-msg {
|
2348
|
+
display: none;
|
2349
|
+
}
|
2350
|
+
.appscms-upload-section {
|
2351
|
+
height: 100px;
|
2352
|
+
margin-top: 20px;
|
2353
|
+
background-color: transparent;
|
2354
|
+
box-shadow: none;
|
2355
|
+
border: none;
|
2356
|
+
}
|
2357
|
+
.appscms-upload-icon,
|
2358
|
+
.or-in-upload {
|
2359
|
+
display: none;
|
2360
|
+
}
|
2361
|
+
.rating-tool {
|
2362
|
+
flex-direction: column;
|
2363
|
+
display: flex;
|
2364
|
+
gap: 15px;
|
2365
|
+
height: auto;
|
2366
|
+
padding: 15px 0px;
|
2367
|
+
}
|
2368
|
+
.heading {
|
2369
|
+
padding-top: 70px;
|
2370
|
+
text-align: center;
|
2371
|
+
display: flex;
|
2372
|
+
align-items: center;
|
2373
|
+
justify-content: center;
|
2374
|
+
}
|
2375
|
+
.heading h1 {
|
2376
|
+
font-weight: 600;
|
2377
|
+
font-size: 30px;
|
2378
|
+
}
|
2379
|
+
.heading h2 {
|
2380
|
+
width: 80vw;
|
2381
|
+
font-size: 14px;
|
2382
|
+
text-align: center;
|
2383
|
+
}
|
2384
|
+
|
2385
|
+
.appscms-how-to-section {
|
2386
|
+
border-radius: 0px;
|
2387
|
+
background-color: transparent;
|
2388
|
+
box-shadow: none;
|
2389
|
+
}
|
2390
|
+
.appscms-howto-heading {
|
2391
|
+
text-align: center;
|
2392
|
+
margin-top: 40px;
|
2393
|
+
font-size: 23px;
|
2394
|
+
font-weight: 500;
|
2395
|
+
}
|
2396
|
+
|
2397
|
+
.appscms-howto-steps {
|
2398
|
+
font-size: 12px;
|
2399
|
+
font-weight: normal;
|
2400
|
+
line-height: 200%;
|
2401
|
+
}
|
2402
|
+
/* recent posts */
|
2403
|
+
.appscms-recentposts {
|
2404
|
+
font-size: 25px;
|
2405
|
+
}
|
2406
|
+
|
2407
|
+
/* faq section */
|
2408
|
+
.faq-question {
|
2409
|
+
font-size: 22px;
|
2410
|
+
margin-bottom: 18px;
|
2411
|
+
}
|
2412
|
+
|
2413
|
+
.faq-answer {
|
2414
|
+
font-size: 18px;
|
2415
|
+
margin-bottom: 2px;
|
2416
|
+
}
|
2417
|
+
|
2418
|
+
.faq-answer-list {
|
2419
|
+
font-size: 11px;
|
2420
|
+
}
|
2421
|
+
}
|
2422
|
+
|
2423
|
+
.upload-redirect {
|
2424
|
+
padding: 13px 1.5em 14px 1.5em;
|
2425
|
+
color: #fff;
|
2426
|
+
background-color: #5c5ce0;
|
2427
|
+
border-color: #5c5ce0;
|
2428
|
+
border-radius: 27px;
|
2429
|
+
font-size: 18px;
|
2430
|
+
font-weight: 600;
|
2431
|
+
border: none;
|
2432
|
+
}
|
2433
|
+
|
2434
|
+
#left-section {
|
2435
|
+
display: flex;
|
2436
|
+
flex-direction: column;
|
2437
|
+
align-items: baseline;
|
2438
|
+
justify-content: center;
|
2439
|
+
}
|
2440
|
+
|
2441
|
+
.right-section img {
|
2442
|
+
width: 90%;
|
2443
|
+
}
|
2444
|
+
|
2445
|
+
#left-section h1,
|
2446
|
+
#left-section h2 {
|
2447
|
+
text-align: left;
|
2448
|
+
width: 100%;
|
2449
|
+
}
|
2450
|
+
|
2451
|
+
.video-h1,
|
2452
|
+
.audio-h1 {
|
2453
|
+
font-weight: 600;
|
2454
|
+
font-size: 53px;
|
2455
|
+
}
|
2456
|
+
.toaster {
|
2457
|
+
top: 150px;
|
2458
|
+
padding: 12px 20px;
|
2459
|
+
color: #fff;
|
2460
|
+
display: inline-block;
|
2461
|
+
box-shadow: 0 3px 6px -1px rgb(0 0 0 / 12%),
|
2462
|
+
0 10px 36px -4px rgb(77 96 232 / 30%);
|
2463
|
+
background: var(--primary-color);
|
2464
|
+
position: fixed;
|
2465
|
+
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
|
2466
|
+
border-radius: 2px;
|
2467
|
+
right: 0px;
|
2468
|
+
cursor: pointer;
|
2469
|
+
text-decoration: none;
|
2470
|
+
max-width: calc(50% - 20px);
|
2471
|
+
z-index: 2147483647;
|
2472
|
+
}
|
2473
|
+
.inforgraphics_section {
|
2474
|
+
width: 100%;
|
2475
|
+
padding: 50px 0px 50px 0px;
|
2476
|
+
border-top: 1px solid rgb(224, 224, 224);
|
2477
|
+
display: flex;
|
2478
|
+
flex-direction: column;
|
2479
|
+
align-items: center;
|
2480
|
+
}
|
2481
|
+
|
2482
|
+
.inforgraphics_section .wrapper {
|
2483
|
+
display: flex;
|
2484
|
+
max-width: 90%;
|
2485
|
+
position: relative;
|
2486
|
+
}
|
2487
|
+
|
2488
|
+
.inforgraphics_section .wrapper i {
|
2489
|
+
top: 50%;
|
2490
|
+
height: 44px;
|
2491
|
+
width: 44px;
|
2492
|
+
color: #343f4f;
|
2493
|
+
cursor: pointer;
|
2494
|
+
font-size: 1.15rem;
|
2495
|
+
position: absolute;
|
2496
|
+
text-align: center;
|
2497
|
+
line-height: 44px;
|
2498
|
+
background: #eee;
|
2499
|
+
border-radius: 50%;
|
2500
|
+
transform: translateY(-50%);
|
2501
|
+
transition: transform 0.1s linear;
|
2502
|
+
}
|
2503
|
+
|
2504
|
+
.inforgraphics_section .wrapper i:active {
|
2505
|
+
transform: translateY(-50%) scale(0.9);
|
2506
|
+
}
|
2507
|
+
|
2508
|
+
.inforgraphics_section .wrapper i:hover {
|
2509
|
+
background: #f2f2f2;
|
2510
|
+
}
|
2511
|
+
|
2512
|
+
.inforgraphics_section .wrapper i:first-child {
|
2513
|
+
left: 0px;
|
2514
|
+
display: none;
|
2515
|
+
z-index: 999;
|
2516
|
+
}
|
2517
|
+
|
2518
|
+
.inforgraphics_section .wrapper i:last-child {
|
2519
|
+
right: 0px;
|
2520
|
+
}
|
2521
|
+
|
2522
|
+
.carousel {
|
2523
|
+
display: flex;
|
2524
|
+
max-width: 100%;
|
2525
|
+
overflow-x: scroll;
|
2526
|
+
scroll-snap-type: x mandatory;
|
2527
|
+
scroll-behavior: smooth;
|
2528
|
+
}
|
2529
|
+
|
2530
|
+
.carousel-inner {
|
2531
|
+
display: flex;
|
2532
|
+
flex-wrap: nowrap;
|
2533
|
+
justify-content: center;
|
2534
|
+
}
|
2535
|
+
@media screen and (max-width: 768px) {
|
2536
|
+
.carousel-inner {
|
2537
|
+
justify-content: normal;
|
2538
|
+
}
|
2539
|
+
}
|
2540
|
+
.slide {
|
2541
|
+
flex: 0 0 calc(100% / 3);
|
2542
|
+
scroll-snap-align: start;
|
2543
|
+
padding: 20px;
|
2544
|
+
}
|
2545
|
+
|
2546
|
+
.carousel img {
|
2547
|
+
width: 100%;
|
2548
|
+
object-fit: contain;
|
2549
|
+
max-width: 100%;
|
2550
|
+
height: auto;
|
2551
|
+
border-radius: 8px;
|
2552
|
+
}
|
2553
|
+
|
2554
|
+
.carousel-inner p {
|
2555
|
+
text-align: center;
|
2556
|
+
margin: 10px 0;
|
2557
|
+
font-size: 14px;
|
2558
|
+
white-space: normal;
|
2559
|
+
word-wrap: break-word;
|
2560
|
+
}
|
2561
|
+
|
2562
|
+
@media screen and (max-width: 768px) {
|
2563
|
+
.inforgraphics_section .wrapper {
|
2564
|
+
max-width: 100%;
|
2565
|
+
}
|
2566
|
+
|
2567
|
+
.carousel-inner p {
|
2568
|
+
font-size: 20px;
|
2569
|
+
}
|
2570
|
+
|
2571
|
+
.inforgraphics_section .wrapper i:first-child {
|
2572
|
+
left: 0;
|
2573
|
+
z-index: 99;
|
2574
|
+
}
|
2575
|
+
|
2576
|
+
.inforgraphics_section .wrapper i:last-child {
|
2577
|
+
right: 0;
|
2578
|
+
z-index: 99;
|
2579
|
+
display: block !important;
|
2580
|
+
}
|
2581
|
+
|
2582
|
+
.carousel {
|
2583
|
+
overflow-x: hidden;
|
2584
|
+
}
|
2585
|
+
|
2586
|
+
.slide {
|
2587
|
+
flex: 0 0 100%;
|
2588
|
+
margin-right: 0;
|
2589
|
+
}
|
2590
|
+
}
|
data/assets/js/.DS_Store
ADDED
Binary file
|
data/assets/js/appscms-theme.js
CHANGED
@@ -156,17 +156,21 @@ document.addEventListener("DOMContentLoaded", function() {
|
|
156
156
|
|
157
157
|
// Check if the button exists
|
158
158
|
const processingBtn = document.getElementById('processing-btn');
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
// Go back in history
|
168
|
-
history.back();
|
159
|
+
const buttonLoader = document.querySelector('.button-loader');
|
160
|
+
|
161
|
+
if (processingBtn && buttonLoader) {
|
162
|
+
// Use passive event listener
|
163
|
+
processingBtn.addEventListener('click', () => {
|
164
|
+
// Use requestAnimationFrame for visual changes
|
165
|
+
requestAnimationFrame(() => {
|
166
|
+
buttonLoader.style.display = 'block';
|
169
167
|
});
|
168
|
+
|
169
|
+
// Use setTimeout to defer non-critical operations
|
170
|
+
setTimeout(() => {
|
171
|
+
history.back();
|
172
|
+
}, 0);
|
173
|
+
}, { passive: true });
|
170
174
|
}
|
171
175
|
|
172
176
|
if ("{{ site.navigationSearch }}" === "true" ) {
|
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.8.
|
4
|
+
version: 4.8.9
|
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-
|
11
|
+
date: 2024-10-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -526,6 +526,7 @@ files:
|
|
526
526
|
- assets/images/vectorpaint.svg
|
527
527
|
- assets/images/video.png
|
528
528
|
- assets/instagram.svg
|
529
|
+
- assets/js/.DS_Store
|
529
530
|
- assets/js/TopScroll.js
|
530
531
|
- assets/js/adBlocker.js
|
531
532
|
- assets/js/ads.js
|