blob: a05493d4eccc0d55815b2ae4a62b2120cd0c6f55 [file] [log] [blame]
Simon Hunt97225382015-01-19 13:33:09 -08001/*
2 * Copyright 2014,2015 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 ONOS GUI -- Icon Service -- CSS file
19 */
20
Simon Hunt64b60cd2015-01-19 13:51:30 -080021svg#IconLibDefs {
22 display: none;
23}
24
Simon Hunt97225382015-01-19 13:33:09 -080025svg.embeddedIcon .icon .glyph {
26 stroke: none;
27 fill: white;
28 fill-rule: evenodd;
29}
30
31svg.embeddedIcon .icon.deviceOnline {
32 fill: green;
33}
34
35svg.embeddedIcon .icon.deviceOffline {
36 fill: darkred;
37}
38
39svg.embeddedIcon .icon rect {
40 stroke: black;
41 stroke-width: 1px;
42}