@jx3box/jx3box-editor 2.2.30 → 2.2.32
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
package/package.json
CHANGED
package/public/css/article.css
CHANGED
|
@@ -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/Resource.vue
CHANGED
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
<i class="el-icon-s-data"></i> 共找到 <b>{{ total }}</b> 条记录
|
|
98
98
|
</p>
|
|
99
99
|
<ul class="m-resource-list" v-if="item.length">
|
|
100
|
-
<el-popover popper-class="m-item-pop" :visible-arrow="false" trigger="hover" placement="left" v-for="(o, i) in item" :key="
|
|
100
|
+
<el-popover popper-class="m-item-pop" :visible-arrow="false" trigger="hover" placement="left" v-for="(o, i) in item" :key="o.id">
|
|
101
101
|
<li slot="reference" class="u-item" :class="{ on: o.isSelected }" @click="selectItem(o, i)" ref="item">
|
|
102
102
|
<span class="u-id">ID:{{ o.id }}</span>
|
|
103
103
|
<img class="u-pic" :title="'IconID:' + o.IconID" :src="iconURL(o.IconID)" />
|