mirror of
https://github.com/pmgwork/obsidian-cite.git
synced 2026-07-22 08:37:39 +00:00
49 lines
857 B
CSS
49 lines
857 B
CSS
.cite-unresolved {
|
|
color: var(--text-muted);
|
|
border-bottom: 1px dashed var(--text-muted);
|
|
}
|
|
|
|
.cite-bibliography {
|
|
color: inherit;
|
|
font: inherit;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.cite-bibliography-item {
|
|
color: inherit;
|
|
font: inherit;
|
|
display: inline;
|
|
margin: 0;
|
|
}
|
|
|
|
/* Autocomplete items */
|
|
.cite-completion-key {
|
|
display: block;
|
|
font-size: var(--font-smaller);
|
|
color: var(--text-muted);
|
|
margin-top: 1px;
|
|
}
|
|
|
|
.cite-completion-separator {
|
|
display: block;
|
|
height: 1px;
|
|
background: var(--background-modifier-border);
|
|
border: none;
|
|
margin: 4px -8px 0;
|
|
}
|
|
|
|
.cite-settings-warning {
|
|
color: var(--text-warning);
|
|
font-size: var(--font-ui-small);
|
|
}
|
|
|
|
.cite-settings-errors {
|
|
color: var(--text-muted);
|
|
font-size: var(--font-ui-small);
|
|
margin: var(--size-4-2) 0;
|
|
}
|
|
|
|
.cite-settings-errors ul {
|
|
margin-block: var(--size-4-1) 0;
|
|
}
|