index.css
4.22 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* 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-descriptions-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 20px;
}
.ant-descriptions-title {
-webkit-box-flex: 1;
-ms-flex: auto;
flex: auto;
overflow: hidden;
color: rgba(0, 0, 0, 0.85);
font-weight: bold;
font-size: 16px;
line-height: 1.5715;
white-space: nowrap;
text-overflow: ellipsis;
}
.ant-descriptions-extra {
margin-left: auto;
color: rgba(0, 0, 0, 0.85);
font-size: 14px;
}
.ant-descriptions-view {
width: 100%;
overflow: hidden;
border-radius: 2px;
}
.ant-descriptions-view table {
width: 100%;
table-layout: fixed;
}
.ant-descriptions-row > th,
.ant-descriptions-row > td {
padding-bottom: 16px;
}
.ant-descriptions-row:last-child {
border-bottom: none;
}
.ant-descriptions-item-label {
color: rgba(0, 0, 0, 0.85);
font-weight: normal;
font-size: 14px;
line-height: 1.5715;
text-align: start;
}
.ant-descriptions-item-label::after {
content: ':';
position: relative;
top: -0.5px;
margin: 0 8px 0 2px;
}
.ant-descriptions-item-label.ant-descriptions-item-no-colon::after {
content: ' ';
}
.ant-descriptions-item-no-label::after {
margin: 0;
content: '';
}
.ant-descriptions-item-content {
display: table-cell;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
color: rgba(0, 0, 0, 0.85);
font-size: 14px;
line-height: 1.5715;
word-break: break-word;
overflow-wrap: break-word;
}
.ant-descriptions-item {
padding-bottom: 0;
vertical-align: top;
}
.ant-descriptions-item-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.ant-descriptions-item-container .ant-descriptions-item-label,
.ant-descriptions-item-container .ant-descriptions-item-content {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: baseline;
-ms-flex-align: baseline;
align-items: baseline;
}
.ant-descriptions-middle .ant-descriptions-row > th,
.ant-descriptions-middle .ant-descriptions-row > td {
padding-bottom: 12px;
}
.ant-descriptions-small .ant-descriptions-row > th,
.ant-descriptions-small .ant-descriptions-row > td {
padding-bottom: 8px;
}
.ant-descriptions-bordered .ant-descriptions-view {
border: 1px solid #f0f0f0;
}
.ant-descriptions-bordered .ant-descriptions-view > table {
table-layout: auto;
}
.ant-descriptions-bordered .ant-descriptions-item-label,
.ant-descriptions-bordered .ant-descriptions-item-content {
padding: 16px 24px;
border-right: 1px solid #f0f0f0;
}
.ant-descriptions-bordered .ant-descriptions-item-label:last-child,
.ant-descriptions-bordered .ant-descriptions-item-content:last-child {
border-right: none;
}
.ant-descriptions-bordered .ant-descriptions-item-label {
background-color: #fafafa;
}
.ant-descriptions-bordered .ant-descriptions-item-label::after {
display: none;
}
.ant-descriptions-bordered .ant-descriptions-row {
border-bottom: 1px solid #f0f0f0;
}
.ant-descriptions-bordered .ant-descriptions-row:last-child {
border-bottom: none;
}
.ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-label,
.ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-content {
padding: 12px 24px;
}
.ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label,
.ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content {
padding: 8px 16px;
}
.ant-descriptions-rtl {
direction: rtl;
}
.ant-descriptions-rtl .ant-descriptions-item-label::after {
margin: 0 2px 0 8px;
}
.ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-label,
.ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-content {
border-right: none;
border-left: 1px solid #f0f0f0;
}
.ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-label:last-child,
.ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-content:last-child {
border-left: none;
}