blob: 34d127f038515bc58508803282ac5245a5e0688d [file] [log] [blame]
Sean Condon28ecc5f2018-06-25 12:50:16 +01001/*
2 * Copyright 2015-present Open Networking Foundation
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 (layout) -- CSS file
19 */
20
21.floatpanel {
22 position: absolute;
23 z-index: 100;
24 display: block;
25 top: 120px;
26 width: 500px;
27 right: -505px;
28 opacity: 100;
29
30 padding: 2px;
31 font-size: 10pt;
32}
33
34/* The following 4 are copied here from Theme until we sort out the
35 * theme service
36 */
37.floatpanel {
38 background-color: white;
39 color: #3c3a3a;
40 border: 1px solid #c7c7c0;
41}
42
43.floatpanel hr {
44 border: 1px solid #c7c7c0;
45}
46
47.floatpanel .bottom tr:nth-child(odd) {
48 background-color: #f4f4f4;
49}
50
51.floatpanel .bottom tr:nth-child(even) {
52 background-color: #fbfbfb;
53}
54
55.floatpanel.dialog {
56 top: 180px;
57}
58
59html[data-platform='iPad'] .floatpanel {
60 top: 80px;
61}