feat: 实现可扩展的字段编辑器系统与专业资产选择器 (#227)

This commit is contained in:
YHH
2025-11-19 14:54:03 +08:00
committed by GitHub
parent caed5428d5
commit ecfef727c8
18 changed files with 1330 additions and 11 deletions

View File

@@ -70,7 +70,16 @@
cursor: pointer;
font-size: var(--font-size-base);
white-space: nowrap;
transition: background 0.1s ease;
transition: all 0.15s ease;
position: relative;
}
.tree-node[draggable="true"] {
cursor: grab;
}
.tree-node[draggable="true"]:active {
cursor: grabbing;
}
.tree-node:hover {
@@ -81,6 +90,16 @@
background: #37373d;
}
/* 拖拽时的样式 */
.tree-node.dragging {
opacity: 0.5;
}
.tree-node[draggable="true"]:hover {
background: #2a2d2e;
box-shadow: inset 2px 0 0 rgba(74, 222, 128, 0.5);
}
.tree-arrow {
width: 16px;
height: 16px;