refactor(editor): 优化布局管理和行为树文件处理

This commit is contained in:
YHH
2025-11-04 23:53:26 +08:00
parent f9afa22406
commit e03b106652
15 changed files with 958 additions and 243 deletions

View File

@@ -150,10 +150,35 @@
.hierarchy-content {
flex: 1;
overflow-y: auto;
overflow: auto;
padding: var(--spacing-xs) 0;
}
.hierarchy-content::-webkit-scrollbar {
width: 14px;
height: 14px;
}
.hierarchy-content::-webkit-scrollbar-track {
background: transparent;
}
.hierarchy-content::-webkit-scrollbar-thumb {
background: rgba(121, 121, 121, 0.4);
border-radius: 8px;
border: 3px solid transparent;
background-clip: padding-box;
}
.hierarchy-content::-webkit-scrollbar-thumb:hover {
background: rgba(100, 100, 100, 0.7);
background-clip: padding-box;
}
.hierarchy-content::-webkit-scrollbar-corner {
background: transparent;
}
.empty-state {
display: flex;
flex-direction: column;