imeeting/components/ListTable/ListTable.css

52 lines
976 B
CSS

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