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
21 lines
756 B
CSS
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;
|
|
}
|