blob: 6138ad5205a82c8c930f8bbc9b493a9bcc486d9e [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;
Thomas Vachuska47635c62014-11-22 01:21:36 -080027 top: 64px;
28 width: 260px;
Simon Hunt61d04042014-11-11 17:27:16 -080029 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 Hunt2f9fb702014-11-23 17:33:32 -080039 box-shadow: 0px 2px 12px #777;
Simon Hunt61d04042014-11-11 17:27:16 -080040}
41
42/* TODO: light/dark themes */
43.light .fpanel {
44
45}
46.dark .fpanel {
47
48}