2020-02-16 18:30:00 +00:00
|
|
|
.getCommentsTitle {
|
|
|
|
height: 10px;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: underline;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--title-color);
|
|
|
|
}
|
|
|
|
|
2020-02-18 20:59:01 +00:00
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2020-10-04 22:15:06 +00:00
|
|
|
.commentSort {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2020-02-16 18:30:00 +00:00
|
|
|
.comment {
|
|
|
|
padding: 15px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2020-02-18 20:59:01 +00:00
|
|
|
.hideComments {
|
|
|
|
font-size: 13px;
|
|
|
|
text-decoration: underline;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--title-color);
|
|
|
|
}
|
|
|
|
|
2020-02-16 18:30:00 +00:00
|
|
|
.commentThumbnail {
|
|
|
|
float: left;
|
|
|
|
width: 60px;
|
|
|
|
height: 60px;
|
|
|
|
border-radius: 200px 200px 200px 200px;
|
|
|
|
-webkit-border-radius: 200px 200px 200px 200px;
|
2021-03-18 16:47:28 +00:00
|
|
|
cursor: pointer;
|
2020-02-16 18:30:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.commentAuthor {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-left: 68px;
|
|
|
|
margin-top: 0px;
|
2021-03-18 16:47:28 +00:00
|
|
|
cursor: pointer;
|
2020-02-16 18:30:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.commentText {
|
2020-10-19 14:16:17 +00:00
|
|
|
font-size: 14px;
|
2020-02-16 18:30:00 +00:00
|
|
|
margin-top: -10px;
|
|
|
|
margin-left: 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.commentDate {
|
|
|
|
font-weight: normal;
|
|
|
|
margin-left: 5px;
|
2020-09-26 15:43:01 +00:00
|
|
|
font-size: 12px;
|
2020-02-16 18:30:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.commentLikeCount {
|
|
|
|
font-size: 11px;
|
|
|
|
margin-left: 70px;
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
|
2020-10-19 14:01:24 +00:00
|
|
|
.commentHeartBadge {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: 25px;
|
|
|
|
height: 20px;
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-bottom: -7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.commentHeartBadgeImg {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
border-radius: 50%;
|
|
|
|
-webkit-border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.commentHeartBadgeWhite {
|
|
|
|
position: absolute;
|
|
|
|
left: 9px;
|
|
|
|
bottom: 1px;
|
|
|
|
width: 11px;
|
|
|
|
height: 11px;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.commentHeartBadgeRed {
|
|
|
|
position: absolute;
|
|
|
|
color: var(--red-500);
|
|
|
|
left: 10px;
|
|
|
|
bottom: 2px;
|
|
|
|
width: 9px;
|
|
|
|
height: 9px;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
2020-02-16 18:30:00 +00:00
|
|
|
.commentMoreReplies {
|
|
|
|
font-size: 11px;
|
2020-09-26 15:43:01 +00:00
|
|
|
margin-left: 5px;
|
2020-02-16 18:30:00 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--title-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.commentReplies {
|
|
|
|
margin-left: 30px;
|
|
|
|
}
|
|
|
|
|
2021-02-15 14:59:35 +00:00
|
|
|
.showMoreReplies {
|
|
|
|
margin-left: 30px;
|
|
|
|
font-size: 15px;
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2020-02-16 18:30:00 +00:00
|
|
|
.getMoreComments {
|
|
|
|
height: 10px;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: underline;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--title-color);
|
|
|
|
}
|