30 lines
590 B
Java
30 lines
590 B
Java
|
|
/*列表上方操作按钮*/
|
|
.ant-card-body .table-operator {
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
/*列表td的padding设置 可以控制列表大小*/
|
|
.ant-table-tbody .ant-table-row td {
|
|
padding-top: 15px;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
/*列表页面弹出modal*/
|
|
.ant-modal-cust-warp {
|
|
height: 100%
|
|
}
|
|
|
|
/*弹出modal Y轴滚动条*/
|
|
.ant-modal-cust-warp .ant-modal-body {
|
|
height: calc(100% - 110px) !important;
|
|
overflow-y: auto
|
|
}
|
|
|
|
/*弹出modal 先有content后有body 故滚动条控制在body上*/
|
|
.ant-modal-cust-warp .ant-modal-content {
|
|
height: 90% !important;
|
|
overflow-y: hidden
|
|
}
|
|
|