41 lines
676 B
CSS
41 lines
676 B
CSS
body{font-family:system-ui,Arial}
|
|
.section-title{font-weight:600;margin:8px 0}
|
|
|
|
/* 任务列表样式 - 参考变更文件 */
|
|
.el-dialog__body {
|
|
padding: 16px;
|
|
}
|
|
|
|
.el-table--small {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.el-table--small .el-table__header th {
|
|
background-color: #f5f7fa;
|
|
font-weight: 600;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.el-table--small .el-table__body td {
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.el-table--small .el-table__row {
|
|
height: auto;
|
|
}
|
|
|
|
/* 任务列表行 */
|
|
.el-table--small tbody tr {
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.el-table--small tbody tr:hover {
|
|
background-color: #f5f7fa;
|
|
}
|
|
|
|
/* 表格操作按钮 */
|
|
.el-table .el-button--small {
|
|
height: 28px;
|
|
font-size: 12px;
|
|
}
|