blob: 56c9804c301ec0f2f78e81bbe96e6b97dc5b0f44 [file] [log] [blame]
Matteo Scandolo5bf51732018-01-10 15:51:33 -08001/*
2 * Copyright 2017-present Open Networking Foundation
3
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7
8 * http://www.apache.org/licenses/LICENSE-2.0
9
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17
18@import './../../../style/vars.scss';
19@import '../../../../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables';
20
21xos-service-graph-legend {
22 svg {
23 height: 95%;
24 width: 100%;
25
26 text {
27 fill: #fff;
28 }
29
30 .service path {
31 fill: $color-accent;
32 }
33
34 .serviceinstance path {
35 fill: $serviceinstances-fg;
36 }
37
38 .instance path {
39 fill: $instances-fg;
40 }
41
42 .network path {
43 fill: $networks-fg;
44 }
45 }
46}