blob: d4f0d6d9f5b4b4faa777bc92ee99ccfc90b73d42 [file] [log] [blame]
Simon Hunt58894c82016-05-24 15:09:02 -07001/*
2 * Copyright 2016-present 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 (theme) -- CSS file
19 */
20
21.light svg.embeddedIcon g.icon .glyph {
22 fill: white;
23}
24.dark svg.embeddedIcon g.icon .glyph {
25 fill: white;
26}
27
28
29/* Sortable table headers */
30.light div.tableColSort svg.embeddedIcon .icon .glyph {
31 fill: black;
32}
33.dark div.tableColSort svg.embeddedIcon .icon .glyph {
34 fill: #ccc;
35}
36
37.light svg.embeddedIcon .icon.active .glyph {
38 fill: green;
39}
40.dark svg.embeddedIcon .icon.active .glyph {
41 fill: #308C10;
42}
43
44.light table svg.embeddedIcon {
45 fill: #ccc;
46}
47.dark table svg.embeddedIcon {
48 fill: #222;
49}
50.light table svg.embeddedIcon .glyph {
51 fill: #333;
52}
53.dark table svg.embeddedIcon .glyph {
54 fill: #ccc;
55}
56
57.light svg.embeddedIcon .icon.active .glyph {
58 fill: green;
59}
60.light svg.embeddedIcon .icon.inactive .glyph {
61 fill: darkred;
62}
63.dark svg.embeddedIcon .icon.active .glyph {
64 fill: #308C10;
65}
66.dark svg.embeddedIcon .icon.inactive .glyph {
67 fill: #AD2D2D;
68}
69