feat: add timeline hover message preview

This commit is contained in:
Shantur Rathore
2025-12-08 09:45:11 +00:00
parent a2e5034c20
commit 9b0e02f66f
4 changed files with 113 additions and 5 deletions

View File

@@ -149,4 +149,23 @@
}
}
.message-timeline-tooltip {
position: fixed;
z-index: 1000;
pointer-events: none;
}
.message-preview {
width: 360px;
max-height: 420px;
overflow: auto;
border-radius: 8px;
border: 1px solid var(--border-base);
background-color: var(--surface-base);
box-shadow: var(--panel-shadow, 0 12px 32px rgba(0, 0, 0, 0.25));
padding: 0.75rem;
}
.message-preview .message-item-base {
font-size: 0.85rem;
}