blob: 92a114f5a94d00a5bb89cc7ed2947f2af4b1e53c [file] [log] [blame]
Sean Condon0c577f62018-11-18 22:40:05 +00001/*
2 * Copyright 2018-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/*
19 ONOS GUI -- Topology View (forces host visual) -- CSS file
Sean Condon021f0fa2018-12-06 23:31:11 -080020 */
21.node.host text {
22 stroke: none;
23 font-size: 13px;
24 fill: #846;
25}
26
27.node.host circle {
28 stroke: #a3a596;
29 fill: #e0dfd6;
30}
31
32.node.host.selected > circle {
33 stroke-width: 2.0;
34 stroke: #009fdb;
35}
36
37.node.host use {
38 fill: #3c3a3a;
39}
40
41.node.host rect {
42 fill: #ffffff;
43}