59 lines
936 B
CSS
59 lines
936 B
CSS
/* 树形筛选面板 */
|
|
.tree-filter-panel {
|
|
width: 320px;
|
|
max-height: 500px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
/* 已选择的筛选条件 */
|
|
.tree-filter-selected {
|
|
min-height: 40px;
|
|
padding: 12px;
|
|
background: #f5f7fa;
|
|
border-radius: 6px;
|
|
border: 1px dashed #d9d9d9;
|
|
}
|
|
|
|
.tree-filter-tag {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.tree-filter-label {
|
|
font-size: 13px;
|
|
color: rgba(0, 0, 0, 0.65);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.tree-filter-placeholder {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 24px;
|
|
}
|
|
|
|
.tree-filter-placeholder span {
|
|
color: #8c8c8c;
|
|
font-size: 13px;
|
|
}
|
|
|
|
/* 树形选择器容器 */
|
|
.tree-filter-container {
|
|
max-height: 280px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.tree-filter-header {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
margin-bottom: 12px;
|
|
color: rgba(0, 0, 0, 0.85);
|
|
}
|
|
|
|
/* 操作按钮 */
|
|
.tree-filter-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|