70 lines
1.8 KiB
JavaScript
70 lines
1.8 KiB
JavaScript
<% if (!index && theme.leancloud && theme.leancloud.enable && post.comments){ %>
|
|
<!-- minivaline评论 -->
|
|
<div id="mvcomments-box">
|
|
<div id="mvcomments"></div>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/minivaline@5"></script>
|
|
<script>
|
|
new MiniValine(Object.assign(<%- JSON.stringify(theme.minivaline) %>, {
|
|
el: '#mvcomments',
|
|
}));
|
|
const infoEle = document.querySelector('#mvcomments .info');
|
|
if (infoEle && infoEle.childNodes && infoEle.childNodes.length > 0) {
|
|
infoEle.childNodes.forEach(function (item) {
|
|
item.parentNode.removeChild(item);
|
|
});
|
|
}
|
|
</script>
|
|
<style>
|
|
#mvcomments-box {
|
|
padding: 5px 30px;
|
|
}
|
|
|
|
@media screen and (max-width: 800px) {
|
|
#mvcomments-box {
|
|
padding: 5px 0px;
|
|
}
|
|
}
|
|
|
|
.v .vlist .vcard .vh {
|
|
padding-right: 20px;
|
|
}
|
|
|
|
.v .vlist .vcard {
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.darkmode .commentTrigger{
|
|
background-color: #403e3e !important;
|
|
}
|
|
.darkmode .MiniValine .vpage .more{
|
|
background: #21232F
|
|
}
|
|
.darkmode img{
|
|
filter: brightness(30%)
|
|
}
|
|
.darkmode .MiniValine .vlist .vcard .vcomment-body .text-wrapper .vcomment.expand:before{
|
|
background: linear-gradient(180deg, rgba(246,246,246,0), rgba(0,0,0,0.9))
|
|
}
|
|
.darkmode .MiniValine .vlist .vcard .vcomment-body .text-wrapper .vcomment.expand:after{
|
|
background: rgba(0,0,0,0.9)
|
|
}
|
|
.darkmode .MiniValine .vlist .vcard .vcomment-body .text-wrapper .vcomment pre{
|
|
background: #282c34
|
|
border: 1px solid #282c34
|
|
}
|
|
.darkmode .MiniValine .vinputs-area .textarea-wrapper textarea{
|
|
color: #000;
|
|
}
|
|
.darkmode .MiniValine .vinputs-area .auth-section .input-wrapper input{
|
|
color: #000;
|
|
}
|
|
.darkmode .MiniValine .info .col .count{
|
|
color: #000;
|
|
}
|
|
.darkmode .MiniValine .vinputs-area .vextra-area .vsmile-icons{
|
|
background: transparent;
|
|
}
|
|
</style>
|
|
<% } %>
|