mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-01 23:29:30 +08:00
b445baa001
* chore(deps-dev): bump stylelint-config-prettier from 8.0.2 to 9.0.2 Bumps [stylelint-config-prettier](https://github.com/prettier/stylelint-config-prettier) from 8.0.2 to 9.0.2. - [Release notes](https://github.com/prettier/stylelint-config-prettier/releases) - [Commits](https://github.com/prettier/stylelint-config-prettier/compare/v8.0.2...v9.0.2) --- updated-dependencies: - dependency-name: stylelint-config-prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: autofix stylelint errors * chore: autofix stylelint errors Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
106 lines
2.0 KiB
Plaintext
106 lines
2.0 KiB
Plaintext
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
|
|
@comment-prefix-cls: ~'@{ant-prefix}-comment';
|
|
|
|
.@{comment-prefix-cls} {
|
|
position: relative;
|
|
background-color: @comment-bg;
|
|
|
|
&-inner {
|
|
display: flex;
|
|
padding: @comment-padding-base;
|
|
}
|
|
|
|
&-avatar {
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
margin-right: @margin-sm;
|
|
cursor: pointer;
|
|
|
|
img {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
|
|
&-content {
|
|
position: relative;
|
|
flex: 1 1 auto;
|
|
min-width: 1px;
|
|
font-size: @comment-font-size-base;
|
|
word-wrap: break-word;
|
|
|
|
&-author {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
margin-bottom: @margin-xss;
|
|
font-size: @comment-font-size-base;
|
|
|
|
& > a,
|
|
& > span {
|
|
padding-right: @padding-xs;
|
|
font-size: @comment-font-size-sm;
|
|
line-height: 18px;
|
|
}
|
|
|
|
&-name {
|
|
color: @comment-author-name-color;
|
|
font-size: @comment-font-size-base;
|
|
transition: color 0.3s;
|
|
|
|
> * {
|
|
color: @comment-author-name-color;
|
|
|
|
&:hover {
|
|
color: @comment-author-name-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-time {
|
|
color: @comment-author-time-color;
|
|
white-space: nowrap;
|
|
cursor: auto;
|
|
}
|
|
}
|
|
|
|
&-detail p {
|
|
margin-bottom: @comment-content-detail-p-margin-bottom;
|
|
white-space: pre-wrap;
|
|
}
|
|
}
|
|
|
|
&-actions {
|
|
margin-top: @comment-actions-margin-top;
|
|
margin-bottom: @comment-actions-margin-bottom;
|
|
padding-left: 0;
|
|
|
|
> li {
|
|
display: inline-block;
|
|
color: @comment-action-color;
|
|
|
|
> span {
|
|
margin-right: 10px;
|
|
color: @comment-action-color;
|
|
font-size: @comment-font-size-sm;
|
|
cursor: pointer;
|
|
transition: color 0.3s;
|
|
user-select: none;
|
|
|
|
&:hover {
|
|
color: @comment-action-hover-color;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&-nested {
|
|
margin-left: @comment-nest-indent;
|
|
}
|
|
}
|
|
|
|
@import './rtl';
|