added switch tile and corresponding condition

This commit is contained in:
Stephan Richter
2021-02-10 13:22:56 +01:00
parent 3cd6df931d
commit 8ffbbf1109
8 changed files with 284 additions and 1 deletions

View File

@@ -406,4 +406,20 @@ svg.Block text{
.plan-file{
color: green;
}
.Switch rect{
fill:none;
}
.Switch.off rect.enabled,
.Switch.on rect.disabled{
display: none;
}
.Switch.off rect.disabled{
fill: red;
}
.Switch.on rect.enabled{
fill: forestgreen;
}