Files
obsidian-global-config/plugins/multi-vault-links-0.1.4/styles.css
Brendan Chen f865b400fb Initial global Obsidian config
Shared config extracted from obsidian-config; vault-specific files (bookmarks.json, daily-notes.json) excluded.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

Claude-Session: https://claude.ai/code/session_01ASYabtTgxSxJPjxPmBK9PJ
2026-06-24 12:03:59 -04:00

21 lines
756 B
CSS

.multi-vault-link {
color: var(--link-color, var(--text-accent));
text-decoration: var(--link-decoration, underline);
cursor: pointer;
}
.multi-vault-link:hover {
color: var(--link-color-hover, var(--text-accent-hover));
text-decoration: var(--link-decoration-hover, underline);
}
/* When the raw [[…]] is shown (source mode, or cursor in the link in live
preview) Obsidian marks the cross-vault target "unresolved" and fades it with
--link-unresolved-opacity (~0.7). Restore full opacity and the normal link
colour so a multi-vault link never looks grayed. */
.cm-multi-vault-source .cm-hmd-internal-link,
.cm-multi-vault-source .is-unresolved {
color: var(--link-color, var(--text-accent)) !important;
opacity: 1 !important;
}