mirror of
https://github.com/svm0n/obsidian-inline-graph.git
synced 2026-07-22 08:32:46 +00:00
Move manifest.json/main.js to repo root (required by the review bot and BRAT), add styles.css to fix static-style-assignment lint errors, set up eslint-plugin-obsidianmd, and add a smoke test for parseGr. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
34 lines
618 B
CSS
34 lines
618 B
CSS
.inline-graph-container {
|
|
position: relative;
|
|
}
|
|
|
|
.inline-graph-svg {
|
|
display: block;
|
|
}
|
|
|
|
.inline-graph-tooltip {
|
|
position: absolute;
|
|
display: none;
|
|
max-width: 260px;
|
|
padding: 6px 10px;
|
|
border-radius: 6px;
|
|
font-size: 0.85em;
|
|
pointer-events: none;
|
|
z-index: 10;
|
|
background: var(--background-primary);
|
|
border: 1px solid var(--background-modifier-border);
|
|
box-shadow: var(--shadow-s, 0 2px 8px rgba(0, 0, 0, 0.3));
|
|
color: var(--text-normal);
|
|
}
|
|
|
|
.inline-graph-tooltip.is-visible {
|
|
display: block;
|
|
}
|
|
|
|
.inline-graph-node {
|
|
cursor: grab;
|
|
}
|
|
|
|
.inline-graph-node.is-dragging {
|
|
cursor: grabbing;
|
|
}
|