blob: 425b1bf0847675d7682e0d80b08b989f670812c1 [file] [log] [blame]
Matteo Scandolo75171782017-03-08 14:17:01 -08001@import './../../../style/vars.scss';
2@import '../../../../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables';
3
4xos-fine-grained-tenancy-graph {
5 display: block;
6 // background: $color-accent;
7
8 svg {
9 height: 800px;
10 width: 100%;
11 background-color: $panel-filled-bg;
12 border-radius: 3px;
13 }
14
15 .node-group {
16
17 .node {
18 cursor: pointer;
19 }
20
21 .node {
22 rect, circle {
23 stroke: $color-accent;
24 fill: $background-color;
25 }
26
27 &.network > circle{
28 stroke: blue;
29 }
30
31 &.tenant > rect{
32 stroke: green;
33 }
34
35 &.subscriber > rect{
36 stroke: red;
37 }
38 }
39
40 .node > text {
41 fill: #fff;
42 font-size: 20px;
43 }
44 }
45
46 .link-group {
47 line {
48 stroke: $color-accent;
49 }
50 }
51 .arrow-marker {
52 stroke: $color-accent;
53 fill: $color-accent;
54 }
55}