123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
- /* stylelint-disable no-duplicate-selectors */
- .ant-comment {
- position: relative;
- background-color: inherit;
- }
- .ant-comment-inner {
- display: flex;
- padding: 16px 0;
- }
- .ant-comment-avatar {
- position: relative;
- flex-shrink: 0;
- margin-right: 12px;
- cursor: pointer;
- }
- .ant-comment-avatar img {
- width: 32px;
- height: 32px;
- border-radius: 50%;
- }
- .ant-comment-content {
- position: relative;
- flex: 1 1 auto;
- min-width: 1px;
- font-size: 14px;
- word-wrap: break-word;
- }
- .ant-comment-content-author {
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start;
- margin-bottom: 4px;
- font-size: 14px;
- }
- .ant-comment-content-author > a,
- .ant-comment-content-author > span {
- padding-right: 8px;
- font-size: 12px;
- line-height: 18px;
- }
- .ant-comment-content-author-name {
- color: rgba(0, 0, 0, 0.45);
- font-size: 14px;
- transition: color 0.3s;
- }
- .ant-comment-content-author-name > * {
- color: rgba(0, 0, 0, 0.45);
- }
- .ant-comment-content-author-name > *:hover {
- color: rgba(0, 0, 0, 0.45);
- }
- .ant-comment-content-author-time {
- color: #ccc;
- white-space: nowrap;
- cursor: auto;
- }
- .ant-comment-content-detail p {
- margin-bottom: inherit;
- white-space: pre-wrap;
- }
- .ant-comment-actions {
- margin-top: 12px;
- margin-bottom: inherit;
- padding-left: 0;
- }
- .ant-comment-actions > li {
- display: inline-block;
- color: rgba(0, 0, 0, 0.45);
- }
- .ant-comment-actions > li > span {
- margin-right: 10px;
- color: rgba(0, 0, 0, 0.45);
- font-size: 12px;
- cursor: pointer;
- transition: color 0.3s;
- user-select: none;
- }
- .ant-comment-actions > li > span:hover {
- color: #595959;
- }
- .ant-comment-nested {
- margin-left: 44px;
- }
- .ant-comment-rtl {
- direction: rtl;
- }
- .ant-comment-rtl .ant-comment-avatar {
- margin-right: 0;
- margin-left: 12px;
- }
- .ant-comment-rtl .ant-comment-content-author > a,
- .ant-comment-rtl .ant-comment-content-author > span {
- padding-right: 0;
- padding-left: 8px;
- }
- .ant-comment-rtl .ant-comment-actions {
- padding-right: 0;
- }
- .ant-comment-rtl .ant-comment-actions > li > span {
- margin-right: 0;
- margin-left: 10px;
- }
- .ant-comment-rtl .ant-comment-nested {
- margin-right: 44px;
- margin-left: 0;
- }
- nz-comment {
- display: block;
- }
- nz-comment-content {
- display: block;
- }
|