blob: 7413fdf222b14f67abad16759ede9569e87eecc9 [file] [log] [blame]
Simon Hunt86388b12015-01-09 14:23:26 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Simon Hunt86388b12015-01-09 14:23:26 -08003 *
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/*
Simon Hunt58894c82016-05-24 15:09:02 -070018 ONOS GUI -- Navigation (layout) -- CSS file
Simon Hunt86388b12015-01-09 14:23:26 -080019 */
20
21#nav {
22 position: absolute;
Simon Huntfb35b832016-05-26 11:43:00 -070023 top: 48px;
24 left: 0;
Simon Hunt38c2b6a2015-04-24 13:02:05 -070025 padding: 0;
Simon Hunt86388b12015-01-09 14:23:26 -080026 z-index: 3000;
Sean Condon022ec272018-10-10 09:57:05 +010027 max-height: 90%;
28 overflow-y: auto;
Simon Hunt86388b12015-01-09 14:23:26 -080029 visibility: hidden;
30}
31
Bri Prebilic Coled8745462015-06-01 16:08:57 -070032html[data-platform='iPad'] #nav {
Simon Huntfb35b832016-05-26 11:43:00 -070033 top: 60px;
Bri Prebilic Coled8745462015-06-01 16:08:57 -070034}
35
Simon Hunt38c2b6a2015-04-24 13:02:05 -070036#nav .nav-hdr {
Simon Huntfb35b832016-05-26 11:43:00 -070037 font-weight: bold;
38 font-variant: small-caps;
39 text-transform: uppercase;
40 font-size: 12pt;
41 padding: 8px 15px;
Simon Hunt38c2b6a2015-04-24 13:02:05 -070042}
43
Thomas Vachuska9730ec92015-03-07 17:25:21 -080044#nav a {
45 text-decoration: none;
Simon Huntb940d692016-05-26 14:57:18 -070046 font-size: 12pt;
Simon Huntfb35b832016-05-26 11:43:00 -070047 font-weight: lighter;
Thomas Vachuska9730ec92015-03-07 17:25:21 -080048 display: block;
Simon Huntfb35b832016-05-26 11:43:00 -070049 padding: 6px 10px;
50 margin: 0 7px;
Simon Hunt86388b12015-01-09 14:23:26 -080051}
52
Simon Hunt20e16792015-04-24 14:29:39 -070053#nav a div {
54 display: inline-block;
55 vertical-align: middle;
56 padding-right: 4px;
57}