blob: 63b5dfba87431d145d10124c16b23eaa09cb6fb2 [file] [log] [blame]
Simon Huntd5b96732016-07-08 13:22: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/*
19 ONOS GUI -- Topology View (theme) -- CSS file
20 */
21
22/* --- Base SVG Layer --- */
23
24#ov-topo2 svg {
25 /*background-color: #f4f4f4;*/
26 background-color: goldenrod; /* just for testing */
27}
28
29/* --- "No Devices" Layer --- */
30
31#ov-topo2 svg .noDevsBird {
32 fill: #db7773;
33}
34
35#ov-topo2 svg #topo2-noDevsLayer text {
36 fill: #7e9aa8;
37}
38
39/* --- Topo Map --- */
40
41#ov-topo2 svg #topo2-map {
42 stroke-width: 2px;
43 stroke: #f4f4f4;
44 fill: #e5e5e6;
45}
46