Initial port label behaviour

This commit is contained in:
Nick O'Leary
2017-01-26 15:38:25 +00:00
parent d008b1970c
commit 92a928680c
2 changed files with 101 additions and 50 deletions

View File

@@ -272,3 +272,14 @@ g.link_unknown path.link_line {
stroke-width: 2;
stroke-dasharray: 10, 4;
}
@keyframes port_label_fadeIn { from { opacity:0; } to { opacity:1; } }
.port_label_fadeIn {
opacity:0;
animation: 0.2s ease-in 0s 1 normal forwards port_label_fadeIn;
fill: white;
stroke: #999;
stroke-width: 1;
pointer-events: none;
}