Uploaded lost svg files from yesterday.

This commit is contained in:
mdtrooper 2016-03-22 09:48:44 +01:00
parent 11c75259d3
commit 6e0ddb5b18
7 changed files with 195 additions and 0 deletions

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<symbol id="head_arrow_module_alertsfired">
<g>
<rect
y="0"
x="0"
height="100"
width="100"
style="
fill:#000000;
fill-opacity:0;"
/>
<circle
r="50"
cy="50"
cx="50"
style="opacity:1;fill:#FAA326;fill-opacity:1;stroke:none;" />
</g>
</symbol>
</defs>
<g transform="translate(100, 100)">
<use xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:href="#head_arrow_module_alertsfired" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 638 B

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<symbol id="head_arrow_module_critical">
<g>
<rect
y="0"
x="0"
height="100"
width="100"
style="
fill:#000000;
fill-opacity:0;"
/>
<circle
r="50"
cy="50"
cx="50"
style="opacity:1;fill:#FF5951;fill-opacity:1;stroke:none;" />
</g>
</symbol>
</defs>
<g transform="translate(100, 100)">
<use xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:href="#head_arrow_module_critical" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 632 B

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<symbol id="head_arrow_module_no_data">
<g>
<rect
y="0"
x="0"
height="100"
width="100"
style="
fill:#000000;
fill-opacity:0;"
/>
<circle
r="50"
cy="50"
cx="50"
style="opacity:1;fill:#5AB7E5;fill-opacity:1;stroke:none;" />
</g>
</symbol>
</defs>
<g transform="translate(100, 100)">
<use xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:href="#head_arrow_module_no_data" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 630 B

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<symbol id="head_arrow_module_ok">
<g>
<rect
y="0"
x="0"
height="100"
width="100"
style="
fill:#000000;
fill-opacity:0;"
/>
<circle
r="50"
cy="50"
cx="50"
style="opacity:1;fill:#7EBE3F;fill-opacity:1;stroke:none;" />
</g>
</symbol>
</defs>
<g transform="translate(100, 100)">
<use xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:href="#head_arrow_module_ok" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 620 B

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<symbol id="head_arrow_module_unknown">
<g>
<rect
y="0"
x="0"
height="100"
width="100"
style="
fill:#000000;
fill-opacity:0;"
/>
<circle
r="50"
cy="50"
cx="50"
style="opacity:1;fill:#A9A9A9;fill-opacity:1;stroke:none;" />
</g>
</symbol>
</defs>
<g transform="translate(100, 100)">
<use xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:href="#head_arrow_module_unknown" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 630 B

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<symbol id="head_arrow_module_warning">
<g>
<rect
y="0"
x="0"
height="100"
width="100"
style="
fill:#000000;
fill-opacity:0;"
/>
<circle
r="50"
cy="50"
cx="50"
style="opacity:1;fill:#F4D900;fill-opacity:1;stroke:none;" />
</g>
</symbol>
</defs>
<g transform="translate(100, 100)">
<use xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:href="#head_arrow_module_warning" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 630 B

View File

@ -507,6 +507,9 @@ MapController.prototype.paint_minimap = function() {
var screen_size = d3.select(self._target).node().getBoundingClientRect();
var map_size = d3.select(self._target + " .viewport").node().getBBox();
var real_width = map_size.width + map_size.x;
var real_height = map_size.height + map_size.y;
var minimap_map_width = (map_size.width + map_size.x) / RELATION_MINIMAP;
var minimap_map_height = (map_size.height + map_size.y) / RELATION_MINIMAP;