bootstrap-vz/docs/_static/taskoverview.less
Anders Ingemann be5590f411 Add highlighting of tasks in same module in taskoverview
and a docs-serve tox target
2015-04-11 16:40:43 +02:00

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;
}
}