implemented bridge

This commit is contained in:
Stephan Richter
2020-11-30 19:57:59 +01:00
parent 1bfcc3da5f
commit aaeddd0a82
13 changed files with 225 additions and 3 deletions

View File

@@ -309,4 +309,14 @@ table.brake-times th{
border-color: black;
border-style: solid;
border-width: 1px 0 0;
}
polyline{
stroke: black;
stroke-width: 5px;
fill: none;
}
svg.disconnected rect{
fill: red;
}

View File

@@ -0,0 +1,4 @@
<svg width="100" height="" viewbox="0 0 100 100">
<rect x="20" y="35" width="80" height="30" />
<polyline points="30,10 20,20 20,80 30,90" />
</svg>

After

Width:  |  Height:  |  Size: 151 B

View File

@@ -0,0 +1,4 @@
<svg width="100" height="" viewbox="0 0 100 100">
<rect x="35" y="0" width="30" height="80" />
<polyline points="10,70 20,80 80,80 90,70" />
</svg>

After

Width:  |  Height:  |  Size: 150 B

View File

@@ -0,0 +1,4 @@
<svg width="100" height="" viewbox="0 0 100 100">
<rect x="35" y="20" width="30" height="80" />
<polyline points="10,30 20,20 80,20 90,30" />
</svg>

After

Width:  |  Height:  |  Size: 151 B

View File

@@ -0,0 +1,4 @@
<svg width="100" height="" viewbox="0 0 100 100">
<rect x="0" y="35" width="80" height="30" />
<polyline points="70,10 80,20 80,80 70,90" />
</svg>

After

Width:  |  Height:  |  Size: 150 B