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

@@ -97,6 +97,21 @@
font-size: var(--font-size-md);
}
/* 系统文件夹特殊标记 */
.tree-icon .system-folder-icon {
filter: drop-shadow(0 0 2px rgba(66, 165, 245, 0.5));
animation: subtle-pulse-tree 3s ease-in-out infinite;
}
@keyframes subtle-pulse-tree {
0%, 100% {
filter: drop-shadow(0 0 2px rgba(66, 165, 245, 0.5));
}
50% {
filter: drop-shadow(0 0 4px rgba(66, 165, 245, 0.7));
}
}
.tree-label {
flex: 1;
overflow: hidden;