blob: ff8cb8e3dfab2c25e79c8eef77dd498743710bce [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 {
Bri Prebilic Coledee46622015-02-03 16:36:11 -080026 stroke: none;
27 fill: white;
28 fill-rule: evenodd;
Simon Hunt97225382015-01-19 13:33:09 -080029}
30
Bri Prebilic Coledee46622015-02-03 16:36:11 -080031div.inline-icon {
32 display: inline-block;
Simon Hunt97225382015-01-19 13:33:09 -080033}
34
Bri Prebilic Coledee46622015-02-03 16:36:11 -080035.light svg.embeddedIcon .icon.deviceOnline {
36 fill: green;
37}
38.light svg.embeddedIcon .icon.deviceOffline {
39 fill: darkred;
Simon Hunt97225382015-01-19 13:33:09 -080040}
41
Bri Prebilic Coledee46622015-02-03 16:36:11 -080042.dark svg.embeddedIcon .icon.deviceOnline,
43.dark svg.embeddedIcon .icon.deviceOffline {
44 fill: #ccc;
45}
46.dark svg.embeddedIcon .icon.deviceOnline .glyph {
47 fill: green;
48}
49.dark svg.embeddedIcon .icon.deviceOffline .glyph {
50 fill: darkred;
51}
52
53.light svg.embeddedIcon .icon.tableColSortAsc .glyph,
54.light svg.embeddedIcon .icon.tableColSortDesc .glyph {
55 fill: black;
56}
57.dark svg.embeddedIcon .icon.tableColSortAsc .glyph,
58.dark svg.embeddedIcon .icon.tableColSortDesc .glyph {
59 fill: #ccc;
60}
61
Bri Prebilic Coleaa0f0882015-02-04 15:27:55 -080062svg.embeddedIcon .icon.tableColSortAsc rect,
63svg.embeddedIcon .icon.tableColSortDesc rect {
Bri Prebilic Coledee46622015-02-03 16:36:11 -080064 stroke: none;
65 fill: none;
66}
Bri Prebilic Coleaa0f0882015-02-04 15:27:55 -080067
Simon Hunt97225382015-01-19 13:33:09 -080068svg.embeddedIcon .icon rect {
Bri Prebilic Coledee46622015-02-03 16:36:11 -080069 stroke: black;
70 stroke-width: 1px;
71}
72.dark svg.embeddedIcon .icon rect {
73 stroke: #ccc;
Simon Hunt97225382015-01-19 13:33:09 -080074}
Bri Prebilic Coleaa0f0882015-02-04 15:27:55 -080075.dark svg.embeddedIcon .icon.tableColSortAsc rect,
76.dark svg.embeddedIcon .icon.tableColSortDesc rect {
77 stroke: none;
78}
Simon Huntac4c6f72015-02-03 19:50:53 -080079
80svg .svgIcon {
81 fill-rule: evenodd;
82}