45 lines
784 B
CSS
45 lines
784 B
CSS
|
|
/* 列表表格容器 */
|
||
|
|
.list-table-container {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 行选中样式 */
|
||
|
|
.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;
|
||
|
|
}
|