blob: a65562f1fcc9ebd3fe9b969e136056c587879f52 [file] [log] [blame]
Simon Hunta1028c42017-02-07 20:08:03 -08001/*
2 * Copyright 2017-present Open Networking Laboratory
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/* ------------------------------------------------- */
19/* Sprite Layer */
20
21/* TODO: revisit these styles */
22
23
24#ov-topo svg #topo-sprites .gold1 use {
25 stroke: #fda;
26 fill: none;
27}
28#ov-topo svg #topo-sprites .gold1 text {
29 fill: #eda;
30}
31
32#ov-topo svg #topo-sprites .blue1 use {
33 stroke: #bbd;
34 fill: none;
35}
36#ov-topo svg #topo-sprites .blue1 text {
37 fill: #cce;
38}
39
40#ov-topo svg #topo-sprites .gray1 use {
41 stroke: #ccc;
42 fill: none;
43}
44#ov-topo svg #topo-sprites .gray1 text {
45 fill: #ddd;
46}
47
48/* fills */
49#ov-topo svg #topo-sprites use.fill-gray2 {
50 fill: #eee;
51}
52
53#ov-topo svg #topo-sprites use.fill-blue2 {
54 fill: #bce;
55}