File: taskoverview.less

package info (click to toggle)
bootstrap-vz 0.9.10%2B20170110git-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,208 kB
  • sloc: python: 8,400; sh: 744; makefile: 16
file content (33 lines) | stat: -rw-r--r-- 537 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#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;
	}
}