mirror of
https://github.com/zadam/trilium.git
synced 2025-11-08 04:42:28 +08:00
fix(notemap): invisible hover color on light theme
This commit is contained in:
parent
0770f97010
commit
d2dda95654
2 changed files with 1 additions and 2 deletions
|
|
@ -164,7 +164,7 @@ export function setupRendering(graph: ForceGraph, { note, noteId, themeStyle, wi
|
|||
// set link width to immitate a highlight effect. Checking the condition if any links are saved in the previous defined set highlightlinks
|
||||
graph
|
||||
.linkWidth((link) => (highlightLinks.has(link) ? 3 : 0.4))
|
||||
.linkColor((link) => (highlightLinks.has(link) ? "white" : cssData.mutedTextColor))
|
||||
.linkColor((link) => (highlightLinks.has(link) ? cssData.textColor : cssData.mutedTextColor))
|
||||
.linkDirectionalArrowLength(4)
|
||||
.linkDirectionalArrowRelPos(0.95)
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@ export default function NoteMapTab({ note }: TabContext) {
|
|||
setHeight(SMALL_SIZE_HEIGHT);
|
||||
}
|
||||
}, [ isExpanded, containerRef, windowHeight, containerSize?.top ]);
|
||||
// useEffect(() => noteMapWidget.setDimensions(), [ containerSize?.width, height ]);
|
||||
|
||||
return (
|
||||
<div className="note-map-ribbon-widget" style={{ height }} ref={containerRef}>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue