appscms-tools-theme 4.6.0 → 4.6.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -21,16 +21,21 @@
21
21
  {%- endif -%}
22
22
  {% for post in blogData %}
23
23
  {%- include authors/authors.html-%}
24
+ {% assign title = post.title %}
25
+ {% assign title_lower = title | downcase %}
26
+ {% assign title_hyphenated = title_lower | replace: ' ', '-' %}
27
+ {% assign blogUrl = title_hyphenated | replace: '!', '' | replace: '?', '' | replace: ',', '' | replace: '.', '' | replace: ';', '' | replace: ':', '' | replace: '&', '' | replace: '@', '' | replace: '#', '' | replace: '$', '' | replace: '%', '' | replace: '^', '' | replace: '*', '' | replace: '(', '' | replace: ')', '' | replace: '+', '' | replace: '=', '' | replace: '{', '' | replace: '}', '' | replace: '[', '' | replace: ']', '' | replace: '|', '' | replace: '\\', '' | replace: '/', '' | replace: '<', '' | replace: '>', '' | replace: '~', '' | replace: '`', '' | replace: '"', '' | replace: "'", '' %}
28
+
24
29
  <div class="{%- if site.monumetricId and page.url != '/' and page.lang == " en" -%} col-md-6 mb-4 card-group {%-
25
30
  else -%} col-lg-4 col-md-6 mb-4 card-group {%- endif -%} ">
26
31
  <div class="card h-100 appscms-blog-cards">
27
- <a class="extrapaddingforimg" href="/blog/{{ post.url }}" aria-label="{{post.title}}">
32
+ <a class="extrapaddingforimg" href="/blog/{{ blogUrl }}" aria-label="{{post.title}}">
28
33
  <img src="{{ post.image }}" loading="lazy" class="card-img-top" height="250"
29
34
  width="100%" alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%- endif
30
35
  -%}>
31
36
  </a>
32
37
  <div class="card-body">
33
- <a class="text-decoration-none text-dark" href="/blog/{{ post.url }}" class="anchor_link" aria-label="{{post.title}}">
38
+ <a class="text-decoration-none text-dark" href="/blog/{{ blogUrl }}" class="anchor_link" aria-label="{{post.title}}">
34
39
  <h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
35
40
  </a>
36
41
  <div class="wrapfooter">
@@ -40,12 +45,13 @@
40
45
  {% endif %}
41
46
 
42
47
  <div class="author-meta">
43
- <a class="post-name" target="_blank" href="/blog/">{{authorName}}</a>
48
+ <a class="post-name" target="_blank" href="/authors/{{authorName |downcase |replace:' ','-'}}">{{ authorName }}</a>
44
49
  {% assign path_parts = post.path | split: '/' %}
45
- {% assign date_parts = path_parts[1] | split: '-' %}
50
+ {% assign filename = path_parts[1] %}
51
+ {% assign date_parts = filename | split: '-' %}
46
52
  {% assign year = date_parts[0] %}
47
53
  {% assign month = date_parts[1] %}
48
- {% assign day = date_parts[2] | split: '-' | first %}
54
+ {% assign day = date_parts[2] %}
49
55
  <div class="post-date">{{ day }}-{{ month }}-{{ year }}</div>
50
56
  </div>
51
57
 
@@ -1,4 +1,3 @@
1
-
2
1
  * {
3
2
  box-sizing: border-box;
4
3
  font-family: "Inter", sans-serif;
@@ -10,9 +9,13 @@ body {
10
9
  -webkit-font-smoothing: antialiased;
11
10
  font-family: var(--font-family);
12
11
  overflow-x: hidden;
13
- background: radial-gradient(circle,rgba(168,237,223,.13) 0,rgba(166,143,248,.14) 50%);
12
+ background: radial-gradient(
13
+ circle,
14
+ rgba(168, 237, 223, 0.13) 0,
15
+ rgba(166, 143, 248, 0.14) 50%
16
+ );
14
17
  }
15
- .text-dark{
18
+ .text-dark {
16
19
  color: #000 !important;
17
20
  }
18
21
  /* appscms navbar */
@@ -145,7 +148,6 @@ body {
145
148
  background-color: var(--white-color);
146
149
  }
147
150
 
148
-
149
151
  .list-item-dropdown-heading {
150
152
  font-weight: 600;
151
153
  font-size: 13px;
@@ -198,7 +200,7 @@ body {
198
200
  }
199
201
 
200
202
  @media (max-width: 768px) {
201
- .list-item-dropdown .toolbar-link{
203
+ .list-item-dropdown .toolbar-link {
202
204
  color: #fff;
203
205
  }
204
206
  .close-nav-ham {
@@ -288,7 +290,6 @@ body {
288
290
  max-height: 200px;
289
291
  }
290
292
 
291
-
292
293
  .arrow-svg {
293
294
  display: block;
294
295
  }
@@ -494,7 +495,7 @@ body {
494
495
  background-color: rgba(255, 255, 255, 0.494);
495
496
  }
496
497
 
497
- .contenttool-img-wrap-blog{
498
+ .contenttool-img-wrap-blog {
498
499
  padding: 14px;
499
500
  }
500
501
  .appscms-blog-cards {
@@ -503,22 +504,21 @@ body {
503
504
  border-radius: 10px !important;
504
505
  /* max-width: 340px; */
505
506
  /* min-width: 300px; */
506
-
507
507
  }
508
- .card-title{
508
+ .card-title {
509
509
  font-size: 16px;
510
510
  }
511
511
 
512
- .card-img-top{
512
+ .card-img-top {
513
513
  height: auto;
514
514
  }
515
- .card-footer{
515
+ .card-footer {
516
516
  border: none !important;
517
517
  border-radius: 10px !important;
518
518
  background: white;
519
519
  }
520
520
 
521
- .post-read-more{
521
+ .post-read-more {
522
522
  font-size: 13px;
523
523
  display: flex;
524
524
  align-items: center;
@@ -528,8 +528,6 @@ body {
528
528
  flex-direction: column;
529
529
  }
530
530
 
531
-
532
-
533
531
  /* recent post blog heading */
534
532
 
535
533
  /* author in blog */
@@ -629,7 +627,7 @@ body {
629
627
  margin-bottom: 0;
630
628
  text-decoration: none;
631
629
  display: flex;
632
-
630
+
633
631
  align-items: center;
634
632
  padding: 9px 9px;
635
633
  color: #1e1e1e;
@@ -717,7 +715,7 @@ body {
717
715
  /* min-width: 300px; */
718
716
  }
719
717
 
720
- .appscms-blog-cards .extrapaddingforimg img {
718
+ .appscms-blog-cards .extrapaddingforimg img {
721
719
  height: auto;
722
720
  border-radius: 10px 10px 0px 0px;
723
721
  }
@@ -750,7 +748,7 @@ body {
750
748
  text-transform: capitalize;
751
749
  text-decoration: none;
752
750
  }
753
-
751
+
754
752
  .post-date {
755
753
  color: #000;
756
754
  font-size: 14px;
@@ -973,7 +971,8 @@ body {
973
971
  margin: 40px 0;
974
972
  }
975
973
 
976
- .rating-tool #rating-img,#rating-img {
974
+ .rating-tool #rating-img,
975
+ #rating-img {
977
976
  height: 1px;
978
977
  width: 1px;
979
978
  filter: brightness(100);
@@ -990,7 +989,6 @@ body {
990
989
  padding: 6px;
991
990
  }
992
991
 
993
-
994
992
  .rating-tool .rating-stars {
995
993
  color: #9d9d9d !important;
996
994
  display: flex;
@@ -1305,11 +1303,10 @@ body {
1305
1303
  background: #f4f5ff;
1306
1304
  border-radius: 3px;
1307
1305
  }
1308
- .post-read-more{
1306
+ .post-read-more {
1309
1307
  font-size: 13px;
1310
1308
  }
1311
1309
 
1312
-
1313
1310
  .how-to-video .youtube-play-btn-wrapper {
1314
1311
  position: absolute;
1315
1312
  top: -4%;
@@ -1334,7 +1331,7 @@ body {
1334
1331
  font-size: 23px;
1335
1332
  font-weight: bold;
1336
1333
  }
1337
- .appscms-loader{
1334
+ .appscms-loader {
1338
1335
  display: flex;
1339
1336
  width: 100%;
1340
1337
  align-items: center;
@@ -1450,12 +1447,10 @@ body {
1450
1447
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 14%);
1451
1448
  }
1452
1449
 
1453
-
1454
-
1455
1450
  #Inputbox:hover,
1456
1451
  #dropbox:hover,
1457
1452
  #filepicker:hover {
1458
- transition: all .5s linear;
1453
+ transition: all 0.5s linear;
1459
1454
  background-color: #000;
1460
1455
  }
1461
1456
 
@@ -1497,7 +1492,7 @@ body {
1497
1492
 
1498
1493
  .feature-content-box {
1499
1494
  max-width: 900px;
1500
- margin: auto
1495
+ margin: auto;
1501
1496
  }
1502
1497
 
1503
1498
  .boxes {
@@ -1533,7 +1528,6 @@ body {
1533
1528
  border-radius: 2px;
1534
1529
  }
1535
1530
 
1536
-
1537
1531
  .ready {
1538
1532
  text-transform: uppercase;
1539
1533
  color: #fff;
@@ -1570,8 +1564,8 @@ body {
1570
1564
  border: 2px solid currentColor;
1571
1565
  border-right-color: transparent;
1572
1566
  border-radius: 50%;
1573
- -webkit-animation: .75s linear infinite spinner-border;
1574
- animation: .75s linear infinite spinner-border;
1567
+ -webkit-animation: 0.75s linear infinite spinner-border;
1568
+ animation: 0.75s linear infinite spinner-border;
1575
1569
  /* padding-right: 1rem; */
1576
1570
  position: relative;
1577
1571
  left: 20px;
@@ -1615,7 +1609,7 @@ body {
1615
1609
  }
1616
1610
 
1617
1611
  .add-more-files-button:hover {
1618
- color: #fff !important
1612
+ color: #fff !important;
1619
1613
  }
1620
1614
 
1621
1615
  .add-more-files-button {
@@ -1632,7 +1626,6 @@ body {
1632
1626
  position: absolute;
1633
1627
  top: -28px;
1634
1628
  padding: 9px 20px;
1635
-
1636
1629
  }
1637
1630
 
1638
1631
  .add-more-files-button img {
@@ -1730,7 +1723,6 @@ body {
1730
1723
  height: 54px;
1731
1724
  }
1732
1725
 
1733
-
1734
1726
  .options-panel {
1735
1727
  box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
1736
1728
  border-radius: 4px;
@@ -1793,7 +1785,7 @@ body {
1793
1785
  /* margin-bottom: 20px; */
1794
1786
  text-align: center;
1795
1787
  /* border-radsius: 50px; */
1796
- background: var(--primary-color) ;
1788
+ background: var(--primary-color);
1797
1789
  font-size: 15px;
1798
1790
  color: #fff;
1799
1791
  font-weight: 700;
@@ -1844,14 +1836,12 @@ body {
1844
1836
  .download-icon {
1845
1837
  display: none;
1846
1838
  }
1847
-
1848
1839
  }
1849
1840
  @media (max-width: 992px) {
1850
1841
  .appscms-sidebar-right,
1851
1842
  .appscms-sidebar-left {
1852
1843
  display: none;
1853
1844
  }
1854
-
1855
1845
  }
1856
1846
  .appscms-sidebar-right,
1857
1847
  .appscms-sidebar-left {
@@ -1878,7 +1868,6 @@ body {
1878
1868
  }
1879
1869
  }
1880
1870
  @media screen and (min-width: 1920px) {
1881
-
1882
1871
  .appscms-sidebar-left {
1883
1872
  left: 300px !important;
1884
1873
  }
@@ -1887,7 +1876,7 @@ body {
1887
1876
  }
1888
1877
  }
1889
1878
 
1890
- .appscms-loader{
1879
+ .appscms-loader {
1891
1880
  display: none;
1892
1881
  }
1893
1882
  /* CSS for the table design */
@@ -1958,51 +1947,62 @@ body {
1958
1947
  -webkit-overflow-scrolling: touch;
1959
1948
  -ms-overflow-style: -ms-autohiding-scrollbar;
1960
1949
  }
1961
-
1962
-
1963
1950
  }
1964
1951
 
1965
- .scroll-left svg,.scroll-right svg{
1952
+ .scroll-left svg,
1953
+ .scroll-right svg {
1966
1954
  cursor: pointer;
1967
1955
  position: absolute;
1968
1956
  top: 8px;
1969
1957
  }
1970
- .scroll-left svg{
1958
+ .scroll-left svg {
1971
1959
  left: -10px;
1972
1960
  }
1973
- .scroll-right svg{
1961
+ .scroll-right svg {
1974
1962
  right: -10px;
1975
1963
  }
1976
- <style>
1977
1964
  #download-button {
1978
- position: relative;
1965
+ position: relative;
1979
1966
  }
1980
1967
 
1981
1968
  .button-loader {
1982
- position: absolute;
1983
- top: 50%;
1984
- left: 19%;
1985
- transform: translate(-50%, -50%);
1986
- border: 4px solid #ffffff;
1987
- border-top: 4px solid var(--primary-color);
1988
- border-radius: 50%;
1989
- width: 24px;
1990
- height: 24px;
1991
- animation: spin 1s linear infinite;
1992
- display: none;
1969
+ position: absolute;
1970
+ top: 50%;
1971
+ left: 19%;
1972
+ transform: translate(-50%, -50%);
1973
+ border: 4px solid #ffffff;
1974
+ border-top: 4px solid var(--primary-color);
1975
+ border-radius: 50%;
1976
+ width: 24px;
1977
+ height: 24px;
1978
+ animation: spin 1s linear infinite;
1979
+ display: none;
1993
1980
  }
1994
1981
 
1995
1982
  @keyframes spin {
1996
- 0% { transform: translate(-50%, -50%) rotate(0deg); }
1997
- 100% { transform: translate(-50%, -50%) rotate(360deg); }
1983
+ 0% {
1984
+ transform: translate(-50%, -50%) rotate(0deg);
1985
+ }
1986
+ 100% {
1987
+ transform: translate(-50%, -50%) rotate(360deg);
1988
+ }
1998
1989
  }
1999
1990
 
2000
1991
  #download-button.loading .button-loader {
2001
- display: block; /* Show the loader when button has loading class */
1992
+ display: block; /* Show the loader when button has loading class */
2002
1993
  }
2003
1994
  #processing-btn {
2004
1995
  position: relative;
2005
1996
  }
2006
1997
  #processing-btn .button-loader {
2007
1998
  left: 9%;
2008
- }
1999
+ }
2000
+
2001
+ input[type="text"]:focus,
2002
+ input[type="number"]:focus,
2003
+ select:focus {
2004
+ border-color: #1d16e884 !important;
2005
+ outline: 0 !important;
2006
+ box-shadow: 0 0 0 0.2rem #1d16e840 !important;
2007
+ outline: none !important;
2008
+ }
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.0
4
+ version: 4.6.2
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-05-21 00:00:00.000000000 Z
11
+ date: 2024-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll