blob: af95a401557fa53949c42d63f1f5fbd15d8325b7 [file] [log] [blame]
Simon Hunt98189192016-07-29 19:02:27 -07001/*
2 * Copyright 2016-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 * Copyright 2016-present Open Networking Laboratory
19 *
20 * Licensed under the Apache License, Version 2.0 (the "License");
21 * you may not use this file except in compliance with the License.
22 * You may obtain a copy of the License at
23 *
24 * http://www.apache.org/licenses/LICENSE-2.0
25 *
26 * Unless required by applicable law or agreed to in writing, software
27 * distributed under the License is distributed on an "AS IS" BASIS,
28 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29 * See the License for the specific language governing permissions and
30 * limitations under the License.
31 */
32
33
34/*
35 ONOS GUI -- Topology View (theme) -- CSS file
36 */
37
38/* --- Base SVG Layer --- */
39
40#ov-topoX svg {
41 /*background-color: #f4f4f4;*/
42 background-color: goldenrod; /* just for testing */
43}
44
45/* --- "No Devices" Layer --- */
46
47#ov-topoX svg .noDevsBird {
48 fill: #db7773;
49}
50
51#ov-topoX svg #topoX-noDevsLayer text {
52 fill: #7e9aa8;
53}
54
55/* --- Topo Map --- */
56
57#ov-topoX svg #topoX-map {
58 stroke-width: 2px;
59 stroke: #f4f4f4;
60 fill: #e5e5e6;
61}
62