mirror of
https://github.com/dnlbauer/obsidian-dataview-autocompletion.git
synced 2026-07-22 11:40:29 +00:00
29 lines
503 B
CSS
29 lines
503 B
CSS
div.dataview-suggestion-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
margin-inline-end: auto;
|
|
}
|
|
|
|
div.dataview-suggestion-title {
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
div.dataview-suggestion-title p {
|
|
margin-block: 0px;
|
|
}
|
|
|
|
div.dataview-suggestion-note{
|
|
font-size: 0.8em;
|
|
color: var(--text-muted);
|
|
width: 100%;
|
|
flex-basis: 100%;
|
|
overflow-wrap: break-word;
|
|
padding-left: 8px;
|
|
}
|
|
|
|
span.dataview-suggestion-highlight {
|
|
font-weight: bold;
|
|
}
|
|
|