Matteo Scandolo | 0c61c9b | 2017-03-03 11:49:18 -0800 | [diff] [blame] | 1 | @import './../../../style/vars.scss'; |
| 2 | @import '../../../../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables'; |
| 3 | |
| 4 | xos-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; |
Matteo Scandolo | a160eef | 2017-03-06 17:21:26 -0800 | [diff] [blame] | 23 | fill: $background-color; |
Matteo Scandolo | 0c61c9b | 2017-03-03 11:49:18 -0800 | [diff] [blame] | 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 | } |