File: map-directive.html

package info (click to toggle)
nagios4 4.4.6-4.1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 22,336 kB
  • sloc: ansic: 97,631; sh: 12,619; javascript: 5,483; perl: 2,624; makefile: 1,265; php: 381; ruby: 95
file content (48 lines) | stat: -rw-r--r-- 2,015 bytes parent folder | download | duplicates (3)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<div id="popup" ng-include="'map-popup.html'" ng-show="displayPopup"></div>

<div id="spinner" ng-show="fetchingHostlist" style="height: {{svgHeight}}; width: {{svgWidth}}"></div>

<div id="mapsvg" ng-hide="fetchingHostlist">
	<svg id="map" width="100%" height="100%">
		<filter id="circular-markup-text">
			<feFlood flood-color="#777777" result="flood"/>
			<feGaussianBlur in="flood" stdDeviation="1" result="blur"/>
			<feBlend in="SourceGraphic" in2="blur"/>
		</filter>
		<filter id="circular-markup-text-collapsed">
			<feFlood flood-color="blue" result="flood"/>
			<feGaussianBlur in="flood" stdDeviation="1" result="blur"/>
			<feBlend in="SourceGraphic" in2="blur"/>
		</filter>
		<filter id="icon-glow-up" x="-50%" y="-50%"
				width="200%" height="200%">
			<feComponentTransfer in="SourceAlpha" result="solid">
				<feFuncR type="table" tableValues="0 0 0 0"/>
				<feFuncG type="table" tableValues=".60 0 0 0"/>
				<feFuncB type="table" tableValues="0 0 0 0"/>
			</feComponentTransfer>
			<feGaussianBlur in="solid" stdDeviation="6" result="blur"/>
			<feBlend in="SourceGraphic" in2="blur"/>
		</filter>
		<filter id="icon-glow-down" x="-50%" y="-50%"
				width="200%" height="200%">
			<feComponentTransfer in="SourceAlpha" result="solid">
				<feFuncR type="table" tableValues="1 0 0 0"/>
				<feFuncG type="table" tableValues="0 0 0 0"/>
				<feFuncB type="table" tableValues="0 0 0 0"/>
			</feComponentTransfer>
			<feGaussianBlur in="solid" stdDeviation="6" result="blur"/>
			<feBlend in="SourceGraphic" in2="blur"/>
		</filter>
		<filter id="icon-glow-unreachable" x="-50%" y="-50%"
				width="200%" height="200%">
			<feComponentTransfer in="SourceAlpha" result="solid">
				<feFuncR type="table" tableValues=".5 0 0 0"/>
				<feFuncG type="table" tableValues="0 0 0 0"/>
				<feFuncB type="table" tableValues="0 0 0 0"/>
			</feComponentTransfer>
			<feGaussianBlur in="solid" stdDeviation="6" result="blur"/>
			<feBlend in="SourceGraphic" in2="blurOffset"/>
		</filter>
	</svg>
</div>