Rift.IO OSM R1 Initial Submission
[osm/UI.git] / skyquake / plugins / composer / src / src / styles / GraphVirtualLink.scss
1 @import "main";
2
3 .DescriptorGraph {
4
5         /* colors are defined in ColorGroups and assigned in the graph code. */
6
7         .VirtualLink {
8
9                 @extend .descriptor;
10
11                 path.icon {
12                         pointer-events: none;
13                 }
14
15                 &.-is-selected,
16                 &.-selected {
17                         circle.badge {
18                                 stroke: red;
19                         }
20                 }
21
22         }
23
24         &.-is-dragging-connection-point {
25                 .-is-valid-drop-target.-is-drag-over {
26                         circle.badge {
27                                 stroke: red;
28                         }
29                 }
30         }
31
32 }