blob: 5870044ef141bc42d34f45db53c085600f123ffd [file] [log] [blame]
Simon Hunt195cb382014-11-03 17:50:51 -08001/*
2 * Copyright 2014 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 -- Base Framework -- CSS file
Simon Hunt195cb382014-11-03 17:50:51 -080019 */
20
21html, body {
22 height: 100%;
23}
24
Simon Hunta3dd9572014-11-20 15:22:41 -080025/* This is to ensure that the body does not expand to account for the
26 flyout details pane, that is positioned "off screen".
27 */
28body {
29 overflow: hidden;
30}
31
32#frame {
33 width: 100%;
34 height: 100%;
35 background-color: #fff;
36}
37
Simon Hunt25248912014-11-04 11:25:48 -080038div.onosView {
39 display: none;
40}
41
42div.onosView.currentView {
43 display: block;
44}
45
Simon Hunta3dd9572014-11-20 15:22:41 -080046
Thomas Vachuska65368e32014-11-08 16:10:20 -080047#alerts {
Simon Hunt1a9eff92014-11-07 11:06:34 -080048 display: none;
49 position: absolute;
Simon Hunt7b403bc2014-11-22 19:01:00 -080050 z-index: 1200;
Simon Hunt1a9eff92014-11-07 11:06:34 -080051 opacity: 0.65;
52 background-color: #006;
53 color: white;
54 top: 80px;
55 left: 40px;
56 padding: 3px 6px;
Simon Hunta3dd9572014-11-20 15:22:41 -080057 -moz-border-radius: 6px;
58 border-radius: 6px;
Simon Hunt2f9fb702014-11-23 17:33:32 -080059 box-shadow: 0px 2px 12px #777;
Simon Hunt1a9eff92014-11-07 11:06:34 -080060}
61
Thomas Vachuska65368e32014-11-08 16:10:20 -080062#alerts pre {
Simon Hunt1a9eff92014-11-07 11:06:34 -080063 margin: 0.2em 6px;
64}
65
Thomas Vachuska65368e32014-11-08 16:10:20 -080066#alerts span.close {
Simon Hunt1a9eff92014-11-07 11:06:34 -080067 color: #6af;
68 float: right;
69 right: 2px;
70 cursor: pointer;
71}
72
Thomas Vachuska65368e32014-11-08 16:10:20 -080073#alerts span.close:hover {
Simon Hunt1a9eff92014-11-07 11:06:34 -080074 color: #fff;
75}
76
Thomas Vachuska65368e32014-11-08 16:10:20 -080077#alerts p.footnote {
78 text-align: right;
79 font-size: 8pt;
80 margin: 8px 0 0 0;
81 color: #66d;
82}
83
Simon Hunt7b403bc2014-11-22 19:01:00 -080084#floatPanels {
85 z-index: 1100;
86}
Simon Hunt195cb382014-11-03 17:50:51 -080087
88#flyout {
89 position: absolute;
Simon Hunt195cb382014-11-03 17:50:51 -080090 display: block;
91 top: 10%;
92 width: 280px;
93 right: -300px;
94 opacity: 0;
95 background-color: rgba(255,255,255,0.8);
96
97 padding: 10px;
98 color: black;
99 font-size: 10pt;
100 box-shadow: 2px 2px 16px #777;
101}
102
103#flyout h2 {
104 margin: 8px 4px;
105 color: black;
106 vertical-align: middle;
107}
108
109#flyout h2 img {
110 height: 32px;
111 padding-right: 8px;
112 vertical-align: middle;
113}
114
115#flyout p, table {
116 margin: 4px 4px;
117}
118
119#flyout td.label {
120 font-style: italic;
121 color: #777;
122 padding-right: 12px;
123}
124
125#flyout td.value {
126
127}
128
129#flyout hr {
130 height: 1px;
131 color: #ccc;
132 background-color: #ccc;
133 border: 0;
134}