blob: 74e16545601ad666afd86009d1cbc0a69b46d169 [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
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 Hunt986b92f2016-06-03 15:46:59 -070024.dark div.close-btn svg.embeddedIcon g.icon .glyph {
25 /* TODO: dark theme */
Simon Hunte6e09842016-06-07 11:11:26 -070026 fill: #333333;
Simon Hunt58894c82016-05-24 15:09:02 -070027}
28
29
30/* Sortable table headers */
31.light div.tableColSort svg.embeddedIcon .icon .glyph {
Simon Hunt986b92f2016-06-03 15:46:59 -070032 fill: #353333;
Simon Hunt58894c82016-05-24 15:09:02 -070033}
34.dark div.tableColSort svg.embeddedIcon .icon .glyph {
Simon Hunt986b92f2016-06-03 15:46:59 -070035 /* TODO: dark theme */
36 fill: #353333;
Simon Hunt58894c82016-05-24 15:09:02 -070037}
38
Simon Hunt986b92f2016-06-03 15:46:59 -070039/* active / inactive (check/xmark) icons */
Simon Hunt58894c82016-05-24 15:09:02 -070040.light svg.embeddedIcon .icon.active .glyph {
Simon Huntf3fd4ed2016-05-31 17:16:18 -070041 fill: #04bf34;
Simon Hunt58894c82016-05-24 15:09:02 -070042}
43.dark svg.embeddedIcon .icon.active .glyph {
Simon Huntf3fd4ed2016-05-31 17:16:18 -070044 /* TODO: dark theme */
45 fill: #04bf34;
46}
47
48.light svg.embeddedIcon .icon.inactive .glyph {
Simon Hunt986b92f2016-06-03 15:46:59 -070049 fill: #c0242b;
Simon Huntf3fd4ed2016-05-31 17:16:18 -070050}
51.dark svg.embeddedIcon .icon.inactive .glyph {
52 /* TODO: dark theme */
Simon Hunt986b92f2016-06-03 15:46:59 -070053 fill: #c0242b;
Simon Hunt58894c82016-05-24 15:09:02 -070054}
55
Simon Hunt986b92f2016-06-03 15:46:59 -070056.light table svg.embeddedIcon .icon .glyph {
57 fill: #3c3a3a;
Simon Hunt58894c82016-05-24 15:09:02 -070058}
59.dark table svg.embeddedIcon .glyph {
Simon Hunt986b92f2016-06-03 15:46:59 -070060 /* TODO: dark theme */
61 fill: #3c3a3a;
Simon Hunt58894c82016-05-24 15:09:02 -070062}
63
Simon Hunt58894c82016-05-24 15:09:02 -070064