blob: d92b592f915e93d9b35bb31e03435e062a7d0eb0 [file] [log] [blame]
Simon Hunt54442fa2015-01-26 14:17:38 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
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
Simon Hunt811d8572016-06-02 13:40:14 -070030 padding: 2px;
Simon Hunt54442fa2015-01-26 14:17:38 -080031 font-size: 10pt;
Simon Hunt54442fa2015-01-26 14:17:38 -080032}
33
Simon Hunt75c25682015-11-02 16:49:56 -080034.floatpanel.dialog {
35 top: 180px;
36}
37
Bri Prebilic Coled8745462015-06-01 16:08:57 -070038html[data-platform='iPad'] .floatpanel {
39 top: 80px;
40}