You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
1.9 KiB

@import "../../style/themes/default";
@import "../../style/mixins/index";
@comment-prefix-cls: ~"@{ant-prefix}-comment";
.@{comment-prefix-cls} {
position: relative;
&-inner {
padding: @comment-padding-base;
}
&-header {
margin-bottom: @comment-header-margin;
padding-bottom: @comment-header-padding;
&-avatar {
position: relative;
float: left;
margin-right: 12px;
cursor: pointer;
img {
width: 32px;
height: 32px;
border-radius: 16px;
}
}
&-author {
padding-left: 12px;
flex: auto;
font-size: 14px;
& > a,
& > span {
display: inline-block;
height: 18px;
font-size: 12px;
line-height: 18px;
padding-right: 8px;
cursor: pointer;
}
&-name {
transition: color 0.3s ease;
font-size: 14px;
color: @comment-author-name-color;
> * {
color: @comment-author-name-color;
&:hover {
color: @comment-author-name-color;
}
}
}
&-time {
cursor: auto;
color: @comment-author-time-color;
white-space: nowrap;
&-tooltip {
cursor: pointer;
&:hover {
text-decoration: underline;
}
}
}
}
}
&-content {
position: relative;
padding-left: @comment-indent;
font-size: 14px;
}
&-actions {
margin-top: 12px;
& > li {
display: inline-block;
color: @comment-action-color;
> span {
padding-right: 10px;
transition: color 0.3s ease;
font-size: 12px;
color: @comment-action-color;
cursor: pointer;
user-select: none;
&:hover {
color: @comment-action-hover-color;
}
}
}
}
&-nested {
margin-left: @comment-indent;
}
}