yashmurty_obsidian-people-g.../styles.css
yashmurty a065c7f7d3 fix: address Obsidian plugin review feedback
- 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>
2026-04-13 14:57:23 +09:00

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);
}