nex_design/src/components/ListTable/ListTable.css

50 lines
848 B
CSS

/* 列表表格容器 */
.list-table-container {
background: #ffffff;
border-radius: 8px;
padding: 16px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
height: 626px;
overflow-y: auto;
width: 100%;
}
/* 行选中样式 */
.list-table-container .row-selected {
background-color: #e6f7ff;
}
.list-table-container .row-selected:hover > td {
background-color: #bae7ff !important;
}
/* 分页器中的选择信息样式 */
.table-selection-info {
display: inline-flex;
align-items: center;
gap: 8px;
}
.selection-count {
color: rgba(0, 0, 0, 0.65);
font-size: 14px;
}
.count-highlight {
color: #1677ff;
font-weight: 600;
}
.selection-action {
color: #1677ff;
font-size: 14px;
cursor: pointer;
text-decoration: none;
transition: color 0.3s;
margin-left: 4px;
}
.selection-action:hover {
color: #4096ff;
}