index.css
2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-comment {
position: relative;
background-color: inherit;
}
.ant-comment-inner {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 16px 0;
}
.ant-comment-avatar {
position: relative;
-ms-flex-negative: 0;
flex-shrink: 0;
margin-right: 12px;
cursor: pointer;
}
.ant-comment-avatar img {
width: 32px;
height: 32px;
border-radius: 50%;
}
.ant-comment-content {
position: relative;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
min-width: 1px;
font-size: 14px;
word-wrap: break-word;
}
.ant-comment-content-author {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
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;
-webkit-transition: color 0.3s;
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;
-webkit-transition: color 0.3s;
transition: color 0.3s;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
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;
}