优化主题颜色

This commit is contained in:
A1300399510
2024-01-29 17:37:38 +08:00
parent 80c12aee49
commit e6cc4bf778
54 changed files with 331 additions and 307 deletions

View File

@@ -65,7 +65,7 @@
<el-input v-model="commentInput" type="textarea" placeholder="回复" :maxlength="500" show-word-limit></el-input>
<!-- <textarea class="flex1" placeholder="回复" v-model="commentInput"></textarea> -->
<div class="operate-bottom flexacenter">
<div class="comments-btn flexcenter" @click="closeAnswerCommentsChild(index)">取消</div>
<div class="comments-btn comments-btn-cancel flexcenter" @click="closeAnswerCommentsChild(index)">取消</div>
<div class="comments-btn flexcenter" @click="submitAnswerComments(commentInput, index)">发送</div>
</div>
</div>
@@ -120,7 +120,7 @@
<div class="comments-input">
<el-input v-model="commentInput" type="textarea" placeholder="回复" :maxlength="500" show-word-limit></el-input>
<div class="operate-bottom flexacenter">
<div class="comments-btn flexcenter" @click="closeAnswerCommentsChild(index)">取消</div>
<div class="comments-btn comments-btn-cancel flexcenter" @click="closeAnswerCommentsChild(index)">取消</div>
<div class="comments-btn flexcenter" @click="submitAnswerComments(commentInput, index)">发送</div>
</div>
</div>
@@ -799,7 +799,7 @@ defineExpose({ changeCommentVoteoption, wipeCommentVoteoption, reviewsComment, b
border: none;
outline: none;
resize: none;
padding: 11px 16px;
padding: 10px;
// border-radius: 7px 0 0 7px;
border-radius: 8px;
font-size: 14px;
@@ -834,6 +834,12 @@ defineExpose({ changeCommentVoteoption, wipeCommentVoteoption, reviewsComment, b
cursor: pointer;
margin-right: 10px;
margin-bottom: 10px;
&.comments-btn-cancel {
border: 1px solid #797979;
color: #000000;
background-color: #fff;
}
}
}
}