blob: 6f0232dabe7110a6701b77b529fe72951dc79621 [file] [log] [blame]
Simon Hunt54442fa2015-01-26 14:17:38 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Simon Hunt54442fa2015-01-26 14:17:38 -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 -- Panel Service (layout) -- CSS file
Simon Hunt54442fa2015-01-26 14:17:38 -080019 */
20
21.floatpanel {
22 position: absolute;
23 z-index: 100;
24 display: block;
25 top: 64px;
26 width: 200px;
27 right: -220px;
28 opacity: 0;
Simon Hunt54442fa2015-01-26 14:17:38 -080029
30 padding: 10px;
Simon Hunt54442fa2015-01-26 14:17:38 -080031 font-size: 10pt;
32
33 -moz-border-radius: 6px;
34 border-radius: 6px;
Simon Hunt54442fa2015-01-26 14:17:38 -080035}
36
Simon Hunt75c25682015-11-02 16:49:56 -080037.floatpanel.dialog {
38 top: 180px;
39}
40
Bri Prebilic Coled8745462015-06-01 16:08:57 -070041html[data-platform='iPad'] .floatpanel {
42 top: 80px;
43}