mirror of
https://github.com/yacy/yacy_search_server.git
synced 2025-02-02 06:38:42 -05:00
260ac11c65
To improve a bit readability of graphs having a large number of nodes.
54 lines
720 B
CSS
54 lines
720 B
CSS
|
|
#Outbound {
|
|
fill: lightblue;
|
|
}
|
|
#Dead {
|
|
fill: red;
|
|
}
|
|
#Inbound {
|
|
fill: green;
|
|
}
|
|
.hypertree {
|
|
border: solid;
|
|
}
|
|
.hypertree-link {
|
|
fill: none;
|
|
stroke-width: 1.2px;
|
|
}
|
|
.hypertree-link.Outbound {
|
|
stroke: lightblue;
|
|
}
|
|
.hypertree-link.Dead {
|
|
stroke: red;
|
|
stroke-dasharray: 0,2 1;
|
|
}
|
|
.hypertree-link.Inbound {
|
|
stroke: green;
|
|
}
|
|
circle {
|
|
fill: lightgreen;
|
|
stroke: darkgreen;
|
|
stroke-width: 1.5px;
|
|
}
|
|
text {
|
|
font: 9px sans-serif;
|
|
cursor: default;
|
|
text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff;
|
|
}
|
|
|
|
text tspan.truncated {
|
|
display: none;
|
|
}
|
|
|
|
text:hover tspan.truncated {
|
|
display: inherit;
|
|
}
|
|
|
|
text tspan.ellipsis {
|
|
display: inherit;
|
|
}
|
|
|
|
text:hover tspan.ellipsis {
|
|
display: none;
|
|
}
|