CN-297 feat: detections下拉(部分)

This commit is contained in:
chenjinsong
2022-02-22 15:59:30 +08:00
parent 932e64e026
commit 8f8f412877
5 changed files with 335 additions and 5 deletions

View File

@@ -0,0 +1,49 @@
.detection-detail-overview {
display: flex;
position: relative;
padding: 0 30px;
&>div {
flex: 0 0 50%;
display: flex;
flex-direction: column;
.overview__title {
padding: 10px 0;
color: #333;
font-weight: bold;
font-size: 14px;
&:first-of-type {
padding-top: 0;
}
}
.overview__row {
display: flex;
flex-direction: row;
align-items: flex-start;
flex-wrap: nowrap;
padding: 2px 10px 2px 0;
font-size: 14px;
.row__label {
padding-right: 20px;
min-width: 100px;
color: #6B717B;
}
.row__content {
display: flex;
color: #3976CB;
&.row__content--link {
font-style: italic;
text-decoration: underline;
color: #1890FF;
cursor: pointer;
}
}
}
}
}