@jx3box/jx3box-ui 2.0.18 → 2.0.20
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/package.json +1 -1
- package/src/comment/CommentContent.vue +4 -3
- package/src/single/Author.vue +3 -3
- package/vue.config.js +0 -1
package/package.json
CHANGED
|
@@ -433,16 +433,17 @@ export default {
|
|
|
433
433
|
/* src/comment/CommentContent.vue */
|
|
434
434
|
.c-comment-cmt {
|
|
435
435
|
|
|
436
|
-
|
|
436
|
+
//--el-color-primary:@primary;
|
|
437
437
|
|
|
438
438
|
flex-grow: 1;
|
|
439
439
|
position: relative;
|
|
440
440
|
.u-toolbar {
|
|
441
441
|
font-size: 12px;
|
|
442
442
|
margin-top:5px;
|
|
443
|
-
color
|
|
443
|
+
color:@v4tip;
|
|
444
444
|
.el-button.is-link {
|
|
445
|
-
color
|
|
445
|
+
color:@v4tip;
|
|
446
|
+
font-weight: normal;
|
|
446
447
|
&:hover{
|
|
447
448
|
color:@pink;
|
|
448
449
|
}
|
package/src/single/Author.vue
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<!-- <AuthorLink class="u-block u-links" :uid="uid" :data="data" /> -->
|
|
15
15
|
<AuthorMedals class="u-block u-trophy" :uid="uid" />
|
|
16
16
|
<!-- <AuthorTeams class="u-block u-teams" :uid="uid" /> -->
|
|
17
|
-
<AuthorFans class="u-block u-fans" :uid="uid" />
|
|
17
|
+
<!-- <AuthorFans class="u-block u-fans" :uid="uid" /> -->
|
|
18
18
|
<slot></slot>
|
|
19
19
|
<AuthorPosts class="u-block u-posts" :uid="uid" />
|
|
20
20
|
</template>
|
|
@@ -26,7 +26,7 @@ import AuthorInfo from "../author/AuthorInfo.vue";
|
|
|
26
26
|
// import AuthorLink from "../author/AuthorLink.vue";
|
|
27
27
|
// import AuthorFollow from "../author/AuthorFollow.vue";
|
|
28
28
|
// import AuthorGift from "../author/AuthorGift.vue";
|
|
29
|
-
import AuthorFans from "../author/AuthorFans.vue";
|
|
29
|
+
// import AuthorFans from "../author/AuthorFans.vue";
|
|
30
30
|
import AuthorMedals from "../author/AuthorMedals.vue";
|
|
31
31
|
// import AuthorTeams from "../author/AuthorTeams.vue";
|
|
32
32
|
import AuthorPosts from "../author/AuthorPosts.vue";
|
|
@@ -70,7 +70,7 @@ export default {
|
|
|
70
70
|
AuthorMedals,
|
|
71
71
|
// AuthorTeams,
|
|
72
72
|
AuthorPosts,
|
|
73
|
-
AuthorFans,
|
|
73
|
+
// AuthorFans,
|
|
74
74
|
AuthorRss,
|
|
75
75
|
},
|
|
76
76
|
};
|