appscms-tools-theme 2.2.7 → 2.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b53479fb3c05e44f563004959f86f7191b965dc7760f388b08b6d053830cc5c1
4
- data.tar.gz: 2169984f603e860fbbd8171c34e1e0ea64684e3ba3064416a9cf41873a3aec6b
3
+ metadata.gz: 3e4be658111009450112257e2ea1e76a2e322292b16d675922e03620e3af6137
4
+ data.tar.gz: '092b8e9e9c34a9dc84ae4ee83940be478f2ecd652ab23011e34004d3dea3e490'
5
5
  SHA512:
6
- metadata.gz: 0e896783ef377f8258758dfc48afdc06165ff2df1ab3ff3696a05cd1287b74d83573a9deb754f77ef9ef1115ee67ed604adb5ed1f7302be09a4ccef58e0a6fd5
7
- data.tar.gz: cd18f54d54cf772f3121408c8a6310031d73ab697a1ae702be9ac47278ea7569239adf5bac67dbe5a1ddac6280120ca089abf86a4d5196210c6af3c88c330167
6
+ metadata.gz: 3e3186c9f5ee05df8b2342fc569f84581724a7bbdeba9236284504e4ed0ba16e95a6c30edf57bb64474c3fab471bfe977ada83db7d0482dce576f4cc2fe5f584
7
+ data.tar.gz: 5605b4ef9808198fe1614a8084a6671a833160df7ded24d99dc95d4e06bc1f2be5197bb5b5550cecb6179d4b432262b77c24f15c9ad63d6b3523d2f16538d669
@@ -26,7 +26,11 @@ replace: "$tool", page.tool }}
26
26
  {%- endfor -%}
27
27
  {%- endif -%}
28
28
  <script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js" crossorigin="anonymous"></script>
29
- <script>WebFont.load({ google: { families: ['Source Sans Pro:200,300,400,500,600,700,800&display=swap'] } })</script>
29
+ {%- assign font = "Source Sans Pro" -%}
30
+ {%- if page.layout == "frame" -%}
31
+ {%- assign font = "PT Sans" -%}
32
+ {%- endif -%}
33
+ <script>WebFont.load({ google: { families: ['{{font}}:200,300,400,500,600,700,800&display=swap'] } })</script>
30
34
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
31
35
  integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
32
36
  crossorigin="anonymous" referrerpolicy="no-referrer" />
data/_layouts/frame.html CHANGED
@@ -3,7 +3,7 @@ layout: feature
3
3
  ---
4
4
 
5
5
  {%- assign fileData = site.data[page.folderName][page.lang][page.fileName] -%}
6
- <div class="container mt-5">
6
+ <div class="container mt-4">
7
7
  <div class="col-md-11 mx-auto">
8
8
  <div class="row">
9
9
  <div class="col-md-3">
data/assets/css/frame.css CHANGED
@@ -1,3 +1,6 @@
1
+ body {
2
+ font-family: 'PT Sans', sans-serif !important;
3
+ }
1
4
  #img-svg {
2
5
  margin: auto;
3
6
  margin-top: 16px;
@@ -462,3 +465,9 @@ input {
462
465
  font-size: 0.95em;
463
466
  border-radius: 1px;
464
467
  }
468
+ .categories-list .card {
469
+ padding: 7px 9px;
470
+ }
471
+ .categories-list .accordion > .card > .card-header {
472
+ height: auto;
473
+ }
data/assets/js/frame.js CHANGED
@@ -117,6 +117,16 @@ const drawImage = () => {
117
117
  myFont.load().then(function (font) {
118
118
  ctx.save()
119
119
  document.fonts.add(font)
120
+ let textValue = document.querySelector(`#${item.id}`).value
121
+ if (textValue.length > 10 && item.fontSizeOption1) {
122
+ item.fontSize = item.fontSizeOption1
123
+ }
124
+ if (textValue.length > 20 && item.fontSizeOption2) {
125
+ item.fontSize = item.fontSizeOption2
126
+ }
127
+ if (textValue.length > 30 && item.fontSizeOption3) {
128
+ item.fontSize = item.fontSizeOption3
129
+ }
120
130
  ctx.font = `${item.fontSize}px ${item.font}`
121
131
  if (item.shadowColor) {
122
132
  ctx.shadowColor = `${item.shadowColor}`
@@ -136,11 +146,7 @@ const drawImage = () => {
136
146
  }
137
147
  ctx.textAlign = 'center'
138
148
  ctx.fillStyle = `${item.color}`
139
- ctx.fillText(
140
- document.querySelector(`#${item.id}`).value,
141
- item.x,
142
- item.y
143
- )
149
+ ctx.fillText(textValue, item.x, item.y)
144
150
  ctx.restore()
145
151
  })
146
152
  }
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: 2.2.7
4
+ version: 2.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-25 00:00:00.000000000 Z
11
+ date: 2022-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll