imeeting/frontend/src/components/shared/ListTable/ListTable.css

50 lines
871 B
CSS
Raw Normal View History

/* 列表表格容器 */
.list-table-container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
flex: 1;
min-height: 0;
}
/* 行选中样式 */
.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;
}