blob: bacf29e4774ad6ed58b71c3f1b302bebd1992ef7 [file] [log] [blame]
Simon Hunt61d04042014-11-11 17:27:16 -08001/*
2 * Copyright 2014 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 -- Floating Panels -- CSS file
19
20 @author Simon Hunt
21 */
22
23.fpanel {
24 position: absolute;
25 z-index: 100;
26 display: block;
27 top: 10%;
28 width: 280px;
29 right: -300px;
30 opacity: 0;
31 background-color: rgba(255,255,255,0.8);
32
33 padding: 10px;
34 color: black;
35 font-size: 10pt;
Simon Hunta6a9fe72014-11-20 11:17:12 -080036
37 -moz-border-radius: 6px;
38 border-radius: 6px;
Simon Hunt61d04042014-11-11 17:27:16 -080039 box-shadow: 2px 2px 16px #777;
40}
41
42/* TODO: light/dark themes */
43.light .fpanel {
44
45}
46.dark .fpanel {
47
48}