blob: 59cf10ff518e513c88ab50ee095bf114ed6cf5f5 [file] [log] [blame]
Sean Condon83fc39f2018-04-19 18:56:13 +01001/*
2 * Copyright 2016-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 (theme) -- CSS file
19 */
20
21.light div.close-btn svg.embeddedIcon g.icon .glyph {
22 fill: #333333;
23}
24
25/* Sortable table headers */
26.light div.tableColSort svg.embeddedIcon .icon .glyph {
27 fill: #353333;
28}
29
30/* active / inactive (check/xmark) icons */
31.light svg.embeddedIcon .icon.active .glyph {
32 fill: #04bf34;
33}
34
35.light svg.embeddedIcon .icon.inactive .glyph {
36 fill: #c0242b;
37}
38
39.light table svg.embeddedIcon .icon .glyph {
40 fill: #3c3a3a;
41}
42
43/* ========== DARK Theme ========== */
44
45.dark div.close-btn svg.embeddedIcon g.icon .glyph {
46 fill: #8d8d8d;
47}
48
49.dark div.tableColSort svg.embeddedIcon .icon .glyph {
50 fill: #888888;
51}
52
53.dark svg.embeddedIcon .icon.active .glyph {
54 fill: #04bf34;
55}
56
57.dark svg.embeddedIcon .icon.inactive .glyph {
58 fill: #c0242b;
59}
60
61.dark table svg.embeddedIcon .icon .glyph {
62 fill: #9999aa;
63}
64
65svg.embeddedIcon g.icon .glyph {
66 fill: #007dc4;
67}
68
69svg.embeddedIcon:hover g.icon .glyph {
70 fill: #20b2ff;
71}