@jx3box/jx3box-common-ui 8.1.8 → 8.2.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jx3box/jx3box-common-ui",
3
- "version": "8.1.8",
3
+ "version": "8.2.0",
4
4
  "description": "JX3BOX UI",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,14 +1,14 @@
1
1
  <template>
2
2
  <div class="m-post-guide" v-if="hasGuide">
3
3
  <div class="u-prev">
4
- <a :href="getPostLink(post.prev_post)" class="el-button el-button--default el-button--small" :class="{'is-disabled': !post.prev_post }">
4
+ <a :href="getPostLink(post.prev_post)" class="el-button el-button--default el-button--small is-plain" :class="{'is-disabled': !post.prev_post }">
5
5
  <i class="el-icon-arrow-left"></i>
6
6
  <span>上一篇</span>
7
7
  </a>
8
8
  <a :href="getPostLink(post.prev_post)" class="u-post-title">{{ getPostTitle(post.prev_post) }}</a>
9
9
  </div>
10
10
  <div class="u-next">
11
- <a :href="getPostLink(post.next_post)" class="el-button el-button--default el-button--small" :class="{'is-disabled': !post.next_post }">
11
+ <a :href="getPostLink(post.next_post)" class="el-button el-button--default el-button--small is-plain" :class="{'is-disabled': !post.next_post }">
12
12
  <span>下一篇</span>
13
13
  <i class="el-icon-arrow-right"></i>
14
14
  </a>
@@ -50,12 +50,12 @@ export default {
50
50
  justify-content: space-between;
51
51
 
52
52
  .u-post-title {
53
- margin-left: 5px;
53
+ margin-left: 10px;
54
54
  font-size: 14px;
55
- color: #666;
55
+ // color: #666;
56
56
 
57
57
  &:hover {
58
- color: #0366d6;
58
+ // color: #0366d6;
59
59
  box-shadow: 0 1px 0 #0366d6;
60
60
  }
61
61
  }
@@ -72,10 +72,16 @@ export default {
72
72
 
73
73
  .u-prev {
74
74
  margin-bottom: 10px;
75
+ span{
76
+ margin-left:5px;
77
+ }
75
78
  }
76
79
 
77
80
  .u-next {
78
81
  margin-left: 0;
82
+ span{
83
+ margin-right:5px;
84
+ }
79
85
  }
80
86
  }
81
87
  }