blob: f2497a9bd7efbd4601f69481708c0aae831e8dd5 [file] [log] [blame]
Matteo Scandolo0c61c9b2017-03-03 11:49:18 -08001@import './../../../style/vars.scss';
2@import '../../../../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables';
3
4xos-coarse-tenancy-graph {
5 display: block;
6 // background: $color-accent;
7
8 svg {
9 height: 400px;
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 > rect {
22 stroke: $color-accent;
23 fill: $background-light-color;
24 }
25
26 .node > text {
27 fill: #fff;
28 font-size: 20px;
29 }
30 }
31
32 .link-group {
33 line {
34 stroke: $color-accent;
35 }
36 }
37 .arrow-marker {
38 stroke: $color-accent;
39 fill: $color-accent;
40 }
41}