Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

为 onCommentsPublished 回调暴露 email 参数,增加了升序排列评论的选项并增加了引用评论的功能 #104

Open
wants to merge 15 commits into
base: dev
Choose a base branch
from
Open
42 changes: 42 additions & 0 deletions src/css/main.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
blockquote {
background: #f9f9f9;
border-left: 6px solid #ccc;

margin: 1.5em 10px;
padding: 0.5em 10px;
}

blockquote cite {
color: #6bbbdb;
font-weight: 500;
font-style: normal;
}

blockquote * {
display: inline;
color: #aaa;
}

div#artitalk_main {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
Expand Down Expand Up @@ -467,8 +486,31 @@ div#artitalk_main {
vertical-align: middle;
}
#artitalk_main span.cbp_tmlabel>p {
display: flex;
flex-wrap: wrap;

overflow: unset;
}

@media screen and (max-width: 768px) {
#artitalk_main span.cbp_tmlabel>p {
flex-direction: row-reverse;
}
}

@media screen and (min-width: 768px) {
#artitalk_main span.cbp_tmlabel>p {
flex-direction: row;
align-items: flex-end;
}

#artitalk_main span.cbp_tmlabel > p.shuoshuo_time .label_attachment {
flex-grow: 1;
flex-basis: 3%;
text-align: right;
}
}

#artitalk_main ul#maina>li {
list-style: none;
}
Expand Down
Loading