@jx3box/jx3box-ui 2.0.29 → 2.0.31
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.
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
span {
|
|
19
19
|
.bold;
|
|
20
20
|
color: @color;
|
|
21
|
+
.smooth;
|
|
21
22
|
}
|
|
22
23
|
.mr(22px);
|
|
23
24
|
// padding:10px;
|
|
@@ -104,8 +105,9 @@
|
|
|
104
105
|
|
|
105
106
|
.u-op {
|
|
106
107
|
.pa;
|
|
107
|
-
.rt(10px);
|
|
108
|
-
.flex(y);
|
|
108
|
+
.rt(10px,8px);
|
|
109
|
+
.flex(y);
|
|
110
|
+
gap:10px;
|
|
109
111
|
|
|
110
112
|
.el-button{margin:0 !important;}
|
|
111
113
|
}
|
package/package.json
CHANGED
|
@@ -79,7 +79,7 @@ export default {
|
|
|
79
79
|
&::marker {
|
|
80
80
|
content: "+";
|
|
81
81
|
font-size: 10px;
|
|
82
|
-
color
|
|
82
|
+
color: #999;
|
|
83
83
|
}
|
|
84
84
|
list-style-position: outside;
|
|
85
85
|
}
|
|
@@ -94,8 +94,8 @@ export default {
|
|
|
94
94
|
color: #666;
|
|
95
95
|
// border-bottom: 1px solid transparent;
|
|
96
96
|
&:hover {
|
|
97
|
-
color: @
|
|
98
|
-
.underline(
|
|
97
|
+
color: @v4primary;
|
|
98
|
+
.underline(3px,solid,@v4primary);
|
|
99
99
|
font-weight: 500;
|
|
100
100
|
// .u-icon {
|
|
101
101
|
// transform: translateX(5px);
|
|
@@ -131,7 +131,8 @@ export default {
|
|
|
131
131
|
.rb(0,10px);
|
|
132
132
|
color: #999;
|
|
133
133
|
&:hover {
|
|
134
|
-
color: @
|
|
134
|
+
color: @v4primary;
|
|
135
|
+
fill: @v4primary;
|
|
135
136
|
}
|
|
136
137
|
}
|
|
137
138
|
}
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
<!-- 分页 -->
|
|
15
15
|
<el-row v-if="data.length >= 3 || showPager">
|
|
16
16
|
<el-col :span="4">
|
|
17
|
-
<el-button link v-show="showPager" @click="showLess()">{{
|
|
17
|
+
<el-button class="u-op" link v-show="showPager" @click="showLess()" icon="DCaret">{{
|
|
18
18
|
$jx3boxT("jx3boxUi.replyList.collapse", "收起")
|
|
19
19
|
}}</el-button>
|
|
20
|
-
<el-button link v-show="!showPager" @click="showMore()">{{
|
|
20
|
+
<el-button class="u-op" link v-show="!showPager" @click="showMore()" icon="DCaret">{{
|
|
21
21
|
$jx3boxT("jx3boxUi.replyList.showMore", "查看更多")
|
|
22
22
|
}}</el-button>
|
|
23
23
|
</el-col>
|
|
@@ -102,6 +102,11 @@ export default {
|
|
|
102
102
|
.c-comment-replylist {
|
|
103
103
|
padding: 10px 0 10px 68px;
|
|
104
104
|
border-top: 1px dashed #eee;
|
|
105
|
+
|
|
106
|
+
.u-op {
|
|
107
|
+
margin-left:0;
|
|
108
|
+
font-weight: normal;
|
|
109
|
+
}
|
|
105
110
|
}
|
|
106
111
|
.c-comment-reply {
|
|
107
112
|
padding-top: 5px;
|