mirror of
https://github.com/yashmurty/obsidian-people-graph.git
synced 2026-07-22 06:08:45 +00:00
- Use sentence case for UI text - Fix async/await and unhandled promises - Remove style element from export, use CSS classes - Replace inline styles with CSS classes - Fix any types with proper D3 generics - Remove plugin prefix from command ID/name - Remove detachLeavesOfType from onunload - Use arrow functions to avoid this scoping issues Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
357 B
CSS
19 lines
357 B
CSS
/* People Graph plugin styles */
|
|
|
|
.people-graph-container {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.people-graph-tooltip {
|
|
position: absolute;
|
|
display: none;
|
|
background: #ffffff;
|
|
border: 1px solid #e0e0e0;
|
|
border-radius: 6px;
|
|
padding: 8px 12px;
|
|
font-size: 12px;
|
|
pointer-events: none;
|
|
z-index: 100;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
}
|