44 lines
1.1 KiB
CSS
44 lines
1.1 KiB
CSS
|
|
/* 列表表格容器 */
|
||
|
|
.list-table-container {
|
||
|
|
background: #ffffff;
|
||
|
|
border-radius: 8px;
|
||
|
|
padding: 16px;
|
||
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 表格行样式 */
|
||
|
|
.list-table-container :global(.ant-table-row) {
|
||
|
|
cursor: pointer;
|
||
|
|
transition: all 0.3s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.list-table-container :global(.ant-table-row:hover) {
|
||
|
|
background: #f5f5f5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.list-table-container :global(.ant-table-row.row-selected) {
|
||
|
|
background: #e6f4ff;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 操作列样式 - 重新设计 */
|
||
|
|
.list-table-container :global(.ant-table-thead > tr > th:last-child) {
|
||
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
|
||
|
|
color: #ffffff !important;
|
||
|
|
font-weight: 600;
|
||
|
|
border-left: 2px solid #e8e8e8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.list-table-container :global(.ant-table-tbody > tr > td:last-child) {
|
||
|
|
background: #f8f9ff !important;
|
||
|
|
border-left: 2px solid #e8e8e8;
|
||
|
|
box-shadow: -2px 0 4px rgba(0, 0, 0, 0.02);
|
||
|
|
}
|
||
|
|
|
||
|
|
.list-table-container :global(.ant-table-tbody > tr:hover > td:last-child) {
|
||
|
|
background: #eef0ff !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.list-table-container :global(.ant-table-tbody > tr.row-selected > td:last-child) {
|
||
|
|
background: #e1e6ff !important;
|
||
|
|
}
|