blob: 546f8b3e75526b7ec7f6e19cce485f9a6e54e739 [file] [log] [blame]
Simon Hunt97225382015-01-19 13:33:09 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Simon Hunt97225382015-01-19 13:33:09 -08003 *
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 Hunt3695a622015-03-31 11:52:23 -070025svg .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 {
Bri Prebilic Coledee46622015-02-03 16:36:11 -080039 stroke: none;
40 fill: white;
41 fill-rule: evenodd;
Simon Hunt97225382015-01-19 13:33:09 -080042}
43
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070044
Simon Hunt3695a622015-03-31 11:52:23 -070045/* Sortable table headers */
46.light div.tableColSort svg.embeddedIcon .icon .glyph {
47 fill: black;
48}
49.dark div.tableColSort svg.embeddedIcon .icon .glyph {
50 fill: #ccc;
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070051}
52
Simon Hunt3695a622015-03-31 11:52:23 -070053
54/* color schemes for specific icon classes */
55
56svg.embeddedIcon .icon.appInactive .glyph {
Thomas Vachuska619c5382015-04-02 13:41:47 -070057 fill: none;
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070058}
59
Bri Prebilic Coleab582b82015-04-14 15:08:22 -070060.light svg.embeddedIcon .icon.active .glyph {
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070061 fill: green;
62}
Bri Prebilic Coleab582b82015-04-14 15:08:22 -070063.dark svg.embeddedIcon .icon.active .glyph {
Simon Hunt3695a622015-03-31 11:52:23 -070064 fill: #308C10;
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070065}
66
67
Thomas Vachuska58eded62015-03-31 12:04:03 -070068.light table svg.embeddedIcon {
Bri Prebilic Coledee46622015-02-03 16:36:11 -080069 fill: #ccc;
70}
Thomas Vachuska58eded62015-03-31 12:04:03 -070071.dark table svg.embeddedIcon {
Bri Prebilic Cole357f7fd2015-02-12 17:03:42 -080072 fill: #222;
73}
Thomas Vachuska58eded62015-03-31 12:04:03 -070074.light table svg.embeddedIcon .glyph {
Bri Prebilic Cole357f7fd2015-02-12 17:03:42 -080075 fill: #333;
76}
Thomas Vachuska58eded62015-03-31 12:04:03 -070077.dark table svg.embeddedIcon .glyph {
Bri Prebilic Cole357f7fd2015-02-12 17:03:42 -080078 fill: #ccc;
79}
80
Bri Prebilic Coleab582b82015-04-14 15:08:22 -070081.light svg.embeddedIcon .icon.active .glyph {
Bri Prebilic Coledee46622015-02-03 16:36:11 -080082 fill: green;
83}
Bri Prebilic Coleab582b82015-04-14 15:08:22 -070084.light svg.embeddedIcon .icon.inactive .glyph {
Bri Prebilic Coledee46622015-02-03 16:36:11 -080085 fill: darkred;
86}
Bri Prebilic Coleab582b82015-04-14 15:08:22 -070087.dark svg.embeddedIcon .icon.active .glyph {
Simon Hunt3695a622015-03-31 11:52:23 -070088 fill: #308C10;
Bri Prebilic Cole357f7fd2015-02-12 17:03:42 -080089}
Bri Prebilic Coleab582b82015-04-14 15:08:22 -070090.dark svg.embeddedIcon .icon.inactive .glyph {
Simon Hunt3695a622015-03-31 11:52:23 -070091 fill: #AD2D2D;
Simon Huntac4c6f72015-02-03 19:50:53 -080092}