blob: ded05cf1e78d5b4b81084d07aa6d4cc4677d1396 [file] [log] [blame]
Simon Hunt54442fa2015-01-26 14:17:38 -08001/*
2 * Copyright 2014,2015 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 -- Panel Service -- CSS file
19 */
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}
44
Simon Hunt54442fa2015-01-26 14:17:38 -080045.light .floatpanel {
Simon Hunt626d2102015-01-29 11:54:50 -080046 background-color: rgba(255,255,255,0.8);
47 color: black;
48 box-shadow: 0 2px 12px #777;
Simon Hunt54442fa2015-01-26 14:17:38 -080049}
50.dark .floatpanel {
Simon Hunt626d2102015-01-29 11:54:50 -080051 background-color: rgba(50,50,50,0.8);
52 color: #ccc;
53 box-shadow: 0 2px 12px #000;
Simon Hunt54442fa2015-01-26 14:17:38 -080054}