feat(graph-ui): polish memory graph visuals

This commit is contained in:
youzini
2026-06-04 08:07:09 +00:00
parent fe18a05147
commit 05d2c703c8
4 changed files with 389 additions and 54 deletions

View File

@@ -553,6 +553,35 @@
flex-direction: column;
min-height: 0;
position: relative;
background:
radial-gradient(circle at 52% 34%, var(--bme-primary-dim, rgba(44, 92, 162, 0.16)), transparent 42%),
radial-gradient(circle at 86% 16%, rgba(150, 91, 255, 0.08), transparent 34%),
radial-gradient(circle at 12% 82%, rgba(0, 229, 255, 0.05), transparent 36%),
var(--bme-surface-lowest, #0e0e11);
}
.bme-graph-workspace::before {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background-image:
radial-gradient(circle, rgba(255, 255, 255, 0.52) 0 1px, transparent 1.4px),
radial-gradient(circle, rgba(124, 248, 255, 0.28) 0 1px, transparent 1.6px);
background-position: 18px 24px, 68px 86px;
background-size: 134px 134px, 211px 211px;
opacity: 0.16;
z-index: 0;
}
.bme-graph-workspace > .bme-graph-toolbar,
.bme-graph-workspace > #bme-graph-canvas,
.bme-graph-workspace > .bme-graph-legend,
.bme-graph-workspace > .bme-graph-statusbar,
.bme-graph-workspace > .bme-cognition-workspace,
.bme-graph-workspace > #bme-summary-workspace {
position: relative;
z-index: 1;
}
.bme-graph-overlay {