blob: 347837a9df2467e9c54f748db3602d4ba67d6972 [file] [log] [blame]
Sean Condon83fc39f2018-04-19 18:56:13 +01001/*
2 * Copyright 2015-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 ONOS GUI -- Icon Service (layout) -- CSS file
19 */
20
21svg#IconLibDefs {
22 display: none;
23}
24
25svg .svgIcon {
26 fill-rule: evenodd;
27}
28
29svg.embeddedIcon g.icon {
30 fill: none;
31}
32
33svg.embeddedIcon g.icon rect {
34 stroke: none;
35 fill: none;
36}
37
38svg.embeddedIcon g.icon .glyph {
39 stroke: none;
40 fill-rule: evenodd;
41}
42
43svg.embeddedIcon .icon.appInactive .glyph {
44 fill: none !important;
45}