Make links thicker, reduce timeout trigger time
Some checks failed
CI / test (pull_request) Failing after 20s
API CI / api-tests (pull_request) Failing after 38s

This commit is contained in:
Tim Lorsbach
2026-07-09 20:39:48 +02:00
parent 28e5dbbcf5
commit 57f5ce089c
2 changed files with 2 additions and 2 deletions

View File

@ -263,7 +263,7 @@ function draw(pathway, elem) {
}
// Wait before showing popup (ms)
var popupWaitBeforeShow = 1000;
var popupWaitBeforeShow = 500;
// Custom popover element
let popoverTimeout = null;
@ -661,7 +661,6 @@ function draw(pathway, elem) {
.append("g")
.attr("class", "link-group");
const link = linkGroup
.append("path")
.attr("class", d => d.target.pseudo ? "link_no_arrow" : "link")

View File

@ -21,6 +21,7 @@
.link {
stroke: #999;
stroke-opacity: 0.6;
stroke-width: 1.5px;
/* marker-end: url(#arrow); */
}