| /* |
| * Copyright 2014 Open Networking Laboratory |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| /* |
| ONOS GUI -- Base Framework -- CSS file |
| |
| @author Simon Hunt |
| */ |
| |
| html, body { |
| height: 100%; |
| } |
| |
| /* This is to ensure that the body does not expand to account for the |
| flyout details pane, that is positioned "off screen". |
| */ |
| body { |
| overflow: hidden; |
| } |
| |
| #frame { |
| width: 100%; |
| height: 100%; |
| background-color: #fff; |
| } |
| |
| div.onosView { |
| display: none; |
| } |
| |
| div.onosView.currentView { |
| display: block; |
| } |
| |
| |
| #alerts { |
| display: none; |
| position: absolute; |
| z-index: 1200; |
| opacity: 0.65; |
| background-color: #006; |
| color: white; |
| top: 80px; |
| left: 40px; |
| padding: 3px 6px; |
| -moz-border-radius: 6px; |
| border-radius: 6px; |
| box-shadow: 0px 2px 12px #777; |
| } |
| |
| #alerts pre { |
| margin: 0.2em 6px; |
| } |
| |
| #alerts span.close { |
| color: #6af; |
| float: right; |
| right: 2px; |
| cursor: pointer; |
| } |
| |
| #alerts span.close:hover { |
| color: #fff; |
| } |
| |
| #alerts p.footnote { |
| text-align: right; |
| font-size: 8pt; |
| margin: 8px 0 0 0; |
| color: #66d; |
| } |
| |
| #floatPanels { |
| z-index: 1100; |
| } |
| |
| #flyout { |
| position: absolute; |
| display: block; |
| top: 10%; |
| width: 280px; |
| right: -300px; |
| opacity: 0; |
| background-color: rgba(255,255,255,0.8); |
| |
| padding: 10px; |
| color: black; |
| font-size: 10pt; |
| box-shadow: 2px 2px 16px #777; |
| } |
| |
| #flyout h2 { |
| margin: 8px 4px; |
| color: black; |
| vertical-align: middle; |
| } |
| |
| #flyout h2 img { |
| height: 32px; |
| padding-right: 8px; |
| vertical-align: middle; |
| } |
| |
| #flyout p, table { |
| margin: 4px 4px; |
| } |
| |
| #flyout td.label { |
| font-style: italic; |
| color: #777; |
| padding-right: 12px; |
| } |
| |
| #flyout td.value { |
| |
| } |
| |
| #flyout hr { |
| height: 1px; |
| color: #ccc; |
| background-color: #ccc; |
| border: 0; |
| } |