mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
33 lines
537 B
Text
33 lines
537 B
Text
#taskoverview-graph {
|
|
g.hulls path {
|
|
opacity: 0.25;
|
|
}
|
|
g.hull-labels text {
|
|
}
|
|
g.nodes circle {
|
|
stroke: #000000;
|
|
&.highlight {
|
|
stroke: #555599;
|
|
stroke-width: 2.5px;
|
|
fill: #EEAAAA !important;
|
|
}
|
|
opacity: .9;
|
|
stroke-width: 1.5px;
|
|
}
|
|
g.node-labels text {
|
|
pointer-events: none;
|
|
font: 10px sans-serif;
|
|
text-anchor: middle;
|
|
text-shadow: 0 0 2px #FFFFFF;
|
|
font-weight: bold;
|
|
opacity: 0;
|
|
&.hover {
|
|
transition: opacity .5s;
|
|
opacity: .9;
|
|
}
|
|
}
|
|
g.links line {
|
|
stroke: #999;
|
|
stroke-opacity: .6;
|
|
}
|
|
}
|