@jx3box/jx3box-editor 2.2.9 → 2.2.11
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.
package/assets/css/combo.less
CHANGED
|
@@ -441,7 +441,14 @@
|
|
|
441
441
|
|
|
442
442
|
.u-skill-icon {
|
|
443
443
|
box-sizing: border-box;
|
|
444
|
-
border: 2px solid #
|
|
444
|
+
// border: 2px solid #000;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.u-skill.is-wujie .u-skill-icon{
|
|
448
|
+
border: 2px solid #2a9998;
|
|
449
|
+
border-radius: 50%;
|
|
450
|
+
width: 52px;
|
|
451
|
+
height: 52px;
|
|
445
452
|
}
|
|
446
453
|
|
|
447
454
|
.u-skill.active {
|
|
@@ -452,4 +459,4 @@
|
|
|
452
459
|
}
|
|
453
460
|
}
|
|
454
461
|
}
|
|
455
|
-
}
|
|
462
|
+
}
|
package/package.json
CHANGED
package/public/tinymce.html
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
<meta name="renderer" content="webkit" />
|
|
8
8
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
9
9
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
|
|
10
|
-
<script src="https://cdn.jx3box.com/static/tinymce/tinymce.min.js?v=1.8.9"></script>
|
|
10
|
+
<!-- <script src="https://cdn.jx3box.com/static/tinymce/tinymce.min.js?v=1.8.9"></script> -->
|
|
11
11
|
<!-- TODO: -->
|
|
12
|
-
|
|
12
|
+
<script src="http://localhost:3000/tinymce.min.js"></script>
|
|
13
13
|
</head>
|
|
14
14
|
<body>
|
|
15
15
|
<div id="app"></div>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="m-pvp-martial">
|
|
2
|
+
<div class="m-pvp-martial" >
|
|
3
3
|
<div class="u-platform-select" v-if="client == 'std'">
|
|
4
4
|
<div
|
|
5
5
|
class="u-platform-option"
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
)"
|
|
127
127
|
:key="index"
|
|
128
128
|
@click="selectSkill(skill)">
|
|
129
|
-
<div class="u-skill" v-if="skill && skill.IconID">
|
|
129
|
+
<div class="u-skill is-wujie" v-if="skill && skill.IconID">
|
|
130
130
|
<img
|
|
131
131
|
class="u-skill-icon"
|
|
132
132
|
:src="iconLink(skill.IconID)"
|