@jx3box/jx3box-editor 2.2.29 → 2.2.31

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.
@@ -290,7 +290,7 @@
290
290
 
291
291
  i {
292
292
  color: #fff;
293
- .fz(12px);
293
+ .fz(12px, 1);
294
294
  .db;
295
295
  }
296
296
  }
@@ -55,7 +55,7 @@
55
55
 
56
56
  i {
57
57
  color: #fff;
58
- .fz(12px);
58
+ .fz(12px, 1);
59
59
  .db;
60
60
  }
61
61
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jx3box/jx3box-editor",
3
- "version": "2.2.29",
3
+ "version": "2.2.31",
4
4
  "description": "JX3BOX Article & Editor",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1300,6 +1300,7 @@
1300
1300
  .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item .u-gcd-icon i {
1301
1301
  color: #fff;
1302
1302
  font-size: 12px;
1303
+ line-height: 1;
1303
1304
  display: block;
1304
1305
  }
1305
1306
  .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item .u-skill-name {
package/src/Tinymce.vue CHANGED
@@ -146,7 +146,7 @@ export default {
146
146
  if (!emotion.filename.startsWith("http")) {
147
147
  src = `${__imgPath}emotion/output/${emotion.filename}`;
148
148
  }
149
- const IMAGE = `<img class="t-emotion" src="${src}" alt="${src}" />`;
149
+ const IMAGE = `<img class="t-emotion" src="${src}" alt="${src}" style="max-width:60px;max-height:60px" />`;
150
150
  tinyMCE.editors["tinymce"].insertContent(IMAGE);
151
151
  },
152
152
  },