blob: 8d22fd0e9a76838a04220c9f4fc0854e0c4fa004 [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 -- Navigation (theme) -- CSS file
19 */
20
21.light #nav {
Simon Huntfb35b832016-05-26 11:43:00 -070022 background-color: #231f20;
Simon Hunt58894c82016-05-24 15:09:02 -070023}
24.dark #nav {
Simon Huntfb35b832016-05-26 11:43:00 -070025 /* TODO: dark theme */
26 background-color: #231f20;
Simon Hunt58894c82016-05-24 15:09:02 -070027}
28
29.light #nav .nav-hdr {
Simon Huntfb35b832016-05-26 11:43:00 -070030 color: #716b6a;
31 background-color: #3c3a3a;
Simon Hunt58894c82016-05-24 15:09:02 -070032}
33.dark #nav .nav-hdr {
Simon Huntfb35b832016-05-26 11:43:00 -070034 /* TODO: dark theme */
35 color: #716b6a;
36 background-color: #3c3a3a;
Simon Hunt58894c82016-05-24 15:09:02 -070037}
38
39.light #nav a {
Simon Huntfb35b832016-05-26 11:43:00 -070040 color: #c7c7c0;
41 border-bottom: solid #3c3a3a 1px;
Simon Hunt58894c82016-05-24 15:09:02 -070042}
43.dark #nav a {
Simon Huntfb35b832016-05-26 11:43:00 -070044 /* TODO: dark theme */
45 color: #c7c7c0;
46 border-bottom: solid #3c3a3a 1px;
Simon Hunt58894c82016-05-24 15:09:02 -070047}
48
49.light #nav a:hover {
Simon Huntfb35b832016-05-26 11:43:00 -070050 color: #ffffff;
Simon Hunt58894c82016-05-24 15:09:02 -070051}
52.dark #nav a:hover {
Simon Huntfb35b832016-05-26 11:43:00 -070053 /* TODO: dark theme */
54 color: #ffffff;
Simon Hunt58894c82016-05-24 15:09:02 -070055}
56
57#nav a div svg.embeddedIcon g.icon .glyph {
Simon Huntfb35b832016-05-26 11:43:00 -070058 fill: #007dc4;
59}
60
61#nav a:hover div svg.embeddedIcon g.icon .glyph {
62 fill: #20b2ff;
Simon Hunt58894c82016-05-24 15:09:02 -070063}
64