@jx3box/jx3box-ui 2.0.25 → 2.0.26

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.
@@ -61,9 +61,10 @@
61
61
  .u-pic {
62
62
  background-color: #fff;
63
63
  padding: 7px 7px 7px 8px;
64
+ .db;
64
65
  }
65
66
  .u-txt {
66
- padding: 0 5px;
67
+ padding: 5px;
67
68
  .db;
68
69
  .fz(12px,2);
69
70
  }
@@ -14,11 +14,11 @@
14
14
  border: 1px solid #dcdfe6;
15
15
  }
16
16
 
17
- &.el-button--primary:focus,
18
- &.el-button--primary:active {
19
- background-color: #0366d6;
20
- border-color: #0366d6;
21
- }
17
+ // &.el-button--primary:focus,
18
+ // &.el-button--primary:active {
19
+ // background-color: #0366d6;
20
+ // border-color: #0366d6;
21
+ // }
22
22
  }
23
23
 
24
24
  .u-pagination-box {
@@ -35,12 +35,13 @@
35
35
 
36
36
  .u-nickname-panel {
37
37
  .u-nickname {
38
- font-weight: 600;
38
+ font-weight: 700;
39
39
  color: #666666;
40
+ font-size: 13px;
40
41
  }
41
42
 
42
43
  .u-nickname[href] {
43
- color: blueviolet;
44
+ color: @v4primary;
44
45
  }
45
46
 
46
47
  span + .u-nickname {
@@ -49,7 +50,7 @@
49
50
  }
50
51
 
51
52
  .u-comment {
52
- padding: 5px 0;
53
+ padding: 10px 0;
53
54
  border-bottom: 1px solid #eeeeee;
54
55
  overflow: hidden;
55
56
  }
@@ -89,8 +90,8 @@
89
90
  padding-bottom: 10px;
90
91
 
91
92
  .u-reply {
92
- font-size: 13px;
93
- padding: 6px 10px;
93
+ font-size: 12px;
94
+ // padding: 6px 10px;
94
95
  }
95
96
 
96
97
  .u-time {
@@ -107,7 +108,8 @@
107
108
  }
108
109
 
109
110
  & > .u-comments > .u-comment-panel > .u-comments {
110
- padding-left: 15px;
111
+ padding-left: 30px;
112
+ padding-top:10px;
111
113
  }
112
114
  }
113
115
 
@@ -123,6 +125,7 @@
123
125
  .pb(10px);
124
126
  color: #666666;
125
127
  border-bottom: @border-style;
128
+ font-weight: 300;
126
129
 
127
130
  i,
128
131
  span {
@@ -38,6 +38,7 @@
38
38
  transform: translateY(-50%);
39
39
  font-size: 12px;
40
40
  z-index: 30;
41
+ .flex(y);
41
42
 
42
43
  .u-more,
43
44
  .el-button {
@@ -54,7 +55,6 @@
54
55
  }
55
56
 
56
57
  .el-button {
57
- padding: 7px 10px 9px;
58
58
  font-size: 12px;
59
59
  }
60
60
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jx3box/jx3box-ui",
3
- "version": "2.0.25",
3
+ "version": "2.0.26",
4
4
  "description": "JX3BOX Vue3 UI",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -4,9 +4,9 @@
4
4
  <span class="u-text">二维码</span>
5
5
  </div>
6
6
  <teleport to="body">
7
- <div v-if="mode == 'cms' && active" class="u-qrcode u-qrcode-popup" :style="popupStyle" @click.stop>
7
+ <div v-if="mode == 'cms' && active" class="u-qrcode u-qrcode-popup w-qrcode-static" :style="popupStyle" @click.stop>
8
8
  <qrcode-vue class="u-pic" :value="value" :size="size" level="H"></qrcode-vue>
9
- <span>扫一扫即可访问</span>
9
+ <span class="u-txt">扫一扫即可访问</span>
10
10
  </div>
11
11
  </teleport>
12
12
  <div class="w-qrcode-static" v-bind="$attrs" v-if="mode == 'static'">
@@ -37,6 +37,7 @@
37
37
  v-if="comment.reply_form && comment.reply_form.show"
38
38
  class="u-reply"
39
39
  @click="comment.reply_form.show = !comment.reply_form.show"
40
+ size="small"
40
41
  >
41
42
  <i class="el-icon-arrow-up"></i>
42
43
  <span>收起</span>
@@ -48,6 +49,7 @@
48
49
  class="u-reply"
49
50
  @click="comment.reply_form.show = !comment.reply_form.show"
50
51
  icon="ChatDotRound"
52
+ size="small"
51
53
  >
52
54
  <span>回复</span>
53
55
  </el-button>
@@ -58,9 +60,10 @@
58
60
  @click="onStar(comment)"
59
61
  plain
60
62
  :icon="comment.is_star ? 'StarFilled' : 'Star'"
63
+ size="small"
61
64
  >{{ comment.is_star ? "取消加精" : "加精" }}</el-button
62
65
  >
63
- <el-button type="primary" class="u-reply" @click="onTop(comment)" plain icon="Top">{{
66
+ <el-button type="primary" class="u-reply" @click="onTop(comment)" plain icon="Top" size="small">{{
64
67
  comment.is_top ? "取消置顶" : "置顶"
65
68
  }}</el-button>
66
69
  </template>