appscms-tools-theme 4.0.0 → 4.0.2

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: 202567f47e75f5cce33a596e51e9372f3946945d445bde2a1119e2ac724cb7f8
4
- data.tar.gz: 4b1a2a771e08e6e30c1cbf5ceab1bcf33ec3fd35690372d8a34c25194de395a6
3
+ metadata.gz: fb8e5f9905b7f69d956bcca74e2f33653c5198e211e7e6dbabf3074e846cfb38
4
+ data.tar.gz: 6b0246d12b458a2d773371ca5a334eec7a93e26345173ffb6ad6b5890acb30b5
5
5
  SHA512:
6
- metadata.gz: 9816a8eb0454889f5a93166efb9a9e206f1ad100b2bbb46bb4181c3825cdc3d52e417775035b1e405fe6773d4d581188ed3192108f3482d2fc9732daab4e2e47
7
- data.tar.gz: a9a515b7d954b7cb4d7f72cdccfa293e07f84aa93d03d0646f04eba0be969c1e6253e4d2ff494b5a4b12635770729195695c9a1096f20bbbccad16e178e91ff5
6
+ metadata.gz: 5ddb7eb1b78c6caf3357783d51392d56ecf32df3a97cd5e77b654a1943ac2acb85eeded00b5aba5bbee15fd8e50655b6264722fde475451cec3adeee7d97e3a1
7
+ data.tar.gz: 8e73a83c36dd9862516a26c0481390e5a908655126e0f2de5d8facd917dfc5cd977f4d39acd9eca44795058e8777f7063a6d1ae78c217595ebefd8562c6364a1
@@ -19,42 +19,42 @@
19
19
  ],
20
20
  "features": [
21
21
  {
22
- "name": "Appscms feature",
22
+ "name": "Appscms Media tool",
23
23
  "description": "Appscms feature layout with new design",
24
- "color": "#1A2EE7",
24
+ "color": "linear-gradient(148deg, #835af2 20%, #1220d8 100%)",
25
25
  "icon": "/assets/images/digipaint.svg",
26
26
  "url": "/appscms-feature"
27
27
  },
28
28
  {
29
- "name": "Appscms feature",
29
+ "name": "Erase tool",
30
30
  "description": "Appscms feature layout with new design",
31
- "color": "#1A2EE7",
31
+ "color": "linear-gradient(148deg, #31d3bd 20%, #187cca 100%)",
32
32
  "icon": "/assets/images/digipaint.svg",
33
33
  "url": "/appscms-feature"
34
34
  },
35
35
  {
36
- "name": "Appscms feature",
36
+ "name": "Pdf tool",
37
37
  "description": "Appscms feature layout with new design",
38
- "color": "#1A2EE7",
38
+ "color": "linear-gradient(148deg, #32a0f7 20%, #114793 100%)",
39
39
  "icon": "/assets/images/digipaint.svg",
40
40
  "url": "/appscms-feature"
41
41
  },
42
42
  {
43
- "name": "Appscms feature",
43
+ "name": "Appscms Video Split",
44
44
  "description": "Appscms feature layout with new design",
45
- "color": "#1A2EE7",
45
+ "color": "linear-gradient(148deg, #ffa16b 20%, #db410a 100%)",
46
46
  "icon": "/assets/images/digipaint.svg",
47
47
  "url": "/appscms-feature"
48
48
  },
49
49
  {
50
- "name": "Appscms feature",
50
+ "name": "Appscms resize tool",
51
51
  "description": "Appscms feature layout with new design",
52
52
  "color": "#1A2EE7",
53
53
  "icon": "/assets/images/digipaint.svg",
54
54
  "url": "/appscms-feature"
55
55
  },
56
56
  {
57
- "name": "Appscms feature",
57
+ "name": "Appscms Audio kit",
58
58
  "description": "Appscms feature layout with new design",
59
59
  "color": "#1A2EE7",
60
60
  "icon": "/assets/images/digipaint.svg",
@@ -112,20 +112,7 @@
112
112
  -%}
113
113
  />
114
114
  {%- else -%}
115
- <!-- <link
116
- rel="stylesheet"
117
- href="/assets/css/tools.css"
118
- {%-
119
- if
120
- site.crossorigin
121
- -%}
122
- {{
123
- }}
124
- crossorigin="anonymous"
125
- {%-
126
- endif
127
- -%}
128
- /> -->
115
+
129
116
 
130
117
  {%- endif -%} {%- if site.monumetricId -%}
131
118
 
@@ -10,9 +10,9 @@
10
10
  <div class="tool-img">
11
11
  <img crossorigin="anonymous" src="{{item.icon}}" alt="img" />
12
12
  </div>
13
- <div class="tool-text">{{item.description}}</div>
13
+ <div class="tool-text">{{item.description | truncate:67,'..'}}</div>
14
14
  </div>
15
- <div class="tool-heading">{{item.name}}</div>
15
+ <div class="tool-heading">{{item.name | truncate: 33, '..'}}</div>
16
16
  </div>
17
17
  </a>
18
18
  </div>
@@ -4,10 +4,10 @@
4
4
  {% assign helpData = site.data[folder][lang][file] %}
5
5
  <!DOCTYPE html>
6
6
  <html lang="{{helpData.htmlLangAtt}}">
7
- {% include head/index.html %}
7
+ {%- include appscms/head/head.html -%}
8
8
 
9
9
  <body>
10
- {%- include appscms/head/head.html -%}
10
+
11
11
  <body>
12
12
  {%- include appscms/navbars/navbar.html -%} {%- include
13
13
  appscms/navbars/toolbar.html -%}
@@ -60,7 +60,7 @@ body {
60
60
  }
61
61
 
62
62
  .appscms-toolbar {
63
- background-color: #1a2cce;
63
+ background-color: var(--primary-color);
64
64
  box-shadow: 1px 4px 10 #00000026;
65
65
  position: sticky;
66
66
  z-index: 999;
@@ -209,6 +209,7 @@ body {
209
209
  .appscms-toolbar {
210
210
  background-color: var(--black-color);
211
211
  box-shadow: 1px 4px 10 #00000026;
212
+ overflow-x: hidden;
212
213
  }
213
214
  .appscms-navbar-nav-links {
214
215
  display: none;
@@ -227,6 +228,7 @@ body {
227
228
  flex-direction: column;
228
229
  gap: 0px;
229
230
  overflow-y: scroll;
231
+ overflow-x: hidden;
230
232
  }
231
233
  .appscms-toolbar .appscms-toolbar-list .appscms-toolbar-list-item {
232
234
  align-items: flex-start;
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.0.0
4
+ version: 4.0.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: 2023-10-14 00:00:00.000000000 Z
11
+ date: 2023-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll