feat: 初步实现 Flowgram 面板布局和功能

- 添加了左侧悬浮菜单栏和主内容区的布局结构
- 实现了流程图编辑区域和可交互节点的样式
- 添加了操作指南提示信息
- 在全局样式中增加了悬浮菜单栏、工具按钮和流程图节点的交互效果
This commit is contained in:
2025-07-15 21:00:42 +08:00
parent 20e488c545
commit 95ca754f96
3 changed files with 72 additions and 97 deletions

View File

@@ -120,3 +120,22 @@
@apply bg-background text-foreground;
}
}
/* 悬浮菜单栏动画效果 */
.fixed {
transition: transform 0.2s ease-in-out;
}
/* 工具面板悬停效果 */
.sidebar-button:hover {
background-color: rgba(0, 0, 0, 0.05);
}
/* 流程图节点交互效果 */
.node-container {
cursor: grab;
}
.node-container:active {
cursor: grabbing;
}