blob: cc4f3a50e72e769b3d231b9cf0d21245bbdfcd43 [file] [log] [blame]
Simon Hunt58894c82016-05-24 15:09:02 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Simon Hunt58894c82016-05-24 15:09:02 -07003 *
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
Simon Hunt986b92f2016-06-03 15:46:59 -070021.light div.close-btn svg.embeddedIcon g.icon .glyph {
Simon Hunte6e09842016-06-07 11:11:26 -070022 fill: #333333;
Simon Hunt58894c82016-05-24 15:09:02 -070023}
Simon Hunt58894c82016-05-24 15:09:02 -070024
25/* Sortable table headers */
26.light div.tableColSort svg.embeddedIcon .icon .glyph {
Simon Hunt986b92f2016-06-03 15:46:59 -070027 fill: #353333;
Simon Hunt58894c82016-05-24 15:09:02 -070028}
Simon Hunt58894c82016-05-24 15:09:02 -070029
Simon Hunt986b92f2016-06-03 15:46:59 -070030/* active / inactive (check/xmark) icons */
Simon Hunt58894c82016-05-24 15:09:02 -070031.light svg.embeddedIcon .icon.active .glyph {
Simon Huntf3fd4ed2016-05-31 17:16:18 -070032 fill: #04bf34;
Simon Hunt58894c82016-05-24 15:09:02 -070033}
Simon Huntf3fd4ed2016-05-31 17:16:18 -070034
35.light svg.embeddedIcon .icon.inactive .glyph {
Simon Hunt986b92f2016-06-03 15:46:59 -070036 fill: #c0242b;
Simon Huntf3fd4ed2016-05-31 17:16:18 -070037}
Simon Hunt58894c82016-05-24 15:09:02 -070038
Simon Hunt986b92f2016-06-03 15:46:59 -070039.light table svg.embeddedIcon .icon .glyph {
40 fill: #3c3a3a;
Simon Hunt58894c82016-05-24 15:09:02 -070041}
Simon Huntbb0f2672017-03-28 18:52:59 -070042
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;
Simon Hunt58894c82016-05-24 15:09:02 -070063}
64
Simon Hunt58894c82016-05-24 15:09:02 -070065