60 lines
842 B
Plaintext
60 lines
842 B
Plaintext
/**
|
|
* 文件职责:经营报表表格区域样式。
|
|
*/
|
|
.frp-table-card {
|
|
overflow: hidden;
|
|
background: #fff;
|
|
border: 1px solid #f0f0f0;
|
|
border-radius: 10px;
|
|
|
|
.ant-table-wrapper {
|
|
.ant-table-thead > tr > th {
|
|
font-size: 13px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.ant-table-tbody > tr > td {
|
|
font-size: 13px;
|
|
vertical-align: middle;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
.ant-pagination {
|
|
margin: 14px 16px;
|
|
}
|
|
}
|
|
|
|
.frp-date {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.frp-value {
|
|
color: rgb(0 0 0 / 88%);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.frp-amount {
|
|
font-weight: 600;
|
|
white-space: nowrap;
|
|
|
|
&.is-profit {
|
|
color: #52c41a;
|
|
}
|
|
|
|
&.is-loss {
|
|
color: #ff4d4f;
|
|
}
|
|
}
|
|
|
|
.frp-action-group {
|
|
display: flex;
|
|
gap: 2px;
|
|
align-items: center;
|
|
}
|
|
|
|
.frp-action-link {
|
|
padding-inline: 0;
|
|
white-space: nowrap;
|
|
}
|