fix wrong ui

This commit is contained in:
2026-06-28 02:23:30 +02:00
parent d3d52a5432
commit a15d6c0b2c
2 changed files with 67 additions and 2 deletions
+18
View File
@@ -1206,6 +1206,24 @@
.resolve-path { overflow: hidden; color: var(--color-ink-faint); font-family: var(--font-mono); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
}
/* Custom tooltip — appended to body, not clipped by overflow:hidden parents */
.path-tooltip {
position: fixed;
z-index: 300;
max-width: 480px;
padding: 5px 10px;
border: 1px solid var(--color-border);
border-radius: 6px;
background: var(--color-surface-raised);
color: var(--color-ink-muted);
font-family: var(--font-mono);
font-size: 12px;
white-space: pre-wrap;
word-break: break-all;
pointer-events: none;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}
@keyframes spin { to { transform: rotate(360deg); } }
/* --- Responsive breakpoints --- */