auto-save 2026-05-14 02:30 (+2, ~4)

This commit is contained in:
2026-05-14 02:31:01 +08:00
parent eace01e94a
commit 95fbb0cbc6
6 changed files with 364 additions and 56 deletions

View File

@@ -380,3 +380,32 @@
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: var(--divider); border-radius: 4px; }
::-webkit-scrollbar-track { background: transparent; }
/* 节点内缩略图浮条(横滚)专用:加粗 + 紫色高亮 + 大可拖区,避免在画布 zoom 下拖不到 */
.react-flow__node .overflow-x-auto {
scrollbar-color: rgba(167, 139, 250, 0.65) rgba(255, 255, 255, 0.08);
scrollbar-width: auto;
}
.react-flow__node .overflow-x-auto::-webkit-scrollbar {
height: 14px;
}
.react-flow__node .overflow-x-auto::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.06);
border-radius: 8px;
margin: 0 4px;
border: 1px solid rgba(255, 255, 255, 0.08);
}
.react-flow__node .overflow-x-auto::-webkit-scrollbar-thumb {
background: rgba(167, 139, 250, 0.55);
border-radius: 8px;
border: 2px solid rgba(255, 255, 255, 0.18);
min-width: 48px;
background-clip: padding-box;
}
.react-flow__node .overflow-x-auto::-webkit-scrollbar-thumb:hover {
background: rgba(167, 139, 250, 0.85);
border-color: rgba(255, 255, 255, 0.3);
}
.react-flow__node .overflow-x-auto::-webkit-scrollbar-thumb:active {
background: rgba(217, 70, 239, 0.95);
}