18 lines
358 B
CSS
18 lines
358 B
CSS
/**
|
|
Hover on nodes, edges, path and polygon
|
|
*/
|
|
.node:hover, .edge:hover, path:hover, path + polygon:hover {
|
|
cursor: pointer;
|
|
stroke-width: 3;
|
|
font-weight: bolder;
|
|
}
|
|
|
|
/**
|
|
Manually added class by the script highlight-hover.js when hovering on plays and roles
|
|
*/
|
|
.highlight {
|
|
cursor: pointer;
|
|
stroke-width: 3;
|
|
font-weight: bolder;
|
|
}
|