blob: 1a308ace8080a176bf987b600399db70fd2148a0 [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 -- Navigation (theme) -- CSS file
19 */
20
21#nav {
22 background-color: #231f20;
23}
24
25#nav .nav-hdr {
26 color: #716b6a;
27 background-color: #3c3a3a;
28}
29
30#nav a {
31 color: #c7c7c0;
32 border-bottom: solid #3c3a3a 1px;
33}
34
35#nav a:hover {
36 color: #ffffff;
37}
38
39/* With component styles isolation in Angular 6 these no longer work */
40#nav a div svg.embeddedIcon g.icon .glyph {
41 fill: #007dc4;
42}
43
44#nav a:hover div svg.embeddedIcon g.icon .glyph {
45 fill: #20b2ff;
46}