mirror of
https://github.com/zadam/trilium.git
synced 2025-11-03 03:46:37 +01:00
fix(search): note path not visible in search (closes #7404)
This commit is contained in:
@@ -106,6 +106,12 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.note-list.list-view .note-path {
|
||||||
|
margin-left: 0.5em;
|
||||||
|
vertical-align: middle;
|
||||||
|
color: var(--muted-color);
|
||||||
|
}
|
||||||
|
|
||||||
/* #region Grid view */
|
/* #region Grid view */
|
||||||
.note-list.grid-view .note-list-container {
|
.note-list.grid-view .note-list-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ function ListNoteCard({ note, parentNote, expand, highlightedTokens }: { note: F
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<Icon className="note-icon" icon={note.getIcon()} />
|
<Icon className="note-icon" icon={note.getIcon()} />
|
||||||
<NoteLink className="note-book-title" notePath={notePath} noPreview showNotePath={note.type === "search"} highlightedTokens={highlightedTokens} />
|
<NoteLink className="note-book-title" notePath={notePath} noPreview showNotePath={parentNote.type === "search"} highlightedTokens={highlightedTokens} />
|
||||||
<NoteAttributes note={note} />
|
<NoteAttributes note={note} />
|
||||||
</h5>
|
</h5>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user