GstPipelineStudio/src/graphmanager/graphview.css
Stéphane Cerveau a0bb503b27 graphview: can now select nodes and links
Nodes and links can be selected and deleted
2022-01-11 20:48:53 +01:00

32 lines
453 B
CSS

@define-color graphview-link #808080;
button.node {
color: rgb(0, 0, 255);
background: rgb(170, 255, 170);
}
button.node-selected {
border-color: rgb(255, 0, 0);
background: rgb(170, 255, 170);
}
button.port {
color: rgb(0, 0, 255);
}
button.port-selected {
border-color: rgb(255, 0, 0);
}
button.port-out {
background: rgb(255, 170, 170);
}
button.port-in {
background: rgb(170, 170, 255);
}
graphview {
background: #d0d2d4;
}