Matteo Scandolo | 70bc45f | 2016-05-06 14:10:11 -0700 | [diff] [blame] | 1 | @import '../../../../style/sass/lib/_variables.scss'; |
Matteo Scandolo | e6393f0 | 2016-05-23 14:27:52 -0700 | [diff] [blame] | 2 | @import './side-panel.scss'; |
Matteo Scandolo | 70bc45f | 2016-05-06 14:10:11 -0700 | [diff] [blame] | 3 | |
| 4 | #xosServiceGrid { |
Matteo Scandolo | 075f802 | 2016-08-23 09:10:37 -0700 | [diff] [blame] | 5 | width: 100%; |
Matteo Scandolo | 819d13d | 2016-05-06 16:52:58 -0700 | [diff] [blame] | 6 | service-graph { |
| 7 | display: block; |
| 8 | width: 100%; |
| 9 | height: 600px; |
| 10 | } |
| 11 | |
| 12 | .node { |
| 13 | stroke: $brand-primary; |
| 14 | fill: white; |
| 15 | } |
| 16 | |
| 17 | .node.xos { |
| 18 | fill: $brand-danger; |
| 19 | } |
| 20 | |
| 21 | .link { |
Matteo Scandolo | 075f802 | 2016-08-23 09:10:37 -0700 | [diff] [blame] | 22 | stroke: darken($brand-primary, 10); |
Matteo Scandolo | 819d13d | 2016-05-06 16:52:58 -0700 | [diff] [blame] | 23 | stroke-width: 2px; |
| 24 | } |
Matteo Scandolo | 075f802 | 2016-08-23 09:10:37 -0700 | [diff] [blame] | 25 | |
| 26 | .link-arrow { |
| 27 | stroke: darken($brand-primary, 10); |
| 28 | fill: darken($brand-primary, 10); |
| 29 | } |
Matteo Scandolo | 70bc45f | 2016-05-06 14:10:11 -0700 | [diff] [blame] | 30 | } |