blob: 1075b74a33e24975e5b1bed3d2c190a3c3018950 [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 Hunt54442fa2015-01-26 14:17:38 -080037.light .floatpanel {
Simon Hunt626d2102015-01-29 11:54:50 -080038 background-color: rgba(255,255,255,0.8);
39 color: black;
40 box-shadow: 0 2px 12px #777;
Simon Hunt54442fa2015-01-26 14:17:38 -080041}
42.dark .floatpanel {
Simon Hunt626d2102015-01-29 11:54:50 -080043 background-color: rgba(50,50,50,0.8);
44 color: #ccc;
45 box-shadow: 0 2px 12px #000;
Simon Hunt54442fa2015-01-26 14:17:38 -080046}